Data Source

The original articles were retrieved from Nexis Uni.

👉 Link to articles.csv on Google Drive

Description of Data

The dataset includes articles published in the first month of Trump’s 2025 presidency (Jan2025-Feb2025) containing keywords related to DEI and the Trump administration. It includes variables like publication name, publication country, date, full article text, and a binary variable that I added to indicate whether the article is domestic or international.

Content Analysis Plan

I plan to conduct a content analysis to compare how DEI-related issues were framed across domestic and international newspapers. I’ve created a preliminary codebook in my topic_modeling assignment to identify topic themes such as:

Topic Code Label Definition / Description Key Terms / Keywords Detected Included in Analysis?
trump_executive_orders Trump Executive Orders Articles focused on Trump’s federal executive actions or policies concerning DEI (Diversity, Equity, Inclusion). “trump”, “order”, “execut”, “feder”, “presid”, “divers”, “donald”, “dei”, “govern”, “inclus” ✅ Yes
corporate_dei Corporate DEI Coverage of corporate diversity programs, policies, or initiatives, especially those being criticized or removed. “divers”, “dei”, “inclus”, “equiti”, “compani”, “polici”, “target”, “initi”, “back”, “program” ✅ Yes
federal_education_policy Federal Education Policy DEI-related policies in the education sector, including federal funding or university programs. “feder”, “fund”, “trump”, “educ”, “univers”, “state”, “program”, “order”, “student”, “grant” ✅ Yes
airplane_helicopter_crash Airplane/Helicopter Crash Articles incidentally mentioning DEI during unrelated news events such as aircraft crashes. “trump”, “crash”, “plane”, “washington”, “presid”, “divers”, “air”, “blame”, “helicopt”, “donald” ⚠️ Partial (exclude or tag separately)
trump_elon_musk Trump and Elon Musk Broader commentary pieces linking Trump and Elon Musk in DEI or political discussions. “trump”, “presid”, “donald”, “musk”, “govern”, “world”, “histori”, “month”, “day”, “american” ✅ Yes
media_website_info Media Website Info Non-substantive content such as navigation menus or metadata—irrelevant to analysis. “• news”, “art”, “sport”, “search”, “opinion”, “content”, “staff”, “submit”, “washington” ❌ No (Exclude)
other Other / Uncategorized Articles that do not fit into the defined categories. N/A ⚠️ Considered if useful

These categories are being developed based on the most frequent bigrams and common narrative themes. Preliminary coding involves using keyword matching and bigram frequency analysis to map patterns of coverage.

Unit of Analysis

The unit of analysis is an individual news article. The content analysis will focus on examining several components within each article:

DEI_Articles (my dataframe) Codebook:

Variable Name Description Type Example
V1 Article index number (row ID) Numeric 1, 958, 1916
title Title of the article Character “Trump attacks DEI programs”
published_date Date when the article was published Date 2025-01-28
publication_location Geographic location of the news outlet (e.g., country, city) Character “New York, USA”
publication_4 News outlet name (alternate or duplicate of another publication variable) Character “New York Times”
publication_type_5 Type of publication (e.g., newspaper, magazine, wire service) Character “Newspaper”, “Wire”
length Length of article in characters Numeric 690.5
section Section of the newspaper or outlet (e.g., Politics, Opinion) Character “Politics”, “Business”
word_count Number of words in the article Numeric 829
countries Countries mentioned in the article Character “United States, China”
byline Author(s) of the article Character “By Jane Doe”
agg_copyright Aggregated copyright info (not used; all values = NA) Logical NA
cite Citation or source identifier Character “NYT-123456”
company Parent media company Character “Gannett”, “News Corp”
headline Headline as printed in the publication Character “Trump’s DEI Agenda”
hlead Headline lead/summary sentence Character “Former president escalates…”
publication_16 Possibly a duplicate of publication_4 Character “The Guardian”
publication_type_17 Possibly a duplicate of publication_type_5 Character “Online”, “Print”
pub_copyright Copyright info (not used; all values = NA) Logical NA
show Possibly denotes whether the article is from a show or broadcast (unused) Logical NA
term Possibly indicates search term used (all values = NA) Logical NA
ticker Possibly stock ticker (unused) Logical NA
index Article index or tag Character “trump_dei_001”
filename Name of the file where article is stored Character “nyt_2024_01_23_trump.txt”
filepath Full path to the article file Character “/Users/tiasia/articles/…”

Analysis Codebook

Code Definition Example
Tone_Positive Article uses language reflecting hope, resolution, or positive outcomes “Protesters call for reform, urge peaceful change”
Tone_Negative Article uses alarmist or fear-inducing language “Mob storms the Capitol in unprecedented violence”
Dom_vs_intl Classifies the article as Domestic or International Domestic (e.g. NYT), International (e.g. BBC)
Political_Affiliation Implies alignment with a political ideology or party “Left-wing activists confront right-wing group”

Note: Codebook is subject to refinement following further testing.

Analysis Work

Load Libraries

library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr     1.1.4     ✔ readr     2.1.5
## ✔ forcats   1.0.1     ✔ stringr   1.6.0
## ✔ ggplot2   4.0.0     ✔ tibble    3.3.0
## ✔ lubridate 1.9.5     ✔ tidyr     1.3.1
## ✔ purrr     1.2.0     
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(tidytext)
library(lubridate)
library(stringr)
library(ggplot2)
library(topicmodels)
library(lda)
library(tm)
## Loading required package: NLP
## 
## Attaching package: 'NLP'
## 
## The following object is masked from 'package:ggplot2':
## 
##     annotate
library(knitr)
library(kableExtra)
## 
## Attaching package: 'kableExtra'
## 
## The following object is masked from 'package:dplyr':
## 
##     group_rows
library(reshape2)
## 
## Attaching package: 'reshape2'
## 
## The following object is masked from 'package:tidyr':
## 
##     smiths
library(tidyr)
library(janitor)
## 
## Attaching package: 'janitor'
## 
## The following objects are masked from 'package:stats':
## 
##     chisq.test, fisher.test
library(textdata)
library(matrixStats)
## 
## Attaching package: 'matrixStats'
## 
## The following object is masked from 'package:dplyr':
## 
##     count
library(dplyr)

Compiled Index

index_1 <- rio::import("/Users/tiasiasaunders/Desktop/code/comp_text/DEI_updated_files/Results list for_trump_and_dei_1-999.XLSX")
## New names:
## • `Publication` -> `Publication...4`
## • `Publication type` -> `Publication type...5`
## • `Publication` -> `Publication...16`
## • `Publication type` -> `Publication type...17`
index_2 <- rio::import("/Users/tiasiasaunders/Desktop/code/comp_text/DEI_updated_files/Results list for_trump and dei_1000-1999.XLSX")
## New names:
## • `Publication` -> `Publication...4`
## • `Publication type` -> `Publication type...5`
## • `Publication` -> `Publication...16`
## • `Publication type` -> `Publication type...17`
index_3 <- rio::import("/Users/tiasiasaunders/Desktop/code/comp_text/DEI_updated_files/Results list for_trump and dei_2000-2999.XLSX")
## New names:
## • `Publication` -> `Publication...4`
## • `Publication type` -> `Publication type...5`
## • `Publication` -> `Publication...16`
## • `Publication type` -> `Publication type...17`
index_4 <- rio::import("/Users/tiasiasaunders/Desktop/code/comp_text/DEI_updated_files/Results list for_trump_and_dei_3000-3999.XLSX")
## New names:
## • `Publication` -> `Publication...4`
## • `Publication type` -> `Publication type...5`
## • `Publication` -> `Publication...16`
## • `Publication type` -> `Publication type...17`
index_5 <- rio ::import("/Users/tiasiasaunders/Desktop/code/comp_text/DEI_updated_files/Results list for_trump_and_dei_4000-4023.XLSX")
## New names:
## • `Publication` -> `Publication...4`
## • `Publication type` -> `Publication type...5`
## • `Publication` -> `Publication...16`
## • `Publication type` -> `Publication type...17`
final_index <- rbind(index_1, index_2, index_3, index_4, index_5) |> clean_names()

rio::export(final_index, "/Users/tiasiasaunders/Desktop/code/comp_text/DEI_updated_files/final_index.xlsx")


## donwload last 23 articles make index_5 and join it in rbind 

Raw text compiler

Check for duplicate entries

final_data <- final_data 
final_data |> 
  dplyr::count(title) |> 
  arrange(desc(n))
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                title
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 "Arab Americans For Trump" Changes Name Over Gaza Comments; NLRB Leader Ousted By Trump Speaks Out After Filing Lawsuit; Supervisors Withdraw Sade Robinson Memorial; NFL Removing "End Racism" From End Zones Ahead Of Trump Super Bowl Appearance. Aired 8-9a ET
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                              "Elon Musk...Shared Staggering Data Showing...Millions Of Dead Americans Still Eligible For Social Security Payments."; DOGE Finds Millions Of Instances Of Social Security Fraud In Database Including A 360- year-old; The Coming Democratic Baby Bust; Which Issues Are Americans Most Likely To Trust Donald Trump To Handle As President?; "Playboy" Magazine Announces Return To Original Content; Donald Trump Jr. And Others Invest Millions Of Dollars Into Sporting Event Allowing Participants To Use Legal Performance Enhancing Drugs; Disney Reportedly Rolling Back Trigger Warnings For Some Classic Titles On Its Streaming Service.
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    "Otherwise, we might just go down quietly": students protest in Trump's America
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             "Qualifications, Not Quotas" IW Features Unveils Documentary Trailer of U.S. Secret Service Agent's Fight Against Harmful DEI Policies
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       "Rest is resistance": Black women ignore Trump to find peace
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   "Sesame Street" Legend Reacts To Purge Of DEI Initiatives; Venezuelan Trump Supporters Fight To Preserve Policy; States Fight Back With Thousands Of Federal Workers In Limbo; "Sesame Street" Legend Reacts To Pressure On PBS Over DEI; Man Pleads Guilty In Shooting Of U.S. Teen Ralph Yarl; Missouri Sues Starbucks Over Its Diversity Programs; Military Cuts Recruiting Efforts At Black Engineering Event. Aired 8-9a ET
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      "The Goal Was to Safeguard Our Work:" WCU Office of Diversity, Equity and Inclusion is Renamed Amidst National DEI Challenges
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           $10 Million Was Spent on Transgender Animal Testing, Watchdog Group Says
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    $50M in condoms for Gaza and 'trans operas' in Colombia : The staggering foreign aid projects Trump is blocking
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1,400 more VA employees laid off in Trump's latest purge of federal workers
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10 things Dan Bongino, Trump's FBI No. 2 pick, has said in the last year
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 NFL teams have never had a Black head coach. Players find that disappointing
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                17 days of DOGE: Inside Trump and Musk's rapid disruption of the federal workforce
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2025 Federal Outlook for Higher Education
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2025 Grammy Awards highlights: Political statements, Beyoncé's album of the year win
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2025 style guide - Washington Square News
## 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2025 survey named Trump as top peace threat? No, that's from 2019 | Fact check
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2025-11 JOINT STATEMENT FROM 13 ATTORNEY'S GENERAL: PRESIDENT TRUMP IS MISLEADING THE AMERICAN PEOPLE ON PURPOSE OF DIVERSITY, EQUITY, INCLUSION AND ACCESSIBILITY INITIATIVES
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2025-24 ATTORNEY GENERAL LOPEZ ISSUES MULTISTATE GUIDANCE FOR BUSINESSES ON DIVERSITY, EQUITY, INCLUSION AND ACCESSIBILITY EMPLOYMENT INITIATIVES
## 20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            22 States Are Suing Trump Over Effort to Halt Spending
## 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           4 LGBTQ+ novels Trump doesn't want you to read - Washington Square News
## 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       40 Bodies Recovered so Far from Crash, Black Box Found; Probe Intensifies in Deadliest U.S. Plane Crash in 24 Years; Trump Baselessly Blames Democrats, DEI for Deadly Plane Crash. Rescuers Scouring For More Debris; Nine Lives Lost From Fairfax County; President Trump Points His Finger to Democrats. Aired 10-11p ET
## 23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5 'Gossip Girl'-inspired outfits for a posh Valentine's evening - Washington Square News
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5 luxury fragrances to wear in 2025 - Washington Square News
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 5 takeaways from Trump’s briefing on National Airport plane crash
## 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   5 takeaways from Trump’s whirlwind week back at the White House
## 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5 things to know for Jan. 22: Winter whiteout, Immigration crackdown, Tariffs, California wildfires, Netflix
## 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               5 things to know for Jan. 29: Federal funding, Google Maps, Immigration raids, New Jersey drones, India crowd crush
## 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   5 ways Elon Musk is working to dismantle the federal government
## 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            50501 Protest gathers community members at Wisconsin State Capitol - The Badger Herald
## 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     50501 protest comes to Harrisburg - The Voice
## 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     67 Feared Dead After Helicopter, Jet Collide Over D.C. ; Tulsi Gabbard And Kash Patel Face Senate Confirmation Hearings; Going To Gitmo: Trump: Preparing Migrant Facility At Guantanamo Bay; Ugly Smear: Democrats And Media Lash Out At New WH Press Secretary; Dems In The Dumps: The Left Is The Most Unpopular On Record
## 33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             8 must-watch films by Black female directors - Washington Square News
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A Christian against Christian nationalism on 'Freethought Matters'
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A MAGA star is born! On her first day, Trump's sparkling new press secretary Karoline Leavitt, age 27, hits the 'legacy media' with brilliantly barbed remark
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A Muted Black History Month As DEI Cuts Continue
## 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A NEW DAY IN FEDERAL ANTI-DISCRIMINATION LAW
## 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A Nation Backward: The Cost of Ending DEI - The Villanovan
## 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A National Debt Strike May Be the Way to Stop Trump and Musk | Opinion
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A Point of Order: Attacks on DEI mischaracterize initiatives, deepen social divisions
## 41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A Summary of Trump's Executive Orders for January
## 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A Trump tribute act would be able to wreak chaos here
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A WIN FOR THE AAUP, HIGHER ED, AND OUR COMMUNITIES
## 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A brave new world of world traffic control awaits – and it’s moulded by Elon Musk
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A call for revolutionary optimism in the second Trump era
## 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A catastrophe over the Potomac
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A conversation on the humanities at Lawrence
## 48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A dozen West Point cadet clubs ordered to disband, all others paused
## 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A first taste': Trump DEI war escalates, reshaping diversity in corporate America
## 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A flurry of orders: Trump in office - The Maroon
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A former top Biden DEI chief says companies should 'bunker down' and stand up for diversity
## 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A freeze on federal funding has been paused, but many facets of American life are left in limbo. Here's what we know - KentStater
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A freeze on federal loans and grants: Trump's gamble with American lives - The Pace Press
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A hotter-than-expected inflation report highlights what could be the economy's new normal
## 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A judge paused a freeze on federal funding, but many facets of American life are left in limbo. Here's what we know
## 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A look into New York City 's first teahouse-inspired festival - Washington Square News
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A look into the history of the impact of DEI in the Air Force - The Charger Bulletin
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A pilot's take on the DCA midair collision
## 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A plea to Duke's administration: Will you stand for higher education?
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A presidential first: Trump at the Super Bowl, latest chapter in a complicated legacy with football
## 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A quarter of US shoppers have dumped favorite stores over political stances
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A spiritual act of resistance': Black consumers are boycotting corporations retreating from DEI
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A televised revolution: Kendrick Lamar's halftime show - The Wellesley News
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A trans National Guard pilot was falsely accused of flying the helicopter in the fatal plane collision
## 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A&M halts research to comply with executive orders, federal funding freeze - The Battalion
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.I. Giants Double Down on Spending, Even as DeepSeek Looms DealBook Newsletter
## 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.I. Race; Eagles Win Super Bowl; Interview With U.S. Energy Secretary Chris Wright; Interview With Sen. Tommy Tuberville (R- AL )
## 68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.I. Revolution; Interview With Lara Trump; Interview With Sen. Mike Lee (R- UT ); Jeff Bezos Announces Changes at Washington Post; President Trump Holds First Cabinet Meeting
## 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AAUP JOINS LAWSUIT TO BLOCK TRUMP'S UNLAWFUL AND UNCONSTITUTIONAL DEI ORDERS
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ACE, HIGHER EDUCATION GROUPS URGE DEPARTMENT OF EDUCATION TO RESCIND DEI "DEAR COLLEAGUE" LETTER
## 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ACTING' LIKE LEADERS AT THE DEPARTMENT OF EDUCATION
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ADF Applauds Trump Effort to Ditch Divisive DEI Through Federal Govt, Corporate America
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ADF Calls on SEC to Swat Down 'absurd' Attempt From Gov't Contractor IBM to Plead Ignorance on Definition of DEI
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ADMINISTRATION RESCINDS MEMO PAUSING FEDERAL GRANTS, LOANS AND OTHER FINANCIAL ASSISTANCE PROGRAMS
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ADVOCACY AND POLICY UPDATE
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     AFGE: Eliminating Federal Diversity Programs Is Smokescreen for Undoing Merit-Based Workforce
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AG Campbell Issues Guidance For Businesses On Diversity, Equity, Inclusion And Accessibility Employment Initiatives In The Workplace
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AG Pam Bondi Targets DEI At Private Companies And Universities On Day One
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AMERICA IS BACK AND PRESIDENT TRUMP IS JUST GETTING STARTED
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AMID TRUMP THREATS, LOCAL NONPROFITS ARE STRATEGIZING TO STAY ACTIVE
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     AMID TRUMP'S WAR ON DEI, ADVOCATES FEAR JOB TRAININGS, SCHOLARSHIPS FOR DISADVANTAGED GROUPS COULD BE AT RISK
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AN UPDATE ON THIS WEEK'S FEDERAL GRANT AND LOAN PAUSE
## 83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ANDREW NEIL: A new age of geopolitics has begun. As Trump threatens to turn his back on Europe, will Starmer and EU leaders become masters of their own destinies - or shameful supplicants?
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ANDREW NEIL: Trump's bombastic blizzard of an inauguration speech threatened to provoke chaos. Then a startling realisation dawned on me...
## 85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ANTI-DEI CRUSADE IN US ALLOWS DISCRIMINATION
## 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ANTI-WOKE CAUCUS CALLS FOR TRANSPARENCY IN DEPARTMENT OF EDUCATION SPENDING
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AP News in Brief at 11:04 p.m. EST
## 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AP News in Brief at 11:09 p.m. EST
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AP News in Brief at 6:04 p.m. EST
## 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AP News in Brief at 6:09 p.m. EST
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ARIZONA SPEAKER OF THE HOUSE PUTS STATE CONSTITUTION ON TRACK TO BANISH DEI
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASU community and state senators respond to DEI actions taken state and nationwide
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ASUN sends support for Department of Education, DEI at all Big Ten schools
## 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AT ANNUAL MEETING, COSTCO REFUSES TO JOIN OTHERS RETREATING FROM DEI
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ATTORNEY GENERAL CLARK ISSUES MULTISTATE GUIDANCE FOR BUSINESSES ON DIVERSITY, EQUITY, INCLUSION AND ACCESSIBILITY EMPLOYMENTS INITIATIVES IN THE WORKPLACE
## 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ATTORNEY GENERAL KEN PAXTON CALLS ON COSTCO TO END WOKE DEI PRACTICES AND UNLAWFUL DISCRIMINATION
## 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ATTORNEY GENERAL RAOUL ISSUES MULTISTATE GUIDANCE FOR BUSINESSES ON DIVERSITY, EQUITY, INCLUSION AND ACCESSIBILITY EMPLOYMENT INITIATIVES IN THE WORKPLACE
## 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AYN RAND: AFFIRMATIVE ACTION, RACIAL QUOTAS ARE "UNFAIR, UN- AMERICAN , UNJUST"
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Accenture ditches diversity and inclusion goals
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Accenture joins rush to ditch diversity targets as US executive orders take toll
## 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Accenture scraps its diversity targets
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Accountability Arrives In D.C. ; Free Beacon: Biden Advisor's Group Got $30 Billion In Taxpayer Cash; Promises Made, Promises Kept; Trump: War Could End Within Weeks; Apple Invests $500 Billion In U.S. ; MSNBC Admits Trump Is Winning; Biden Treated Migrants Like Celebrities; Dan Bongino Tapped As FBI Deputy Director; Donors Aren't Happy With The Democrats; Maher: If You Want To Keep Losing, Keep It Up
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Accusations of an Elon Musk takeover
## 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Act of intimidation': Education Dept. suspends officials following Trump's DEI order
## 105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Acting Representative to U.N. Economic & Social Council Shrier Issues Remarks on UNICEF Country Program Documents
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Acting VA secretary warns against disguising DEI programs targeted for termination
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Activist investor reveals Costco's defiant DEI stance is 'not as meaningful' as it may appear
## 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Activists call for action as inauguration, MLK Day align
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Admin discuss DEI office closure, Research Office funding cut
## 110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Admin remain vague on potential Trump policy changes - Washington Square News
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Adviser behind ‘DOGE dividend’ check program: It’s reasonable
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Advocates call out Trump for linking DEI to deadly plane crash: 'It's offensive.'
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        After Trump's DEI remarks on DC crash, here are the facts about air traffic control hires
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ag Commissioner Takes Executive Action; Issues Order Reaffirming Merit-Based Principles and Prohibiting Discriminatory DEI Practices
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Agency Affinity Groups Disband Following Trump Orders On Gender Ideology, DEI
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Aides Defend U.S. Takeover of Gaza, Back Off Some Elements; Backlash Against Elon Musk; Trump White House Targets Federal Workers for Mass Layoffs; Sweden Mourns Worst Mass Shooting in Country's History; Price of Eggs Jump Due to Bird Flu Outbreaks. Aired 4-4:30a ET
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Aides Defend U.S. Takeover, Back Of Some Elements; Gaza Resident We Will Not Leave, We Will Die Here; Palestinians Push Back Against Gaza Takeover Idea; Syria Sees Long Road Ahead as It Starts to Rebuild; U.N. Says Nearly 3,000 People Killed in Battle for Goma; Nevada Dairy Herds Test Positive for Bird Flu; Scientists Use IVF to Produce World's First Kangaroo Embryo. Aired 2-2:45a ET
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Air Force restores use of Tuskegee Airmen training videos as Hegseth starts first day
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Air Force resumes instruction with Tuskegee Airmen video after review
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Air Traffic Control Staffing Issues in Spotlight After DC Plane Crash
## 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Air traffic controller ‘allowed to leave work early’ shortly before crash
## 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Air traffic controllers union responds to Trump’s DEI attacks
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Airbnb Co-Founder Joe Gebbia Joins Growing DOGE Team Under Elon Musk
## 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Al Sharpton's DEI stunt backfires spectacularly after liberal icon marches in support of Costco: 'kiss of death'
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Alabama teachers seek to halt state law limiting lessons on Black history and civil rights
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Alarmed, Employers Ask: What Is ‘Illegal D.E.I.’?
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Alarming Shift': Kansas AG Says Hiring DEI In Aviation Led To Increased Operational Errors
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Alicia Keys declares 'DEI is not a threat, it is a gift' in powerful Grammys speech
## 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Alicia Keys defends DEI at the Grammys amid Trump crackdown: 'It's a gift'
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Alicia Keys uses Grammy win to make impassioned plea for diversity: ‘DEI is not a threat, it’s a gift’
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     All 67 People Aboard Plane and Helicopter Presumed Dead; Investigation Intensifies into What Caused Fatal Crash; Loved Ones Mourn Plane Crash Victims; Trump Blames Crash on Diversity; Outrage Over Hostage Release Chaos. Aired 4-4:30a ET
## 132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                All 67 People Involved In Plane-Helicopter Collision Killed; Trump Baselessly Links Diversity Initiatives To Collision; Figure Skating Community Mourns Members Killed In Crash. Aired 5:30-6a ET
## 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               All 67 People Presumed Dead in the Midair Collision in Washington D.C. ; More Hostages, Prisoners Freed as Israel -Hamas Ceasefire is Still In Effect. Three of Trump's Cabinet Picks Grilled in a Series of Hearings; Benefit Concert Raised Funds for California Wildfire Victims. Aired 3-4a ET
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           All Day, Every Day: How Maxine Waters and Committee Democrats Are Standing Up for Consumers, Facing Down Elon Musk in No-Holds Barred Fight for the Future of the CFPB
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                All Federal DEI Staff Now Ordered On Leave After Deadline Passes; Crews Battling Rapidly Growing New Fire In Northern L.A. County; Rep. Mike Johnson (R- LA ) Announces New House Select Subcommittee To Continue Republicans' Investigation Of January 6; Musk Bashes $500 Billion A.I. Project Touted By Trump ; Crews Battling Rapidly Growing New Fire In Northern L.A. County. Aired 6-7p ET
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         All diversity staff on paid leave ahead of mass sackings
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          All of the anti-trans executive orders Trump has signed
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    All the 'crazy' USAID programs on blast by Republicans... including a bizarre $25K drag queen show in Ecuador
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               All the catastrophic mistakes that led to DC plane crash as it is revealed air traffic controller left tower early
## 140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 All the executive orders Trump has signed so far
## 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     All the shocking ways USAID spent your money
## 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Alston & Bird Launches Executive Order, Action & Proclamation Task Force
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Alums on the prairie: Why stay in Grinnell ? - The Scarlet & Black
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Amazon has licence to kill off the Bond I love 007 survived countless brushes with death ? but can he emerge intact from endless sequels, prequels and spin-offs?
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               America 's $500bn Stargate project could turn world into dystopian nightmare Tech giants are pouring capital into projects to create artificial intelligence on a staggering scale
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         America 's Largest Trading Partners React to Trump's Tariffs; Washington Air Disaster; Next Phase of Israeli -Hamas Ceasefire Talks; New Democratic Party Chair; Cleanup Underway After Deadly Eaton Fire. Aired 4-5a ET
## 147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      America 's biggest companies are waging a stealth campaign to dismantle DEI
## 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             America 's decline is over.' Trump returns to power: 5 takeaways on the inauguration
## 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            America 's largest companies hired more Black executives. Then came the DEI backlash.
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         America 's wokest company Disney makes major changes to classic films as it banishes DEI
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             America First Legal Demands Apple's Board End Illegal DEI Programs; Warns Shareholders and Consumers of Legal, Reputational, and Financial Risks Ahead of Annual Shareholder Meeting
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 America First Legal Sues University of California for Illegal Race-Based Discrimination Against White and Asian Applicants in Student Admissions
## 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   America First Legal Urges Department of Labor to Investigate Federal Contractors' DEI Programs
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   America Welcomes A No-Nonsense Administration; Open Border Uniparty Must Be Defeated; Democrats Lose Their Minds Over Trump's DEI Rollbacks; Democrats lose their minds over Trump's DEI rollbacks; Make America Healthy Again, Democrats freak out over Trump's healthcare agenda; CIA now favors the COVID-19 lab leak theory; MAGA mainstreamed, Trump has made conservatism cool again; Authentic Trump hits L.A.; Democrats suddenly care about inflation
## 155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         America desperately needs more air traffic controllers. So why is it so tough to hire them? - KentStater
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            America has a problem
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            America has turned on its friends Trump's abandonment of his country's allies is real and will endure
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       America ’s $500bn Manhattan project is an effort to make humanity obsolete
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Americans See Through Media's Fearmongering; Democrats Back To Their Failed Talking Points; Democrats Fake Outrage Over Pardons; Democrats Pretend They're The Party Of Law And Order; Philadelphia Mayor Spells Eagles Wrong; Trump Back To Sparring With The Media; Piles Of Abandoned Bags Left Outside Of Inauguration; Trump's DEI Promise Made And Kept
## 160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Americans Who Think Country on Right Track Breaks 20-Year Trend: Pollster
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Americans with disabilities warn protections are vanishing in Trump's DEI rollback
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Amid Onslaught on DEI, Pressley, Booker, Colleagues Reintroduce Historic Reparations Bill During Black History Month
## 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Amid Trump-era rollbacks, businesses stay quiet on DEI
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Amidst erasure of U.S. government websites, Kari Bassett `98 preserves Iowa 's oldest Black newspaper - The Scarlet & Black
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Amo says Trump’s DEI remarks on plane crash ‘beneath the office of the president’
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        An Analysis of President Elect Donald Trump's Inaugural Speech with Professor Engel and Kelley-Romano - The Bates Student
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     An advanced degree was once viewed as the best path toward job security. It's now proving to be a liability.
## 168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An overview of Trump's new immigration policies and the UA community's response - The Daily Wildcat
## 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Analyzing Trump's Anti-DEI Executive Order: What Does It Really Mean? - Jag Media
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Another DEI rollback as KPMG US ends strategy aimed at underrepresented groups
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Another Trump email sent: Air traffic controllers asked to quit
## 172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Another Wall Street Giant Retreats From Its DEI Efforts
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Antioch University: Understanding Threats to Higher Education
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Apple and the UK play a round of security tennis
## 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Apple braces for DEI showdown at annual shareholder meeting
## 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Apple defies Trump's executive order on DEI
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Apple fixing bug that caused dictation feature to type the word 'Trump' when users said 'racist'
## 178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Apple investors defy Trump and vote to keep diversity policies
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Apple investors defy Trump to back DEI
## 180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Apple isn't jumping on the anti-DEI bandwagon
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Apple joins race to win Trump's favour with $500bn plan for 20,000 US jobs
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Apple promises to fix dictation bug that replaces ‘racist’ with ‘Trump’
## 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Apple risks the wrath of Donald Trump as it defies executive order on DEI
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Apple shareholders not expected to scrap diversity programs despite broader backlash
## 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Apple shareholders reject plan to scrap DEI policies
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Apple shareholders reject proposal to scrap company's diversity programs
## 187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Apple to fix iPhone dictation bug that replaces word ‘racist’ with ‘Trump’
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Apple under shareholder attack on AI and DEI Technology
## 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Apple vows to fix bug that swaps 'racist' for 'Trump'
## 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Apple’s diversity policies and OpenAI deal targeted by shareholders
## 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Are Markets Taking the Latest Trump Trade Fight in Stride? DealBook Newsletter
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Are Paper Straws Bad for You? What We Know as Trump Suggests Ban
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Are we the bad guys? | Con-Current Events
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Arizona baseball earns fifth consecutive victory with late rally against Rice - The Daily Wildcat
## 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Arizona officials scrambled to determine the effects of Trump's order freezing federal funding
## 196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Army Women's Museum website 'temporarily offline' over Trump's anti-DEI order
## 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Army museum covers display honoring transgender soldiers
## 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Army top brass blast Pete Hegseth in foul-mouthed rant about DEI overhaul
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Artists demand National Endowment for the Arts roll back Trump restrictions
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As DEI dies down, Sam's Club CEO says his job is to create 'an environment of openness'
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As Hegseth takes charge at the Pentagon, here's what changes could be in store
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As Trump Cracks Down On DEI In Washington, Federal Agencies Caught Secretly Trying To Keep It Alive
## 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     As Trump Hands Out Pardons, Republicans Begin Planning How To Undo Years Of Government Abuse
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      As Trump cracks down on DEI, impact on Duke remains unclear
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             As Trump ends DEI programs, here's how to make sure your home is DEI-free! | Opinion
## 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As Trump's deadline to eliminate DEI nears, few schools openly rush to make changes
## 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As a white man, DEI means I get passed over. It's time to eliminate it. | Your Turn
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As many universities take down their DEI websites, Princeton's sites largely remain
## 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Aspiring autocrats like Trump are always more dangerous the second time in office
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Así fue la primera semana de Elon Musk en Washington
## 211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   At Least 7 Killed, 19 Injured In Medevac Jet Crash In Philadelphia; Hamas Releases 3 Hostages From Gaza, Including Israeli - American ; Key Group Of Arab Nations Reject Trump's Call To Relocate Gazans; Today: Trump To Impose Tariffs On Mexico , Canada And China. Officials: Crews Recover 41 Bodies From Site, 28 Identified; Gabbard Won't Say If NSA Leaker Edward Snowden Is A Traitor; Right Now: Dems Meeting To Pick New DNC Chair. Aired 12-1p ET
## 212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             At Least Five Tech CEOs To Attend Trump Inauguration; Soon: Trump Caps Political Comeback With Second Inauguration; Trump Promises To Release JFK, RFK And MLK Assassination Files. Aired 5:30-6a ET
## 213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          At least five senior FBI leaders reportedly demoted or moved as Trump’s nominee is grilled by senators – as it happened
## 214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Athens City Council continues efforts toward racial equity
## 215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Atlanta’s homelessness non-profits face ‘daunting’ future after federal grant pause
## 216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Attempt to erase trans people off the map:' UNL faculty respond to removal of 'X' on passports
## 217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Attorney General Bird Puts Costco on Notice for Doubling Down on Discriminatory DEI
## 218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Attorney General Bonta Provides Guidance for Businesses on Diversity, Equity, Inclusion, and Accessibility Initiatives in the Workplace
## 219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Attorney General Pam Bondi Dismisses DEI Lawsuits Involving Police Officers and Firefighters, Advances President Trump's Mandate to End Illegal DEI Policies
## 220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Attorney General Pam Bondi sworn in, vows to end 'weaponization' of Justice Department
## 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Attorney General Tong Issues Guidance for Businesses on Diversity, Equity, Inclusion and Accessibility Employment Initiatives in the Workplace
## 222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Australia news live: Malcolm Turnbull says ‘we cannot assume we can rely on America ’ under Trump
## 223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Australia news live: WA police officers found not to have performed duty ahead of Perth double murder
## 224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Australia news live: thunderstorms set to hit Queensland amid heatwave
## 225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Aviation chiefs 'were recruiting people with targeted disabilities including intellectual problems and hearing/vision issues until last year' - as Trump vows to tackle 'diversity' in wake of crash disaster
## 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Aviation experts have been warning about the risk of a passenger aircraft collision for years
## 227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Axe-wielding squatters, pepper spray while I walk the dog... but the scariest part of my beloved LA's descent into squalor is the celeb I'm hearing could replace Newsom
## 228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Axelrod rips Trump’s ‘craven’ remarks on deadly Potomac crash
## 229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BARR: 'JUST SAY NO' To DEI At FAA
## 230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BC Makes Revisions and Redactions to Office of Institutional Diversity Website
## 231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BHC honors Black culture, history amid federal threats of DEI crackdown - The GW Hatchet Donation Button
## 232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BOB EHRLICH: Things Are Changing Fast
## 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BOB EHRLICH: Trump Plays Chess While His Opponents Play Checkers
## 234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BP boss says oil company went ‘too far, too fast’ in green energy transition – as it happened
## 235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BRACING FOR IMPACT
## 236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BREAKING: AU mobilizes resources to respond to Trump executive orders - The Eagle
## 237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSU and Cornell Dining Collaborate to Celebrate Black History Month
## 238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BT axes diversity targets from bonuses
## 239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BT ditches diversity targets from managers’ bonuses
## 240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BT dumps diversity targets from bonuses
## 241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BT jettisons diversity goals from bonus schemes Telecoms giant follows US companies in rolling back DEI initiatives in the wake of Trump's re-election
## 242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BT scraps diversity targets from bonuses BUSINESS
## 243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BU SJP referendum results nullified, future divestment efforts uncertain
## 244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Back to petroleum at last: BP's switch back to fossil fuels is a seismic U-turn, says MAGGIE PAGANO
## 245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Background On Trump Day One Executive Orders Impacting The LGBTQ+ Community
## 246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Backlash against DEI is changing corporate culture with drastic U-turns
## 247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Backlash greets Target after diversity retreat Fall in number of people entering stores coincides with activists urging consumers to avoid retailer since policy change
## 248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bad Bunny's new album fuses Puerto Rican music, culture, and politics - The Tribune
## 249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Badenoch condemned for 'parroting Trump' in speech
## 250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Badenoch takes aim at 'poison of left-wing progressivism'
## 251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Baldwin, Murray, DeLauro Blast Trump Administration on Halt of Vital Work at Nation's Largest Public Health Agency
## 252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ball State takes preemptive measures in response to anti-DEI legislation, canceling LGBTQ+ events
## 253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Baltimore Judge blocks enforcement of Trump's executive orders related to DEI
## 254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Baltimore mayor fights back against attacks on DEI initiatives with 'Definitely Earned It' campaign
## 255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Baseball hopes for successful season, bigger turnout at games - The Scarlet & Black
## 256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Baylor, uphold your DEI practices
## 257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Beach Weekly S14E2: Black History Month events, a commercial airplane collision & more
## 258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Behind closed doors': Ibram X. Kendi departs BU, Center for Antiracist Research to close after 5 years
## 259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Behind the Curtain: The Trump actions actually busting boundaries
## 260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Behind the Curtain: Trump and Musk's masculine maximalism reshapes government
## 261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ben and Jerry's Ice Cream proves corporations can be activists - KentStater
## 262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bernie Sanders warns of 'Trumpism' at IC event - The Daily Iowan
## 263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Between Nostalgia and Dreams: how immigrant identity is informed by possessions
## 264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Beyonce clinches first album of the year Grammy with Cowboy Carter
## 265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Beyoncé finally wins Album of the Year at the Grammys
## 266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Beyoncé fulfils her destiny with top Grammy The singer won Album of the Year for the first time in a ceremony that was a show of strength for Los Angeles after the fires. By Anna Nicolaou
## 267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Beyoncé, Shakira, Alicia Keys and Kehlani are almost adorably upstaged by their own children as biggest names in music bring their kids to watch them win big at 2025 Grammys
## 268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Beyond NYU: Shaking up the restaurant industry one article at a time - Washington Square News
## 269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Beyond The Dome: Target shoppers push for a boycott after change in DEI policies
## 270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Beyond the Left & Right
## 271                                                                                                                                                                                                                                                                                                                                                                                                                        Biden Least Popular Living President, Poll Says: "Ms. Li SaidBiden Was Doped Up For Campaign Events"; Video Appears To Show Kayaker Swallowed By Whale In Chile ; 104-Year-Old Woman Celebrates Birthday By Going To Jail; NASA Says Chance Of Asteroid Hitting Earth In 2032 Is 2.3 Percent; 10,000 Organic Eggs Worth $40,000 From Pennsylvania Farm Stolen From Back Of Truck; World Athletics Toughens Transgender And DSD Rules By Introducing Cheek Swabs; Record Store Puts Out List of 10 Breakup Albums for Valentine's Day; Study Finds Only 12 Percent of Liberal Women Reporting They's Completely Satisfied with Life; Viewers Submits Questions Asking Panelists Lies They Told as Children
## 272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Biden Signs With Powerhouse Hollywood Talent Agency CAA; Mexico President Makes Deal With Trump To Pause Tariffs For A Month, Put 10K Troops On Border; Livestock Auctions Could Be Coming To An End At America 's Last Big-City Stockyard; "Fewer Than 600 Illegal Crossings Were Recorded At The Southern Border"; USAID Spent Funds On DEI, Transgender Initiatives, Terrorist Groups; Former President Biden Signs With Talent Agency For Appearances And Book Deal; New Jersey Governor Phil Murphy Claims Illegal Immigrant Lives In His House; Will Smith's Son Jaden Smith Wears Black Castle On His Head At Grammys.
## 273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Biden put DEI first and students fell behind. Linda McMahon will fix schools. | Opinion
## 274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Big Tech wants everyone to use AI, just not when applying for jobs
## 275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bill Maher eviscerates former Obama speechwriter over Dems obsession with trans issues: 'You want to lose every election?'
## 276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bill Maher praises Trump for mocking reporter's 'stupid question'... as he jokes about DC plane crash
## 277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bill Maher slams woke left's latest change to the Boy Scouts of America
## 278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bill Maher's audience goes WILD as Kid Rock drops surprising view on Democrats
## 279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bill banning all forms of DEI in city, county offices advanced by Iowa lawmakers - The Daily Iowan
## 280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bill would create government faith-based support office
## 281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bills eliminating DEI programs in schools advance in state House and Senate
## 282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Black Excellence in Sports: Former Seattle Seahawks Super Bowl champion Doug Baldwin  - The Seattle Collegian
## 283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Black Hawk Helicopter May Have Gone Off Flight Path: Report
## 284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Black Hawk Pilot's Name Being Withheld Sparks Questions
## 285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Black Hawk didn't follow air traffic controller's route before DC plane crash
## 286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Black History Month Starts Amid Trump DEI Crackdown. What Lawmakers Say
## 287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Black History Month faces uncertainty under President Trump's diversity rollback
## 288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Black History Month honors the legacy of labor leaders Theme resonates amid DEI attacks by president
## 289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Black History Month must be honored nationwide - KentStater
## 290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Black History, Pride Month and other events quietly vanish from Google calendars
## 291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Black Struggles in 2025
## 292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Black Voters Have Doubts About Democratic Strategy: Poll
## 293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Black box' flight data recorder recovered in DC plane crash: Recap
## 294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Black boxes recovered from crashed plane in Washington DC
## 295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Black boxes recovered from wreckage of Washington plane crash
## 296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Black educators warn of what is lost if Education Department is shuttered
## 297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Black faith leaders call for Target boycott for backing off diversity initiatives
## 298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Black maternal health efforts face unclear future under Trump
## 299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Black workers face DEI setback Trump's attacks shifting outlook, affecting careers
## 300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Blackburn Congratulates President Trump Ahead of Inauguration
## 301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Blue State Insists On Teaching Children Gender Ideology In Defiance Of Trump
## 302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Board of Trustees talks impact of Trump executive orders, update on chancellor search
## 303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bondi orders DOJ to throw out DEI lawsuits against police, firefighters
## 304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bondi scraps Biden-era environmental justice enforcement policy
## 305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bonfire of bureaucracy as Trump begins 'common sense revolution' Republican administration targets diversity initiatives, birthright citizenship and Biden's TikTok ban
## 306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Borderland: The Line Within' screening fosters dialogue on immigration in the U.S.
## 307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Born Privilege—Musk's White Pass Trumps Obama's Birth Certificate | Opinion
## 308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bosses battle HR chiefs ‘blindly defending’ corporate Britain ’s diversity drive
## 309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Boston, Chelsea, Somerville defend sanctuary city policies amid increased ICE activity
## 310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Both Black Boxes From Plane Recovered After Deadly Crash; Trump Blames DEI, Without Evidence, For Deadly Crash; Sen. Hassan Questions RFK Jr. On Past Autism Comments. Aired 9-10p ET
## 311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bowdoin professors offer thoughts on intersection of politics and academics
## 312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Boycotts Over DEI Decisions; EPA Staff to be Slashed by 65 Percent; Several Injured in Suspected Car Ramming Attack in Israel . Aired 10:30-11a ET
## 313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Brash, energetic and results-driven — Ireland could do with a Trump
## 314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Britain funded Mauritius diversity scheme during islands talks
## 315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Britain has one last hope - if we go unashamedly, full throttle Trumpian This week has shown that another world is possible. Unshackling the economy can still turn us around
## 316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Britain is being systematically lied to by our delusional political elite
## 317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Britain is inexorably lurching towards total bankruptcy. I know who is really to blame
## 318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Britain needs its own DOGE
## 319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Britain still acts as if it has money to burn
## 320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           British Paralympian is first person with physical disability cleared for space mission
## 321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        British broadband giant’s US co-owner defies Trump on DEI
## 322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      British firms not swayed by US push to scrap diversity goals, says minister
## 323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             British pharma company GSK pauses diversity work citing Trump orders
## 324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  British voters support raft of Donald Trump 's policies in blind polling test - but how many do YOU agree with?
## 325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Brits split on Trump-style ditching of diversity and equity goals
## 326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Brown faces funding risks after Trump admin declares race-conscious programs illegal - The Brown Daily Herald
## 327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Building belonging in uncertain times
## 328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Business leaders must stand up against attacks on diversity and democracy
## 329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business news in brief
## 330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Business schools get ready for a new term As Donald Trump takes office, the sector is bracing for clarification of the president's stance on topics from ESG to diversity and visas. By Andrew Jack
## 331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Businesses That Changed DEI Policies Prior to Trump's Executive Order
## 332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Buttigieg fires back at Trump after remarks on midair collision: ‘Despicable’
## 333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CABINET CONFIRMATION HEARINGS LARGELY IGNORE LGBTQ ISSUES DESPITE DISPARATE IMPACT OF AGENCY POLICY ON LGBTQ PEOPLE
## 334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CAPITOL TO CAPITOL | JAN. 27, 2025
## 335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CARLY ATCHISON BIRD: Congressional Republicans Need To Move Faster Than They Ever Have Before
## 336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CASTRO, LEADING FOREIGN AFFAIRS DEMOCRATS URGE SECRETARY RUBIO TO REVERSE PURGE OF STATE DEPT. AND USAID WORKFORCE, RELEASE CRITICAL FOREIGN ASSISTANCE FUNDS, AND FOLLOW LAW ON DEIA INITIATIVES
## 337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CATO EXPERT ON TRUMP ADMINISTRATION'S DEI MEMO
## 338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CATO SCHOLAR AVAILABLE TO COMMENT ON DEI MEASURES
## 339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CBC blasts Trump’s DEI comments after Potomac plane crash
## 340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CBS anchor defends ludicrous USAID spending on trans operations and atheism overseas
## 341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CDC webpages go dark as Trump targets public health information
## 342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CEA Responds to Trump Administration's Executive Order to End 'Radical Indoctrination in K-12 Schooling'
## 343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CEO confidence in communications dwindles, new report
## 344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CHAIRMAN COMER APPLAUDS PRESIDENT TRUMP'S EXECUTIVE ORDERS TO BRING ACCOUNTABILITY, REFORM TO THE FEDERAL WORKFORCE
## 345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CHAIRMAN MAST ISSUES STATEMENT ON SECRETARY OF STATE MARCO RUBIO'S CONFIRMATION
## 346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CHAIRMAN WALBERG DELIVERS OPENING STATEMENT AT "THE STATE OF AMERICAN EDUCATION" HEARING
## 347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CHAIRMAN WALBERG ON TRUMP'S DEI EXECUTIVE ORDERS
## 348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       CHAIRMAN WICKER STATEMENT ON PENTAGON BUDGET REALLOCATIONS
## 349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CHARLIE KIRK: President Trump's Shock-And-Awe Strategy Is The Way To Overwhelm The Left
## 350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CHARLIE KIRK: Trump Is Restoring The Presidency To The Founders' Vision
## 351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CHRISTINE MURRAY AND MICHAEL STOTT Rubio to shun South African G20 meeting over drive for 'equality' Boycott
## 352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       CIA Reportedly Planning To Fire Officers Involved With DEI
## 353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CIA Sends Unclassified Email to White House Listing Names of New Hires; DOGE to Keep Limited Access to Treasury Payments System; Chiefs Chasing First-Ever Super Bowl Three-Peat. Aired 7-7:30a ET
## 354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CLARKE RELEASES STATEMENT ON TRUMP'S EXECUTIVE ORDERS, INCLUDING HIS DECREE TO END BIRTHRIGHT CITIZENSHIP
## 355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CNN International: 1,500 U.S. Troops Ordered to the Southern Border; Fast-Spreading Hughes Fire Raging out of Control in Los Angeles ; Visas Can Mean Grueling Work, But an American Dream; Trump: "Sad Thing" Biden Didn't Pardon Himself; Soon: Trump to Make Virtual Address to World Economic Forum; Right Now: Oscar Nominations Being Announced. Aired 8-9a ET
## 356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CNN International: American Airlines Flight Collides Midair With Army Helicopter; No Survivors In Midair Collision Near Reagan National Airport; President Trump Gives Briefing After Midair Collision. Aired 11a-12p ET
## 357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CNN International: Bodies of Four Hostages Returned to Israel ; Zelenskyy to Meet with Trump's Russia - Ukraine Envoy Kellogg; Hegseth Seeks Budget Cuts, Tells Pentagon to Slash Waste; Trump Aligns with Russian Narrative, Calls Zelenskyy "Dictator"; CNN Fact Check on Donald Trump's First Month in Office; Elon Musk's $44B Investment in X May Soon Pay Off. Aired 8-9a ET
## 358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CNN International: DHS Secretary Kristi Noem Addresses Department Amid Immigration Raids; Freeze On Federal Grants And Loans Takes Effect At 5PM Tonight; China Celebrates Success Of AI Startup DeepSeek; North Korean Soldiers Use Near-Suicidal Tactics In Battle. Aired 3-4p ET
## 359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CNN International: Experts: Helicopter may have Mistaken Bright Light for Plane; UNRWA Chief: Israeli Ban will have "Disastrous" Consequences; What we know about Deadly Collision Over Potomac River ; Trump Again Threatens 100 Percent Tariffs on BRICS Nations; German Lawmakers Debate Immigration Restrictions. Aired 9-9:45a ET
## 360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CNN International: FAA Indefinitely Closes Helicopter Routes Near Reagan National Airport; Investigation Into Deadly Collision Intensifying; Remembering The Victims Of Deadly Plane-Helicopter Crash. Aired 11a-12p ET
## 361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CNN International: Israeli PM Netanyahu Meeting U.S. Lawmakers Today; WH Defends Gaza takeover Plan, Backs Off Some Elements; Source: At Least 40,000 Federal Workers Accept Offer To Leave. Aired 11a-12p ET
## 362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CNN International: Key Players Discuss Middle East's Future at Davos ; Trump Speaks with Saudi Crown Prince; 2025 Oscar Nominations Announced; Trump to Address World Economic Forum as he Threatens Higher Tariffs; Musk Casts Doubt on Trump's $500B AI Project. Aired 9-9:45a ET
## 363                                                                                                                                                                                                                                                                                                                                                                 CNN International: RFK Jr. Faces Confirmation Hearing for Health Secretary; Judge Pauses Trump's Federal Aid Freeze Amid Confusion; U.S. Middle East Envoy to Meet Netanyahu Today; U.N. Calls for Immediate International Action in Goma; Rwanda -backed Rebels Claim Takeover of Goma; Multiple Deaths Reported at World's Largest Religious Festival in India ; Plane Catches Fire in South Korea While Preparing for Takeoff; Trump to Sign Laken Riley Act Into Law; Trump Administration Continues Crackdown on Undocumented Immigrants; Fed Likely to Pause Rate Cuts Thanks to a Strong Economy; Former Senator Bob Menendez to Be Sentenced; Analysts Ask for More Info on DeepSeek's Lofty Claims; Lunar New Year Celebrations Underway. Aired 8-9a ET
## 364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CNN International: Soon: Trump And Jordan 's King To Meet At White House; Hamas Says It Will Postpone Next Hostage Release; Watchdog Warns Trump's Dismantling Of USAID Means Funds Could Fall Into Hands Of Terrorist Groups. Aired 11a-12p ET
## 365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CNN International: Sources: Putin is Not Seriously Prepared To Engage In Peace Talks; No Joint News Conference With Zelenskyy, Trump 's Envoy; Trump Escalates His Criticism Of Zelenskyy. Aired 11a- 12p ET
## 366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CNN International: Today: Trump Meeting With GOP Congressional Leadership; Trump Pardons Nearly All January 6 Rioters Charged Or Convicted In Attack; Trump Signs Executive Actions Cracking Down On Immigration; Marco Rubio Sworn In As Secretary Of State; Trump To Implement Tariffs On Canada And Mexico February 1; Police: Several Injured In Suspected Stabbing Attack In Tel Aviv. Aired 3-4p ET
## 367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CNN International: Trump Admin. Tries to Clarify Remarks on Taking Over Gaza; Trump Orders Ban on Transgender Women in Women's Sports; CIA Offer "Buyouts" to Workforce; Doubts Over Trump's Immigration Policy in Red Nebraska ; U.S. Postal Service Briefly Pausing Package Deliveries from China. Aired 6-7p ET
## 368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CNN International: Trump Moves Quickly to Reshape Federal Government; Once-In-A-Generation Storm Brings Record Snowfall to U.S. South; ICRC Head on Upcoming Hostage and Prisoner Exchange; Trump Issues Slew of Executive Orders on Energy; Trump Indicates He's Open to New Sanctions on Russia ; Pardoned January 6 Defendants Being Released from Prison. Aired 9-10a ET
## 369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CNN International: Trump To Have First Oval Office Interview With Sean Hannity; Trump Says He'll Apply New Sanctions And Tariffs If Russia Doesn't End Ukraine War; Trump Pardons Founder Of Silk Road, A Dark Web Marketplace. Aired 11a-12p ET
## 370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CNN International: Trump: Russia And Ukraine To Begin Peace Negotiation; Hegseth Rules Out Ukraine 's NATO Membership; Trump Holds Call With Putin; Alexander Vinnik Exchanged For Marc Fogel; Trump To Impose Reciprocal Tariffs On Trade Partners; U.S. Inflation Accelerates; China To Help Stop Ukraine - Russia War; Senate Confirms Gabbard; Judge Lets Trump's Buyout Proceed; Associated Press Banned From White House. Aired 6-7p ET
## 371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CNN International: White House Pauses All Federal Grants And Loans; Justice Dept. Fires Officials Who Investigated Trump; Trump: Chinese AI "A Wake-Up Call" To Silicon Valley. Aired 11a-12p ET
## 372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CNN International: Zelenskyy Meets with U.S. Special Envoy; Trump 's Approval Rating at 47 Percent; Kash Patel Confirmed as FBI Director; Elon Musk Meets with President Milei; Pope Francis Remains in Hospital; Body Retrieved Not Shiri Bibas. Aired 6-7p ET
## 373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CNN Panelists Push Back Against Analyst Lamenting Trump's Ban On DEI
## 374                                                                                                                                                                                                                                                                                                                                                                                                                                CNN Saturday Morning Table for Five. President Trump Blames Federal Government Diversity, Equity, and Inclusion Policies for Commercial Plane and Military Helicopter Midair Collision Near Washington D.C. ; Elon Musk's Possible Influence in Trump Administration Examined; Robert F. Kennedy Jr. and Tulsi Gabbard Face Tough Questions at Senate Confirmation Hearings for Their Nominations to Trump Administration; Paramount Settling Lawsuit with Donald Trump over Editing of Televised Interview with Kamala Harris; Senate Minority Leader Chuck Schumer Says Democrats Aroused after Trump Administration's Order of Freezing of Federal Grants and Loans Rescinded. Aired 10-11a ET
## 375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CNN gives Karoline Leavitt nasty new nickname after first White House briefing
## 376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CNN hammers 'king of callousness' Jesse Watters for flip-flopping on DOGE cuts
## 377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CNN heaps shock praise on Donald Trump as he completes first week in office
## 378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CNN panel explodes into heated clash as pundit fumes she gets paid less than white male colleagues
## 379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CNN panelists at each other's throats over resigned DOGE staffer's 'racist' posts in fiery exchange
## 380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CNN pundit apologizes after sparking right-wing fury for blaming DC plane crash on Trump
## 381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CNN star Jake Tapper blasted for penning new book 'exposing' the cover up of Biden's health decline he 'actively participated in'
## 382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CNN's Coverage of the Inauguration of President Donald Trump; Trump to Hold Signing Ceremonies; Families of Israeli Hostages in Gaza Seen in the crowd. Aired 5-5:30p ET
## 383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CNN's Laura Coates Reports About the Tragedy on the Potomac ; Trump Blames DEI for Deadly Crash; CNN Remembers the Lives Lost on Flight 5432. Aired 11p-12a ET
## 384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CNN's Scott Jennings gives liberals a blistering reality check on Elon Musk's DOGE
## 385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CNN's Special Coverage on the Inauguration of Donald Trump as the 47th President of the United States . Aired 3-4a ET
## 386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CNN's shocking on-air dig at Trump during DC plane crash press conference
## 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              COLUMN | Do you need to know someone to get a job after graduation?
## 388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      COLUMN: Breaking down Kendricks performance
## 389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    COMMITTEE DEMOCRATS OUTLINE THREATS TO FEDERAL JUDICIARY INDEPENDENCE POSED BY TRUMP AND MUSK
## 390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CONGRESSMAN AL GREEN JOINS CONGRESSMAN SYLVESTER TURNER TO ADDRESS THE IMPACTS OF PRESIDENT TRUMP'S CONTROVERSIAL EXECUTIVE ORDERS
## 391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CONGRESSMAN SYLVESTER TURNER TO HOST PRESS CONFERENCE ON PRESIDENT TRUMP'S RECENT EXECUTIVE ORDERS
## 392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CONGRESSWOMAN FREDERICA WILSON'S STATEMENT ON PRESIDENT TRUMP'S COMMENTS REGARDING THE AIRCRAFT CRASH OVER THE POTOMAC RIVER
## 393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CONGRESSWOMAN KING-HINDS GIVES UPDATE ON TRUMP ADMINISTRATION'S GRANT FREEZE
## 394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CONGRESSWOMAN RIVAS HOSTS LISTENING SESSION WITH COMMUNITY HEALTH ORGANIZATIONS ON PRESIDENT TRUMP'S FEDERAL FUNDING FREEZE THE REPUBLICAN RIP OFF
## 395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           COTTON STATEMENT ON RFK JR. NOMINATION
## 396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         COVID Source?; Trump Reinstates Service Members Over COVID Vaccine Refusal; China's DeepSeek Making Gains in A.I. Race; Interview With Rep. Buddy Carter (R- GA ); Immigration Crackdown; Colombia Agrees to Take Immigrants; Interview With Sen. Bernie Moreno (R- OH )
## 397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CPSC: Acting Chairman Feldman Ends DEI at CPSC
## 398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CRENSHAW INTRODUCES LEGISLATION TO DEFUND UNIVERSITIES THAT MANDATE DEI STATEMENTS
## 399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CRUZ-LED INVESTIGATION UNCOVERS $2 BILLION IN WOKE DEI GRANTS AT NSF, RELEASES FULL DATABASE
## 400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CSG talks Trump administration, passes resolutions
## 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CSU administration responds to federal actions impacting community - The Rocky Mountain Collegian
## 402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              California Suffered Major Air Traffic Control Issue
## 403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              California congresswoman and her fellow liberals users blame Trump for deadly mid-air collision near Reagan airport
## 404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            California judge blocks Trump administration’s mass firings of federal workers – live
## 405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cameras installed in Steiner testing rooms to handle increasing usage - The Scarlet & Black
## 406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Campus Coalition Protests
## 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Campus Crime Logs: Jan. 10-17
## 408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Campus Democrats Reflect on Broad Electoral Defeat in 2024
## 409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Campus closed to public amidst winter storm, classes still held - The Scarlet & Black
## 410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Campus in chaos - The Observer
## 411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Can America 's kids read? It'll be harder to know after Trump's education cuts, researchers say
## 412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Can DEI be banned in schools?
## 413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Can a 28 Feb economic blackout day really harm Trump and Musk?
## 414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Can businesses ever run a true meritocracy?
## 415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Canada and Mexico order retaliatory tariffs after Trump signs order marking start of US trade war: Live
## 416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Capitol Hill Hearing Draws Scrutiny On Elon Musk; Number Of Gotaways At Southern Border Drops; Anderson Cooper Snaps At Guest Over DOGE; Dems Attack Musk In DOGE Subcommittee Hearing; Biden Admin Slow-Walked Marc Fogel Release; Trump Admin Entering Negotiations Over Ukraine War; Department of Education Leaders Rally Against DOGE; Worcester, MA Votes To Become Trans Sanctuary City
## 417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Captain America ' Fights Off Poor Reviews and a Backlash
## 418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Captain Sully 'Disgusted' by Trump's Remarks on DC Plane Crash
## 419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Caroline Kennedy Accuses Cousin RFK Jr Of Being A "Predator" And Urges Senators To Reject His Nomination As HHS Secy; Patel's Personal Battles With Intel Community Shaped His Views Of FBI; WH: NJ Drones That Caused Hysteria Were "Not The Enemy"; Trump Calls China's DeepSeek A "Wake-Up Call" For U.S. Industries; Beauty Company Embraces DEI As Other Brands Ditch Programs. Aired 2:30-3p ET
## 420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Carter Delivers Opening Remarks at Budget Markup
## 421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Celebrities rail against Trump’s policies — but hesitate to say his name
## 422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Center for Anti-Racist Research To Close Down
## 423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Center for Law and Social Policy: EEOC, NLRB Firings Plus Federal Buyouts Will Harm Workers and Our Economy
## 424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Chairman Carr Ends FCC's Promotion of DEI
## 425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Chancellor Tillis Hosts Town Hall on Recent Federal Actions
## 426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Changes to National Endowment for the Arts grants alarm local artists
## 427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Changing picture Walt Disney removes its diversity metric from executive pay scheme
## 428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Chaos, Confusion Erupts After Trump Halts Federal Money; Judge Temporarily Blocks Trump's Plans To Freeze Federal Aid; Trump Officials Issue Quotas To ICE Officers To Up Arrests; Oklahoma Official Supports Trump Agenda On Deportation Of Undocumented Migrants; Armed Man Arrested At The Capitol; RFK Jr. Slammed By Own Cousin. Aired 10-11p ET
## 429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Charlamagne Tha God gives brutal take on Vivek Ramaswamy's DOGE exit and predicts Elon Musk will 'crash and burn'
## 430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Charli XCX and Sabrina Carpenter gave the Grammys exactly what it needed – pop, not politics
## 431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Chicago slapped with lawsuit over sanctuary laws; Woke gender policies put girls in danger; Virginia school board thinks signs will keep women safe; Sex offender allegedly exposed himself to girls; Trump restores faith in America ; Teacher who refused to hide crucifix sues district; Common sense prevails in trans sports debate; Earlier, Zuckerberg seen leaving the White House, Democrats Apocalyptic Over Spending Cuts; Waste Watching Government Spending; DOJ Sues Illinois , Chicago Over Immigration Policy
## 432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Chiefs and Eagles players speak out on playing in front of Donald Trump with president set to attend the Super Bowl
## 433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Children with disabilities swept up in DEI fight, advocates say
## 434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Chilling 'conspiracy theory' about Black Hawk helicopter in DC plane crash is TRUE
## 435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     China Winning A.I. Race?; Robert F. Kennedy Set For Confirmation Hearings; Interview With Sen. Markwayne Mullin (R- OK ); Kristi Noem Joins ICE Raid; White House Holds First Press Briefing
## 436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Chrisette Michelle sang for Trump in 2017. The backlash lasted years: ‘I thought they’d never stop hating me’
## 437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cisco CEO Chuck Robbins defends DEI
## 438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Citi becomes latest US company to abandon diversity targets
## 439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Citigroup drops its diversity targets, renames its DEI unit
## 440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               City Council discusses federal funding freeze and Black History Month, celebrates Groundcover News
## 441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      City body abandons diversity requirements as backlash grows
## 442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           City chiefs must speak out about maintaining diversity
## 443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Civil Rights Groups Sue Trump Administration to Challenge Anti-DEI Executive Orders on Behalf of Nonprofit Serving Diverse Group of Women in the Skilled Trades
## 444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Civil and human rights groups sue over Trump diversity, transgender orders
## 445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Civil rights activists call for a Target boycott after retailer backs away from diversity programs
## 446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Civil rights groups ask court to overturn Donald Trump's anti-diversity, transgender orders
## 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Claims about USAID funding are spreading online. Many are not based on facts
## 448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Clarence Thomas in the spotlight, cardiac clearance, how running became fashionable: Catch up on the day's stories
## 449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Clay Travis makes shock Donald Trump ESPN prediction and says they regret being 'too left wing and woke'
## 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Climate change is a subject for action in and out of class - PNW Pioneer
## 451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Clock ticking toward possible Costco strike Saturday
## 452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Coastguard boss fired over diversity
## 453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Coca-Cola boycott brewing amid rumors staff are 'reporting colleagues to ICE'
## 454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Colbert on Trump’s second week: ‘ America is having some second thoughts’
## 455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Coleman Hughes is Interviewed about the Anti-DEI Push; Art delaCruz is Interviewed about Helping Wildfire Recovery Efforts; Pandas Make Public Debut in Washington. Aired 9:30-10a ET
## 456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Collective punishment': NYU suspends 13 students after pro- Palestinian sit-in - Washington Square News
## 457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      College Football Playoff National Championship Game: Ohio State v Notre Dame – live updates
## 458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               College considers Trump policy impacts on research, endowment, DEI
## 459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 College student groups based on race, ethnicity could be in jeopardy under Trump
## 460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Colleges around the US cautiously navigate Trump's DEI crackdown
## 461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Colman Domingo says we all have 'responsibility' to close racial equality gap
## 462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Colombia backs down on deportation flights after Donald Trump's tariff threats; ICE agents busted a Tren de Aragua; Now, President Trump Speak To House GOP Members
## 463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Colorado Attorney General joins 22 states in lawsuit over cut in federal research funds
## 464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Columbia Caves After Trump Tariff Threat; Columbia Agrees To Deportation Flights; The Fearmongering Over ICE Deportations Continues; Democrats React To Colombia 's Deportations Deal; Rufo Says He Was Targeted For Opposing DEI; CIA Changes Tune On COVID Lab Leak Theory; Mystery Drone Sightings Surge As FAA Lifts Limits; Survivor Mark Holocaust Remembrance Day; Palisades Resident Want Answers From Officials
## 465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Columbus leaders troubled by federal funding threats
## 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Comes back to the African American community': Bloomington kicks off Black History Month - Indiana Daily Student
## 467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Commissioner Roger Goodell talks DEI efforts, officiating, 18-game schedule, Justin Tucker ahead of Super Bowl LIX
## 468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Commitment to Inclusion: How Bloomsburg will protect DEI - The Voice
## 469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Community members gather for "Defend Democracy" protest
## 470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Companies are running away from DEI. One of America 's biggest beauty brands is standing firm
## 471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Companies like McDonald's and Meta are changing DEI in the Trump era
## 472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Companies never truly cared about DEI  | The Daily Campus Centered Divider Line
## 473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Comparing Donald Trump And Joe Biden Presidencies; Illegal Immigrant Arrests Soar Under Donald Trump; Hamas Names Three Israeli Hostages To Be Released; More Americans Think U.S. Us On The Right Track; Donald Trump Takes A Dig At CNN's Credibility; JPMorgan CEO Jamie Dimon Slams Remote Workers; Jon Stewart Says MSNBC Is Wildly Redundant; Trump Administration Faces Court Challenges; 19 Attorneys General Challenging DOGE Access; Lawsuit Challenges Access To Treasury System
## 474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Confusion persists over Trump Administration federal research funding policy | Campus | dailycal.org
## 475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Confusion rules as Trump stalls grants
## 476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Congress eyes probe, reforms in response to aircraft tragedy
## 477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Congressional Black Caucus Statement on President Trump's Executive Actions on Diversity, Equity, and Inclusion
## 478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Congressional Black Caucus blasts Trump DEI action as step backward
## 479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Congressional Hispanic Caucus Denounces Trump's Executive Order Ending Federal DEI Programs
## 480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Congressional Research Service Issues Insight White Paper on Recent Executive Actions on Diversity, Equity & Inclusion
## 481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Congressman Hank Johnson's Statement Following President Trump's Executive Order Targeting DEI
## 482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Congresswoman Cherfilus-McCormick's Statement on the Removal of the Tuskegee Airmen from the Air Force's History
## 483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Congresswoman Randall Leads Effort to Demand Reinstatement of Remote Work and Telework Agreements for Eligible Military Spouses
## 484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Congresswomen Cherfilus-McCormick, Chu, Pressley, and Morrison Demand Restoration of the Office of Research on Women's Health
## 485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Consultancy giant scraps diversity targets in wake of Trump order
## 486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Consumers are boycotting major retailers. Here's what they plan for 'blackout' on Feb. 28
## 487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Consumers are planning a one-day economic blackout on Feb. 28. Here's what to know.
## 488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Consumers rally behind DEI
## 489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Control tower staffing faulted Army identifies third pilot on the helicopter
## 490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Coralville Costco customers support the company's decision to keep DEI programs - The Daily Iowan
## 491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Cornyn Praises Pres. Trump for Dismantling Biden's Discriminatory DEI Regime
## 492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Cornyn, McCaul Op-Ed: President Trump Must Focus on CHIPS Act for Texas , U.S. Manufacturing Success
## 493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Corporate America discovers that activists can judge-shop too
## 494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Corrections and clarifications
## 495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Cost of campus diversity staff soars
## 496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Costco 's DEI clash has companies taking notes. Some, like Disney , are making changes.
## 497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Costco Rejects Shareholder Proposal to Scale Back DEI
## 498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Costco Should Think Twice About Doubling Down On Its 'Illegal' DEI Policies, Republican AGs Warn
## 499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Costco Takes Stand Against Donald Trump
## 500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Costco Under Fire in 19 States for Taking Stand Against Trump
## 501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Costco boldly defies Donald Trump's executive order
## 502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Costco confirms major food court change
## 503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Costco confirms switch of food court sodas from Pepsi to Coca-Cola
## 504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Costco defends its diversity policies as other US companies scale theirs back
## 505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Costco facing serious pressure from Republican attorneys general to ditch DEI policies
## 506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Costco plummets down list of top supermarkets as biggest customer bugbears damage its reputation
## 507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Costco shareholders reject push to reconsider DEI More than 98% show opposition to proposal
## 508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Costco shareholders vote against anti-DEI proposal
## 509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Costco successfully defends its diversity policies as other US companies scale theirs back
## 510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Costco unseated as top wholesale store by rival pushing high-tech checkouts
## 511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Costco won't join DEI backlash. Why shareholders rejected anti-'woke' proposal.
## 512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Costco’s board rejects anti-DEI motion, defends ‘respect and inclusion’
## 513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Could DEI rollbacks affect HBCU students' career development?
## 514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Could McDonald's Bring Back Beef Tallow?
## 515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Could Trump's freeze on federal loans and grants impact my student aid?
## 516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Could the US really take over Gaza?
## 517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Court Rules U.S. Treasury Department Officials Affiliated with Department of Government Efficiency May Access Treasury Department Systems as Read Only; President Trump to Speak at National Prayer Breakfast; NTSB, FAA Investigators to Brief Lawmakers on Midair Collision. Aired 8-8:30a ET
## 518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Court battles loom as Trump's Environmental Justice reversal begins
## 519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Courts Temporarily Rule Against White House Policies
## 520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Cowboy Carter' takes country crown at 67th Grammy Awards
## 521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashes, Collisions, Flipped Landings; Democrats, Media Blame Donald Trump Again; MAGA movement versus Democrat panic; Dallas DEI obsession under fire; Dallas police won't work with ICE; Trump cleans house; Boy wins girls' pole vault as another title stolen; Maine 's trans-mania; Kamala still serves up word salad; Wicker star Cynthia Erivo cast as Jesus Christ; JFK's grandson freaks out after JFK library closes
## 522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Critical moment in history': Protests across US target Trump, Musk
## 523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Critics Choice Awards 2025: Chelsea Handler ROASTS Justin Baldoni and Blake Lively in opener
## 524                                                                                                                                                                                                                                                                                                                                                                                                                            Critics Say Democrats Refused To Listen To RFK JR; Officials Recover Two Black Boxes From Wreckage; What Went Wrong In Midair Collision Near DCA ; Hegseth: There Was An "Elevation Issue" In Crash; Former Pilot: Night Vision Goggles Could Cause Issues; What We're Learning About Victims Of Air Disaster; Remembering The Victims Of Fatal Plane Crash; Dem Senator Says "Millions Will Die" Under RFK Jr; Trump Attacks DEI Policies After Mid-Air Collision; Key Trump Picks Work To Win Over Skeptics; FBI, DNI Nominees Grilled In Confirmation Hearings; RFK Works To Win Over Hesitant Republicans; Gabbard Pressed By GOP And Democrat Skeptics; Patel And Schiff Spar Over Weaponization
## 525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crowds Line Streets To Mourn Bibas Family Who Were Killed In Gaza; Fired Cybersecurity Official: Veterans' Sensitive Data At Risk; Supreme Court Hears Case On Reverse Discrimination; Gabbard: 100-Plus Intel Officers To Be Fired Over Explicit Work Chats. Aired 2:30-3p ET
## 526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              D.C. Crash, Black Boxes Found as Investigation Intensifies; Trump Blames DEI for Air Tragedy in D.C. ; Chaotic Scenes of Hostage Release in Gaza; Palestinians Return to Northern Gaza; Trump Nominees Grilled in the Senate; Trump Baselessly Blames DEI Initiatives For Air Disaster; Fireworks In Hong Kong To Celebrate The Year Of The Snake. Aired 2-2:45a ET
## 527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   D.C. Plane Crash Live Updates: Black Boxes Recovered From Plane And Helicopter
## 528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          D.C. business owners fight back against DEI rollbacks at mega-retailers
## 529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DARTMOUTH POLITICAL UNION HOLDS DEI DEBATE
## 530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DAVID BLACKMON: Trump Dresses Down The Davos Globalists
## 531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DAVID BOSSIE: Trump, Musk Are Sticking It To Administrative State Right Out Of The Gate
## 532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DC Black Hawk Crash Leaves No Survivors; Recovery Efforts Underway in DC Black Hawk Crash; Deadly Midair Collision Kills Dozens; FAA Short- Staffed on Air Traffic Controllers; Biden FAA Had Diverse Priorities; Trump Nominees Take Over Capitol Hill; Gabbard: I am Nobody's Puppet; Kash Promises to Clean Up the FBI; Interview with Sen. Josh Hawley (R- MO ); Trump Announces Tariffs for Mexico and Canada; Bureaucrats Furious Over In-Office Mandate
## 533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DC Plane Crash: NTSB Provides Update on Black Hawk Data
## 534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DC plane crash is a terrible tragedy. Trump, Democrats must stop the blame game. | Opinion
## 535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DC plane crash latest updates: Crews work to find remaining victims as investigators recover black boxes
## 536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DC plane crash latest: Families visit crash site as officials yet to find bodies of 12 victims
## 537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DC plane crash latest: First parts of plane wreckage are lifted from Potomac after families visit disaster site
## 538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DC plane crash latest: US army identifies third pilot taking part in 'doomsday' training as black box recovered
## 539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DC plane crash widow reveals fateful choice that killed husband and saved her life
## 540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DEI AND ACCESSIBILITY, EXPLAINED
## 541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DEI Another Day Britain should follow America in re-examining counterproductive diversity policies
## 542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DEI Guidance Removed from Federal Agency Websites Amid New Trump Measures
## 543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DEI In The Dumps
## 544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DEI Isn't For Us': Some Black-Owned Businesses Say Diversity Policies Don't Work
## 545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DEI Means Upholding Our Shared Values | Opinion
## 546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DEI Removal Setting America Back in Equality
## 547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DEI information disappears from University web pages, drawing community concern Login or create an account
## 548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DEI is dead in America – now the City wants to kill it in Britain
## 549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DEI is good for our business, Coca-Cola says
## 550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DEI is not a bad thing - The Hawk News
## 551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DEI is not over for corporate America , but needs to be reinvented
## 552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DEI is not over, but it will have to be reinvented
## 553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DEI is on Trump's chopping block. See how Democrats are fighting back.
## 554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DEI is out but it won’t die quickly in the arts
## 555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DEI is to blame for Trump's near-assassination claims Secret Service agent
## 556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DEI isn't dead - in Britain it is burgeoning Trump has declared that the woke dogma has had its day in the United States . But it lives on unchallenged here
## 557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DEI isn’t just a waste of money. It’s dangerous
## 558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DEI leaders scramble to counter Trump actions
## 559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DEI obliterated as Trump issues scathing order
## 560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DEI programs benefit many groups, not just Black and brown communities
## 561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DEI protesters take a musical approach to peace
## 562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DEI s  Inclusive Culture, Diverse Representation  Is Important, Leadership Firm Says
## 563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DEI work will continue, even amid today's wave of attacks, executive says
## 564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DEI, gender ideology executive orders spark divided responses among Bostonians
## 565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DEI: What you need to know about programs at local, state and national levels
## 566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DEL. PLASKETT RELEASES STATEMENT ON WHITE HOUSE ATTEMPT TO PAUSE FEDERAL FUNDING
## 567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DEMOCRATIC WOMEN'S CAUCUS ANNOUNCES EXECUTIVE STEERING COMMITTEE, FIGHTING FOR WOMEN'S RIGHTS AMIDST A SECOND TRUMP TERM
## 568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DHS Secretary Kristi Noem Tags Along For First New York City ICE Raids; Federal Judge Pauses Donald Trump Admin Funding Freeze; Kind And Cordial: Fetterman Praises Trump After Meeting At Mar-A-Lago; New Media Boom: WH: Podcasters, Influencers Welcome At Briefings; Google Maps Will Use Gulf Of America
## 569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DHS Secretary Speaks as ICE Raids Continue Across U.S. ; DHS Secretary Noem Joins Fed Agencies in New York City Raids; Trump Says, Chinese App a Wakeup Call to U.S. on A.I.
## 570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DL Hughley tells Snoop Dogg to look at 'the man in the mirror' after Trump inauguration backlash
## 571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DOD Orders Purge Of All Agency Media Promoting DEI
## 572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DOE Investigates ICSD Over Alleged Discrimination Towards White Students
## 573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DOGE AND THE DEPARTMENT OF TRANSPORTATION
## 574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DOGE Claims Billions in Savings; Trump Reverses Stance toward Ukraine ; McConnell Announces Retirement. Aired 6:30-7a ET
## 575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DOGE Plans to Slash Agency Overstaffing; DOGE Hunts Fraud Across Government; Trump Team Kicks Things Into Overdrive; Clay Travis Schools Democrats on Masculinity
## 576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DOGE SUBCOMMITTEE CHAIRWOMAN GREENE OPENS HEARING BY EXPOSING THE "DARK TRUTH" ABOUT USAID'S MISSION TO UNDERMINE U.S. INTERESTS
## 577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DOGE Sniffs Out More Waste, Fraud And Abuse; Clay Travis Calls Out Liberal Men For Being Weak; Where Is Everybody Else? Jamie Dimon Scolds Remote Workers For Being Slakers; Happy Valentine's Day! City Killer Asteroid Speeding Towards Earth
## 578                                                                                                                                                                                                                                                                                                                                                                                                                    DOGE Starts FEMA Purge; DOGE Dismantling Department of Education; DOGE Shreds Blank Checks for Scammers; Democrats Want Elon Behind Bars; Trump and DOGE Aim Wrecking Ball at Bureaucrats; World Leaders Want a Taste of the Golden Age; Trump Bringing Peace and Prosperity to Middle East; Hegseth Works Out with Troops; Vance Asserts Dominance in AI Race; Interview with Sen. Josh Hawley (R- MO ); Biden Takes a Late Night Beating; Democrats Cook Up a Constitutional Crisis; Rogan: The Democrat Establishment Sucks; Deluded Democrats Face Political Extinction; House Launches Federal Secrets Task Force; Bad Actors Try to Exploit Major Events; Hansen Catches Pervert Trying to Pick Up Teen
## 579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DOGE Targeting Non-DEI Staff, Starting With Probationary Workers—Reports
## 580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DOGE finds millions of instances of social security fraud in database including a 360-year-old and 'vampires'
## 581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DOGE for all: States are now looking to create their own cost-cutting agencies
## 582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DOGE gets mixed reviews from conservatives who have long wanted major budget cuts
## 583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DOGE prepares gold reserve 'audit' after top Republican invites Elon Musk to review Fort Knox
## 584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DOGE rips apart half a BILLION in DEI grants to 'develop anti-racist mindsets' at Education Department
## 585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DOGE slashes millions from Education Department research
## 586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DOGE to Make 'Rapid Safety Upgrades' to Air Traffic Control: Elon Musk
## 587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DOGE uncovers farcical $2.3m program training soldiers to 'speak and act in a DEI friendly' way
## 588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DOGE' Ranks Agencies By How Much Money They Cut; Progressives Blast 'DOGE' And "Stupid" Americans; iPhone Sparks Controversy With Voice-To-Text Bug; Rachel Maddow Slams MSNBC For Firing Joy Reid; Virginia Parent Opposes Gender Studies Curriculum; Pam Bondi Warns California , Maine And Minnesota To Comply With Federal Law; Southwest Plane Dodges Private Jet On Runway In Chicago; Former Federal Worker Has "No Sympathy" For Fed Employees
## 589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOGE's " America first" philosophy causes global and national harm - The Mass Media
## 590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOGE's inner workings - and workers
## 591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOGE's latest request came with plenty of confusion
## 592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DOGE's next target: federal officials monitoring civil rights and discrimination, report says
## 593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DOJ Moves To Dismiss Mayor Eric Adams (D- New York City , NY ) Case Amid Protest Resignations; Trump White House Didn't Realize Firings Included Nuke Stockpile Staff; Vice President Vance Railed On European Leaders In Munich; J.D. Vance Meets With Far-Right Party Leader Of Germany ; Associated Press Barred From Oval Office And Travelling With President Trump. Aired 10-11p ET
## 594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DOJ Officials Who Prosecuted Trump Fired; Trump to Address House Republicans in Miami; Sen. Ruben Gallego (D- AZ ) is Interviewed on the Crackdown of Unlawful Immigrants All Across the U.S. ; U.S Tech Stocks Plunge Sparked by New Chinese AI. Aired 5-6:00p ET
## 595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DOJ Proposes 20-Year Sentence for Convicted January 6 Riot Leader
## 596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOJ fires employees who worked on Trump prosecutions under Jack Smith | The Excerpt
## 597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DOJ under Trump administration halts civil rights litigation, freezes investigation against Worcester PD
## 598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DONATION PLUG - PLEASE DO NOT TOUCH
## 599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DOTEDU LIVE: NAVIGATING TRUMP'S FIRST WEEK
## 600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DOTEDU LIVE: NEW ORDERS AND NEW CHALLENGES FOR HIGHER EDUCATION
## 601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DOZENS OF LAWSUITS AGAINST THE TRUMP ADMINISTRATION: SAY "BYE, BYE" TO DEI
## 602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DR TIM HAMES: The seven ways that Donald Trump will send shockwaves around the world
## 603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DUFFY MOVES TO RESCIND GREENHOUSE GAS MANDATE, RESET DOT POLICIES
## 604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Daily Briefing: 'Not logistically or technically feasible'
## 605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Daily Briefing: A 'big, beautiful bill'
## 606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Daily Briefing: A chilling effect on corporate DEI efforts
## 607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Daily Briefing: Beyoncé finally takes home the gold
## 608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Daily Briefing: Federal DEI workers placed on leave
## 609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Daily Briefing: Upping America 's AI competition
## 610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Daily Briefing: Who are the Zizians?
## 611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Dan Bongino: Trump nominates podcast pundit as deputy FBI director
## 612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Dark clouds on the horizon': Top UW officials react to federal funding freeze
## 613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Dashcam Shows Philadelphia Plane Crash From Stunning Angle
## 614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Daughters of Target cofounder 'alarmed' at retailer's DEI rollback
## 615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             David Axelrod Is Very Distraught That Trump, Musk Are Saving Taxpayer Dollars By Gutting Foreign Aid
## 616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  De Anza community reacts to Trump 's inauguration - La Voz News
## 617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DePaul is standing firm on DEI, won't be 'bullied' - The DePaulia
## 618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DePauw received Department of Education letter instructing U.S. schools to cease DEI efforts - The DePauw
## 619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DeSantis' Hold on Florida Is Slipping. Trump Could Deliver the Final Blow | Opinion
## 620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Deadline for assessment of DEI programs nears
## 621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Debrief with Diermeier: Civil discourse, campus safety, federal administrative changes and more - The Vanderbilt Hustler
## 622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Decades of betrayal
## 623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Decision to remove Black WWII pilots history from Air Force training reversed
## 624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Deep State Fights Back Against Trump
## 625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Defending DOGE: Musk & Trump Questioned On Aggressive Overhaul; Trump Repeats Gaza Plan: "We're Going To Take It"; Marc Fogel Lands In U.S. After Trump Secures Release. Aired 9-10p ET
## 626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Defense Secretary Directs Creation of Task Force to Restore America 's Fighting Force
## 627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Defense Secretary in Offense Mode
## 628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Defense secretary orders military to prepare for major budget cuts
## 629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Deloitte UK refuses to scrap DEI rules in split with US office
## 630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Deloitte UK signals splits with Trump's US over diversity commitments
## 631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Deloitte UK to prioritise diversity schemes in split from US arm
## 632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Deloitte asks consultants to US government to remove gender pronouns from emails
## 633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deloitte ditches diversity policies in the US — but not Britain
## 634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Deloitte tells US staff working on government contracts to ditch pronouns from emails
## 635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Deloitte tells some US staff to drop email pronouns Financial services
## 636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Deloitte, the largest of the Big Four firms, is split over DEI
## 637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Delta to "Continue moving forward" with equity work
## 638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Delta's DEI Stance Called Out After Toronto Plane Crash
## 639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Dem Gov's Budget Proposal Doubles Down On Some Of The Left's Most Unpopular Priorities
## 640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Dem Rep's Minutes-Long Tirade About 'Mediocre White Boys' Somehow Veers Into ICE, Black Colleges
## 641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Dem Senator Supports Spending Millions For Sesame Street Program In Iraq Amid USAID Cuts
## 642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Democracy Forward: Higher Education Officials, Restaurant Workers, City of Baltimore Challenge Trump Administration's Violation of Free Speech Protections, Separation of Powers In Suit to Block Anti-DEIA Executive Orders
## 643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Democrat Questions Elon Musk Loyalty to US Because of His Citizenship
## 644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Democrat Smear Campaign In Full Force Against RFK Jr.; Nonprofits Are Making Billions Off Border Crisis; Gender Radicals Recruiting Kids; Kansas Debates Ban On Transition Care For Minors; New Chinese Security Threat; China's DeepSeek Rattles A.I. World; U.S. Navy Orders Not To Download DeepSeek
## 645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Democrat calls firing of FBI officials ‘deeply alarming’ as some federal websites appear to go dark – live
## 646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Democratic Governor Praises Trump's 'Great' Penny Decision
## 647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Democratic Party Handed Polling Blow on Heels of Second Trump Term
## 648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Democratic candidates for next NJ governor meet at 'informational forum'
## 649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Democrats Ambush Department Of Education; President Donald Trump Caps Off Third Week With Wild News Conference; John Fetterman Says Democratic Party Brand Is "Toxic"; Shaming and Scolding: Fetterman Slams Democrats Over Their Messaging; Countdown To Super Bowl LIX On Fox
## 650                                                                                                                                                                                                                                                                                                                                                                                                                                                             Democrats Are Rooting Against America ; Donald Trump's Transforming Washington; Media Elites Flounder Against J.D. Vance; Companies learning The Hard Way; Woke Target Gets Wake Up Call As Target Under Fire For DEI lunacy; Buttigieg Takes Aim At Democrats' Diversity Approach; Biden Imported Millions Of Illegals; Rape, Drugs, And Abuse In Massachusetts Shelters; Massachusetts Governor Says No Background Checks On Shelter Residents; Madonna Isn't Laughing At Trump's King Joke; Elon's Son Boogied All Over Resolute Desk; Meghan Markle Announces New Brand, As Ever; Trump Goes After The Cartels As Mexico Pushes Back On Trump's Cartel Crackdown
## 651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Democrats Are Storming Federal Buildings; DOGE Takes Aim At Department Of Education; Elon's Nerd Army Is Getting Cozy; DOGE Is Expanding Operations; The Pentagon Is Getting Audited; USAID's Waste And Abuse Runs Deep; USAID Whistleblower Speaks Out; Japan 's Prime Minister Meets With Trump; Japan Pledges $1 Trillion US Investment; Japanese PM Manhandles US Press; Europe Cutting Tariffs On US Car Imports; Trump Revokes Biden's Security Clearance; Countries Line Up To Cut Deals With Trump; The Era Of DEI Is Over; Democrats Are Lost In The Wilderness; Sink Or Swim
## 652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Democrats Can't Stop Blaming Elon Musk For Everything; Donald Trump Slaps Reciprocal Tariffs On U.S. Trading Partners; Sanctuary Smackdown: Trump DOJ Sues NY Officials For Prioritizing Migrants; Transgender Sanctuary City: Worcester , MA Caves To Activists After Chaotic Meeting; Sounds Like A Guy: Illinois Democrats Lawmaker Slams Term Manufacturing
## 653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Democrats Descend Into Chaos At DOGE Hearing
## 654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Democrats Fight For Their Constituents: Government Workers; Runaway Judges Protect Runaway Spending; Donald Trump Unites America ; DOGE Cuts $101 Million In DEI Grants; DOGE Outworks, Outsmarts Bureaucrats; Democrats Try To Barge Their Way Into Government Buildings And Thinks The Rules Don't Apply To Them; Lee Zeldin Shakes Up EPA; Ray Talks To Super Bowl Expo Attendees About Trump; Americans Are Ready For Unity Under Trump; Kedrick Lamar's Performance Gets Political; The Last Straw; Trump's Making Change
## 655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Democrats Freak Out As Elon Musk Takes Axe To Bloated Bureaucracy; Media Chocked By How Fast Donald Trump Is Moving On His Agenda; Dems Ditch Kamala; Fmr DNC Official Says No Dems Want Harris To Run Again; It's A Great Honor: Kelce: Awesome That Trump Will Be At Super Bowl; Baddie, Gigachad, Mewing: Parents Struggle To Keep Up With Their Kids' New Lingo
## 656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Democrats Have A Simple Message For Republicans: Stop Playing Politics With Disaster Aid For Fire Victims
## 657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Democrats Rage Over Elon Musk; Interview With Gov. Glenn Youngkin (R- VA ); Trump Proposes U.S. Forces in Gaza; Trump Signs Executive Order on Women's Sports
## 658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Democrats Rip Trump, Musk As DOGE Targets Fed Agencies; Russia Frees American , Trump Talks Gaza And Hostages; Soon, Trump Signs New Exec Orders To Bolster DOGE; Senator Collins TO Support RFK Jr For HHS Secretary; Vance Warns Europe Against Over-Regulating AI; Trump DOJ Moves To Dismiss Case Against NYC Mayor; Trump Pardons Former Illinois Governor Blagojevich
## 659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Democrats Shriek And Lie, Rinse, Repeat; Democrats' Trans Mania Stymies Appeal; The Trans Resistance Is Losing Its Mind; Democrats lied about economy for years and blame Trump for Bidenomics; Democrats try to rebrand Biden-flation; Democrats suffer from DOGE derangement syndrome; Democrat representative call Elon Musk a dick; Anderson Copper to Chris Sununu, don't be a dick; FBI discovered 2,400 JFK-related files; Old Blake Lively interview shows true intentions; Left-wing resistance flops again; It's almost MAHA time
## 660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Democrats Want To Impeach Trump Again; Democrats Hold Rage Ritual Outside Capitol; Musk is Driving Democrats Crazy; Federal Agencies Are Getting DOGE'd; USAID's Long List Of Crap; POLITICO Payments Exploded Under Biden; USAID Whistleblower Speaks Out; USAID's Waste And Abuse Runs Deep; Uncut "60 Minutes" Kamala Interview Released; The War On Women's Sports Is Over; What Is The Ick
## 661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Democrats and former defense officials rail against ‘pure pettiness’ of Trump Pentagon firings
## 662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Democrats and protesters rally outside treasury department to protest Elon Musk’s access to sensitive information – live
## 663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Democrats are fast losing the argument on Elon Musk’s Doge revolution
## 664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Democrats call for Education Department to rescind threats to end federal funding for schools with DEI programs
## 665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Democrats denied access to EPA during attempt to meet with DOGE officials
## 666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Democrats introduce bill to protect transgender service members
## 667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Democrats prepare for war with Trump over "illegal" funding freeze
## 668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Democrats refuse to vote on Trump budget pick: ‘So clearly unfit for office’
## 669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Democrats tear into Trump for blaming the DC plane crash on DEI
## 670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Democrats tears into 'vile' and 'grotesque' Trump for blaming the plane crash on DEI
## 671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Democrats, what do you stand for?
## 672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Demonstrators gather at Capitol to protest Trump administration policies, executive orders - The Daily Texan
## 673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Demonstrators protest next to Downtown Phoenix campus as students join in
## 674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Department of Education Orders Academic Institutions to End All Race-Based Programs Within Two Weeks
## 675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Department of Education contract cuts spur ‘chaos and confusion’
## 676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Department of Education could be next on Trump’s chopping block
## 677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Department of Education rolls back DEI initiatives
## 678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Department of Education warns schools to cut DEI policies or lose funding
## 679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Department of Education's Dear Colleague letter challenges DEI policies in education - The Rocky Mountain Collegian
## 680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Department of Education's New DEI Portal Sparks Backlash: 'Snitch Line'
## 681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Department of Education's Two-Week Deadline
## 682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Department of Education, LBCC Assure Federal Funding Pause Does Not Affect Student Financial Aid
## 683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Despite Executive Order, Carleton to continue DEI programming - The Carletonian
## 684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Despite federal DEI changes, SAC continues inclusivity goals - The Saint Anselm Crier
## 685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Despite protest, Iowa lawmakers advance bill ending civil rights protections for trans Iowans - The Daily Iowan
## 686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Details about Trump’s executive orders around DEI are causing confusion
## 687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Devastating Pennsylvania plane crash scene pics emerge as American flyers unnerved by second deadly accident
## 688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Did America just get pranked... again? - The Northerner
## 689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Did Donald Trump Freeze Hiring of Air Traffic Controllers? What We Know
## 690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Did FAA Reject Air Traffic Controllers Based on Race? What We Know
## 691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Did Trump revoke the Equal Employment Opportunity Act? Here's what to know
## 692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Differences bubble up between PepsiCo and Coca-Cola on diversity programs
## 693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Director of Equal Opportunity & Title IX responds to federal order for school's to follow Trump's 2020 Title IX Rule - The George-Anne Media Group
## 694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Director of National Intelligence Tulsi Gabbard vows to crack down after kinky sex chats among NSA agents exposed
## 695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Disabled Americans Deserve Better
## 696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Disabled pilot responds after Trump blames diversity and inclusion policies for DC crash
## 697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Disappointed but not surprised: New DEI changes maintain the 'status quo'
## 698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Disgraceful reason American flag was hung upside-down in Yosemite
## 699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Dismissed EEOC commissioner warns that Trump plans to 'erase the existence of trans people'
## 700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Disney Becomes Latest Company To Scale Back DEI Initiatives During Trump Era
## 701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Disney Drops Diversity Programs in Win for Trump
## 702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Disney appears to walk back DEI policies in latest investor filing
## 703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Disney cuts trigger labels down to the bare necessities in DEI purge
## 704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Disney ditches trigger warnings in DEI bonfire
## 705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Disney is retreating from the frontline of the culture wars – one trigger warning at a time
## 706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Disney is the latest company to shake up its DEI initiatives. Read the memo to staff.
## 707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Disney scraps woke trigger warnings on family favourites such as Dumbo and Peter Pan in a bonfire of diversity, equity and inclusion policies
## 708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Disney waters down content warnings in retreat from diversity
## 709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Disney+ changing content warning about stereotypes, 'negative depictions' before some films: Reports
## 710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Disney, amid changes to DEI initiatives, will alter content warning ahead of ‘Peter Pan,’ ‘Dumbo’ and other older films
## 711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ditch diversity if you want but don't be the poster child for mean bosses
## 712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diversity in the NHS means staff are now promoting 'anti-whiteness', warns Health Secretary
## 713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diversity is the future ? better get used to it Trump is trampling DEI initiatives but, virtue-signalling silliness apart, firms see value in reflecting changing Britain
## 714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diversity jobs die out as Britain passes ‘peak woke’
## 715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diversity, equity and inclusion office rescinds award from Pro- Palestinian group after public criticism from university president
## 716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do Trump and co want a world reclaimed by straight white men? It’s not certain they’ll get it
## 717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do you care about DEI when it comes to where you spend your money? Tell us. | Opinion
## 718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Does D.E.I. Help or Hurt Jewish Students?
## 719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Does my country want me? Germany 's historic far-right election gain worries me. | Opinion
## 720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Domingo, Gabby Thomas put DEI on menu
## 721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Don Lemon blasts 'nepo baby' Trump in furious rant about his DEI crackdown
## 722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Don't lament the death of USAID  | The Daily Campus Centered Divider Line
## 723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Don't stop at DOGE: Trump can be the transformative president America needs now | Opinion
## 724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Donald Trump Administration Hit With Slew of Legal Challenges
## 725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Donald Trump And Benjamin Netanyahu Meet At The White House; Elon Musk Takes DOGE Hammer To Bloated Fed Government; Trump Train Steams Ahead: President Moving Quickly To Cross Off His To-Do List; Good Luck: NJ Gov Murphy Dares ICE Arrest Immigrant Living In Home; Eating For Lunch: Democrats Furious As Trump Stacks Up Early Wins
## 726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Donald Trump And Elon Musk Rip Democrats' Meltdown Over DOGE; Stephen A. Smith Slams Democrats For Weak 2028 Candidates; Cartel Crackdown: CIA Using Drones To Hunt For Fentanyl Labs, Trafficking; Now: Trump Delivers Remarks At Tech Summit In FL ; Man Of The Moment: Greg Graces Cover Of Variety: Late Night's New King; Battle For Overhead Bins Is Raging
## 727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Donald Trump Announces Plans For U.S. To "Take Over" Gaza Strip; Democrats Rage Over DOGE Cuts At "Nobody Elected Elon Musk" Rally; No Men In Women's Sports: Trump Bans Transgender Athletes From Women's Sports; Oval Office Showdown: Soon: Newsom Faces Trump Over L.A. Fire Aid And Water; Romance Reading: Men Are Picking Up More Salty Novels Than Women
## 728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Donald Trump At Risk for an Unemployment 'Valentine's Day Massacre'
## 729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Donald Trump Blames Obama, Biden, DEI for DC Plane Crash
## 730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Donald Trump Executives Order Targets Transgender Athletes; Donald Trump Suggests Gaza Takeover; Donald Trump Pick Takes Over Justice Department; Democrats Struggle To Unify Their Opposition To Donald Trump; Two Men Accused Of Involvement In Burglaries Involving Wealthy And Famous Victims; President Trump Suggests U.S. Should Oversee Rebuilding Of Gaza Strip During Press Conference; President Trump Signs Executive Order Withholding Federal Funds From Schools That Allow Biological Males In Women's Sports; Democrats Criticize Trump Administration Suspending USAID Operations
## 731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Donald Trump Gets Warm Reception At Super Bowl; Trump Administration Says 'DOGE' Is Reducing Government Waste; Super Bowl Crowd Reacts To Donald Trump And Taylor Swift; Kristi Noem Visits Gitmo As Migrant Planes Arrive; Elon Musk: FEMA Sent $59 Million To Luxury Hotels For Migrants; One Killed In Plane Collision At Scottsdale Airport; Gabbard DNI Confirmation Vote Expected This Week; Controversial Cabinet Picks Face Senate Votes; Trump Applauded By Fans At Super Bowl LIX; Eagles Praise God After Super Bowl Win
## 732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Donald Trump Hit With Major DEI Legal Setback
## 733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Donald Trump Hopes Super Bowl Attendance Helps Unite America ; Donald Trump Hits Highest Approval Mark Of Either Term; DOGE Derangement Syndrome Takes Over Capitol Hill; Democrats Rage As DOGE Cuts Waste In Govt; DEFCON 5 Dems: Golden: Quit Hyperventilating Over Trump's Every Move; Trump's Two Cents: President Declares War On The Penny
## 734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Donald Trump Is Already in Reverse
## 735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Donald Trump Making 'Sweeping Cuts' to Homeland Security—What to Know
## 736                                                                                                                      Donald Trump Moves To "Significantly" Reduce Federal Workforce; Republican Lawmakers Push For Border Security; Slew Of Challenges To Donald Trump Agenda; Federal Funds For New York City Migrant Program; Sen. Dave McCormick (R- PA ) Is Interviewed About President Trump's Efforts To Bring Home Marc Fogel; Pennsylvania Teacher Released From Russian Custody; Biden Criticized For Not Bringing Gogel Home; Trump Foreign Policy Agenda For Second Term; Vice President J.D. Vance Speaks To European Leaders About Partnering With America Or China In Development Of Artificial Intelligence; Severe Winter Weather Expected To Hit U.S. South And Northeast; Defense Secretary Pete Hegseth Visits U.S. Troops Overseas; Hamas Given Deadline To Release Most Hostages To Israel To Maintain Ceasefire; King Abdullah II Of Jordan Offers To Take Sick Palestinian Children Into His Country; President Trump Speaks About Terms For Continued Support To Ukraine In War Against Russian Invasion
## 737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Donald Trump Navy Pick Said Recruits Must Be Willing To 'Rip Out' Own Guts
## 738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Donald Trump Opens Second Term With Several Shots In War Against The Deep State
## 739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Donald Trump Praises Work Being Done By DOGE; Democrats Try To Frankenstein A Left-Wing Joe Rogan; Blame Game: Media Stretches To Find Any Way To Tie Crash To Trump; Liberal Bubble: Whoopi: Don't Need To Talk To Trump Supporters; Pint-Sized Portions: The Adults Who Swear By The Kids' Menu
## 740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Donald Trump Removes First Female Coast Guard Commandant: Reports
## 741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Donald Trump Review Orders DEI Review Of Aviation; Democrats Still Blaming Loss On Racism And Misogyny; Trump's Tariff Toolbox: Tomorrow: 25 Percent Tax On Canada And Mexico , 10 Percent On China; Now: NTSB Gives Update On D.C. Crash Investigation
## 742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Donald Trump Shakes Up Global Elite At Davos ; Donald Trump Confident His Admin Can Get U.S. Back On Track; Biden Forever! Illegal Gangbanger Says F Trump As He's Nabbed; Son Goes Maga: Liberal Parents Struggle With Trump-Supporting Kids; Work From Home Crybabies! Federal Workers Freak Out Over Back-To-Office Orders
## 743                                                                                                                                                                                                                          Donald Trump Signs Laken Riley Act Into Law; Robert F. Kennedy Jr. Grilled During Contentious Testimony; Two Cabinet Picks To Testify; Bob Menendez Convicted Of Accepting Bribes; Charges Dropped Against Trump Codefendants; Trump Rescinds Federal Grant Freeze Memo; Trump Nominees Face More Scrutiny In Senate; Migrant Encounters at U.S. Southern Border Fall Precipitously After Inauguration Of President Trump; ICE Raids In U.S. Cities Leading To Plane Flights Of Migrants Being Repatriated To Home Country; Health And Human Services Secretary Nominee Robert F. Kennedy Jr. Testifies To Senate For His Confirmation Hearing; FBI Director Nominee Kash Patel And Director Of National Intelligence Nominee Tulsi Gabbard To Face Senate Confirmation Hearings; Trump Administration Rescinds Office Of Management And Budget Memo On Freezing Of Federal Government Grants And Loans
## 744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Donald Trump Starts Cleaning House; Trump Scores $500 Billion AI Investment; Media Realizes Democrats Have It All Wrong; Interview With Sen. Markwayne Mullin (R- OK ); Biden Escapes to California ; Biden Pardons Set Bad Precedent; Media Pumps Out New Sloppy Hoaxes; The New Resistance Is Screechy And Annoying; Trump Eliminates Federal DEI Programs
## 745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Donald Trump Stream Rolls Through First Month In Office; President Donald Trump Calls Taxpayer Refunds "A Great Idea"; Trump Takeover: MAGA Movement Is Taking Back Culture From The Left; Long Live The King: Trump Hails Move To Kill NYC Congestion Pricing; No Strings Attached: Delta Offers $30K To Passengers After Plane Crash
## 746                                                                                                                                                                                                                                                                                                                                                      Donald Trump Takes Questions After A.I. Announcement; Donald Trump Announces Artificial Intelligence Investment; Race To Confirm Remaining Donald Trump Nominees; Biden And Trump Issue Sweeping Pardons; Trump Issues Sweeping Pardons For January 6 Rioters; Many Of Biden Justice Department Prosecutions Undone; New Artificial Intelligence Infrastructure Initiative A.I. Investment Backed By Oracle; Marco Rubio Confirmed By Senate As U.S. Secretary Of State; President Trump Orders Active Duty U.S. Troops To Southern Border; Coast Guard Commandant Relieved Of Duty By President Trump; Trump Administration Cancels Migrants' Appointments Made Through CBP One App; President Trump Draws Criticizes For Pardoning Violent Offenders At January 6th Riots
## 747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Donald Trump Wants a D.C. Takeover; DOGE is Sniffing Around in Sensitive Spots; Americans Deserve a Rebate Check; Elon is Too Big to Rig; Trump Team Launches Operation Whirlwind; Schumer is Issued a Warning; Miller Gives Media a Civic Lesson; Fraudsters Always Complain the Loudest; Florida Cracks Down on Illegal Immigration; Kash Patel Confirmed as FBI Director; Trump Honors Black History Month; Trump Shakes Up the World Order; Interview with Sen. Josh Hawley (R- MO ); Democrat Favorability is in the Tank; Elitist Democrats Alienated America ; DEI is on Life Support
## 748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Donald Trump blames Democrats and DEI for fatal Washington mid-air collision
## 749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Donald Trump finally reveals Elon Musk's real job in federal government
## 750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Donald Trump fires first female Coast Guard leader over her obsession with DEI
## 751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Donald Trump fires top US military officer in Pentagon shake-up
## 752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Donald Trump is a Great Man of History
## 753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Donald Trump is a fascist
## 754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Donald Trump is already giving his voters exactly what they asked for
## 755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Donald Trump is serving a second presidential term. Here's the lowdown on his personal life, career, and politics.
## 756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Donald Trump returns to the White House - Mace & Crown
## 757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Donald Trump says there are no exemptions on 25% aluminum and steel tariffs – as it happened
## 758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Donald Trump to ban transgender troops and DEI military programs in latest executive order flurry
## 759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Donald Trump to be the 47th President of the United States ; Second Day of Israel -Hamas Ceasefire Updates; World Leaders Brace for Trump's Second Presidency; Donald Trump's Second Inauguration Just Hours Away; Trump Hails TikTok's Return Hours Ahead of Inauguration; Trump Promises Tough Crackdown On Immigration. Aired 2-3a ET
## 760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Donald Trump's America will make Harry and Meghan 'more unpopular than ever': Royal experts say new president's inauguration is a 'day of fear' for the Sussexes with their US residency under threat
## 761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Donald Trump's Approval Rating Higher With Black People Than White People
## 762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Donald Trump's First Month in Office Compared to First Term
## 763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Donald Trump's Gen Z Popularity Plunges
## 764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Donald Trump's Move to Ban DEI in FAA Backed by Aviation Lawyer
## 765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Donald Trump's Plans Exposed As Journalist Receives 'Most Ever' Leaked Docs
## 766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Donald Trump's ex Marla Maples makes appearance at 2025 Grammys as former husband is blasted by stars
## 767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Donald Trump's new Transportation Secretary Sean Duffy seen performing raunchy dance in embarrassing video
## 768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Donald Trump: Igniting A Human Rights Crisis - Whitman Wire
## 769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Donald Trump’s administrative self-coup
## 770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Donald Trump’s frenetic first week leaves corporate America struggling to keep up
## 771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doocy Asks Press Sec If It Is 'Safe To Fly Commercially' As Trump Laments Hiring Process For Air Traffic Controllers
## 772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doomed Black Hawk chopper was rehearsing Trump's evacuation to a nuclear bunker when it slammed into American Airlines jet, online sleuths claim as more wild conspiracy theories emerge
## 773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doomed Black Hawk helicopter's call sign sparks fresh mystery following DC plane crash
## 774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Dozens of Education Department staffers on leave amid Trump’s DEI purge
## 775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Dr. Arza's Powerful Takeaways From Washington, D.C. Meeting: A Bold Vision for the Golden Age of School Choice
## 776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Dr. Jonathan Reiner is Interviewed about the Measles Outbreak; Trump Takes First Appeal to Supreme Court ; Mark McKinnon is Interviewed about Trump's Russia / Ukraine Comments. Aired 6:30-7a ET
## 777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Draft of Brown's institutional values to be released in March - The Brown Daily Herald
## 778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Drexel responds to DEI policy shift
## 779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Drone Video Shows Aftermath of Philadelphia Plane Crash
## 780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Duckworth Speaks at Asian American Coalition of Chicago 's Lunar New Year Celebration
## 781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Duke, don't comply': Duke, Durham community members protest to demand University stand up to Trump, end PPD policy
## 782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Durbin Files Amendments To Republicans' Budget Bill
## 783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            During An Angry Rant About DOGE On The Daily Show, Jon Stewart Accidentally Smashed A Coffee Mug And Bloodied His Hand; Our New Survey Says 81 percent of Americans Said They Support Deporting Illegal Immigrants Who Have Committed Crimes; White House Press Secretary Announces White House Press Team Will Determine Outlets in White House Press Pool; President Trump Announces Plan to Sell $5 Million Gold Cards to Wealthy Foreigners Granting Them Green Card Residency and Path to U.S. Citizenship; CNN Anchor Jake Tapper Publishing Book on Democratic Party's Cover Up of Former President Biden's Cognitive Decline.
## 784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        During Trump's Department of Education takedown, what happens to Chapman?
## 785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ECU's New Policy No Longer Requires DEI Courses
## 786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EDITORIAL | Penn State must defend its DEI initiatives
## 787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     EEOC CHAIR: AGENCY MUST RESCIND 'FLAWED' HARASSMENT GUIDANCE
## 788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             EIU responds to national DEI changes
## 789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ELON MUSK AND DOGE: A PRO-LIFE PUSH TO END TAXPAYER FUNDING FOR ABORTION AND RADICAL LEFT WASTE
## 790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            EMBRACING EXPRESSION AT META REQUIRES CHANGES THAT TRANSCEND POLITICS
## 791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ENSURE YOUR INCLUSION AND DIVERSITY INITIATIVES ARE IN COMPLIANCE
## 792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EPA ADMINISTRATOR LEE ZELDIN CANCELS NINE MORE CONTRACTS, SAVING NEARLY $60 MILLION
## 793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EPA Places 171 DEIA and Environmental Justice Employees on Administrative Leave
## 794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     EPA fires nearly 400 workers after OPM order
## 795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EPA places more than 160 environmental justice employees on paid leave
## 796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     EPA puts employees who tackle pollution in overburdened communities on leave
## 797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             EU 'should send troops to defend Greenland' Move would send a strong signal, says bloc's top general after US President threatens to seize territory
## 798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EVOLVE TO SOLVE: WORKFORCE INTEGRATION, IANDD, AND THE FUTURE OF WORK POST-TRUMP EO
## 799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EWU's International Affairs Club reacts to Trump's return to office - The Easterner
## 800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   EXCLUSIVE: Bureaucrats Privately Fume About Trump Abolishing DEI, Go Into Full Conspiracy Mode
## 801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            EXCLUSIVE: Education Groups Say Linda McMahon's Confirmation Is Essential To Overhaul 'Years Of Incompetence' At Dept
## 802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    EXCLUSIVE: GOP Senator Reintroduces Bill To Boot One Agency's Bureaucrats Outside The Beltway
## 803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          EXCLUSIVE: K-12 DEI program faces federal scrutiny amid Trump crackdown
## 804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EXCLUSIVE: Military Watchdog Sues Air Force, DOD To Obtain Records On Pentagon LGBT Pride Event
## 805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EXCLUSIVE: Musk Quietly Inserts DOGE Across Federal Agencies In Move That Could Uproot $162,000,000,000 Gov't Industry
## 806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      EXCLUSIVE: Republican Sen. Katie Britt Reintroduces Bill To Finish Border Wall Construction
## 807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EXCLUSIVE: Trump Axes Intern Program After Biden Officials Hid Signs Of DEI 'Cancelled due to recent Executive Orders'
## 808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EXCLUSIVE: Trump Must Purge Dozens More DEI Bureaucrats Burrowed Into Government, Watchdog Says
## 809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      EXCLUSIVE: Trump To Defund Schools That Teach Critical Race Theory, Radical Gender Ideology
## 810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 EXECUTIVE ORDER REQUIRES AGENCIES TO PARTICIPATE IN DEREGULATION
## 811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      EXECUTIVE ORDERS AND HIGHER ED | UPDATE ON JANUARY 23, 2025
## 812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        EXPLANATION OF VOTE ON UNICEF AGENDA ITEM 5(A): COUNTRY PROGRAM DOCUMENTS
## 813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Early moves by Trump are an assault on LGBT+ rights
## 814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Earned her place': Friends grieve Rebecca Lobach, US Army pilot killed in DC crash
## 815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     East Bay teacher facing controversy for showing off Pride flag, DEI books in 1st grade class
## 816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Economic Blackout: Will a 24-hour boycott make a difference?
## 817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Economists Warn of Trump's Federal Grant Freeze: 'Catastrophic Shock'
## 818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Editor Daily Rundown: Trump Shutters DEI Offices, Ends Race-Based Hiring Rules
## 819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Editorial Roundup: United States
## 820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Editorial | The Daily Collegian Board of Editors share value of student press freedom
## 821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Editorial: Erasure of DEI deepens American divide
## 822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Education Department creates ‘End DEI’ portal to field public complaints
## 823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Education Department employees placed on paid leave as part of Trump administration's DEI purge
## 824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Education Department issues guidance ordering universities to remove race-based programs
## 825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Education Department letter threatens federal funding of any school that considers race in most aspects of student life
## 826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Education research contracts are slashed DOGE terminates nearly $1 billion in agreements
## 827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Eisgruber says U. is "exploring measures" in wake of Trump orders, stops short of specific guidance
## 828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  El Salvador Offers to House Violent U.S. Criminals; Egg Prices Rising; Musk and Trump Targeting Department of Education Next?; Republicans Ready to Confirm Robert F. Kennedy Jr.?; Elon Musk's Role in Federal Government?. Aired 11-11:30a ET
## 829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       El racismo subyace en los ataques de Trump a la diversidad
## 830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Elimination of federal climate tools, some used to inquire in to Musk’s firms, sparks alarm
## 831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Elon Musk Defends DOGE At Donald Trump's First Cabinet Meeting; Gavin Newsom Launching Podcast To Chat With MAGA Leaders; Secret Sex Chat: Gabbard Fires 100-Plus Intel Officers For Explicit Messages; Golden Ticket To America : Trump Announces Green Card Alternative For The Rich; JetBlue Passenger Blesses Plane With Oil
## 832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Elon Musk Dismantling Government, White House Calls Him "Special" Employee; Trump Backs Down; E.L.F. Embracing DEI. Aired 7-8p ET
## 833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Elon Musk Dominates First Trump Cabinet Meeting; Musk: Trump Told Me To Be "More Aggressive" In Federal Cuts; Texas Reports First Measles Death As Cases Spread Rapidly; New Strategy To Combat Bird Flu, Lower Egg Prices; Supreme Court Signals It Will Make It Easier For Americans To File "Reverse" Discrimination Lawsuits; Hamas Expected To Release Bodies Of 4 Israeli Hostages. Aired 4-5p ET
## 834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Elon Musk Dominates Trump's First Cabinet Meeting; Musk Takes Financial Hit Amid Tesla Protests; Jeff Bezos Faces Backlash Over WAPO Changes; New battle emerges over fate of Medicaid; Supreme Court Takes on "Reverse Discrimination" Case; CNN Presents " America Asks." Aired 11p-12a ET
## 835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Elon Musk Given Warning Over DOGE Cuts to Education: 'Devastating Impact'
## 836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Elon Musk Is Reshaping The Government, But Is It Legal?; Breaking Down Elon Musk's Expanding Role in Trump Administration; Democrats Plot First Major Attack on Trump Agenda; Trump To Become First President to Attend Super Bowl. Aired 8-9a ET
## 837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Elon Musk Is Working Overtime To Save U.S. From Deficit; Democrats' DOGE Derangement Syndrome On Full Display; Europe's Simple Choice: America Or China; Europe's Free Ride Is Over; Judges Want To Stop Trump From Exposing Corruption; Democrats Weaponize The Courts; DOGE Says FEMA Spent $59 Million On Hotels For Illegals; Leakers Are Getting Iced; Battle Of The Billionaires, Musk Versus Altman; Democrats Does Not Even Know How To Curse
## 838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Elon Musk Issues Warning to Department of Education
## 839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Elon Musk Joins Donald Trump At White House For E.O. Signing; Donald Trump Doubles Down On Hamas Threat To Release Hostages; IRS Agents To Help Remove Illegal Immigrants; Audit The Border: IRS Agents TO Help Remove Illegal Immigrants; MAGA Nightmares! Trump-hating Dems Flooding Psychology Offices; Trump Is Saving Plastic Straws And Sharks
## 840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Elon Musk Says US Government Needs to 'Delete Entire Agencies'
## 841                                                                                                                                                                                                                                                                                                                                                         Elon Musk Tells Federal Workers To Detail Work In An Email Or Lose Their Jobs; Hooters Preparing To File Bankruptcy; Transgender Basketball Player Goes AWOL From Girls' Playoff Game And Team Lose By 26 Points; San Francisco's Asian Voters Tell Local News Why They Are 'Walking Away' From The Democrats; MNNBC Parent Company NBCUniversal Settles 'Uterus Collector' Lawsuit; ICE Whistle Blower Speaks Out, Alleges Mass Hysterectomies Performed On Migrant Women; Jane Fonda And Fran Drescher Make Political Speeches At Screen Actors Guild Awards Ceremony; James Carville Advises Democrats To Remain Silent And Allow Trump Administration To Falter; New Study Claims Periods In Text Messages After Each Word Makes Text Seem More Emotionally Intense.
## 842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Elon Musk Touts Government Firings by Wielding Chainsaw; Kash Patel Critics Warn of Purge as He Takes Over FBI; Ex-NFL Punter Arrested After Anti-MAGA Protest; Joe Rogan Dethroned as Fans Sound Off; Musk Eyes Major Change to "X" Platform; U.S. -Canada Tensions Spill Onto the Ice for Final Grudge Match. Aired 11p-12a ET
## 843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Elon Musk and President Trump Appear in Oval Office Together; Russia Releases American Prisoner Marc Fogel
## 844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Elon Musk announces DOGE's first official act as Trump takes over in Oval Office
## 845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Elon Musk calls for the US to 'delete entire agencies' from the federal government
## 846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Elon Musk considers 'DOGE dividend' that would send $5,000 check to all Americans following massive budget cuts
## 847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Elon Musk is proving that sunlight is fatal to bureaucracy
## 848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Elon Musk pours cold water on Trump’s $500 billion AI project
## 849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Elon Musk praises Doge efforts to cut federal workforce after judge ruling – live
## 850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Elon Musk stands accused of pretending to be good at video games. The irony is delicious
## 851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Elon Musk wants Trump to 'delete entire agencies' as part of his radical push to slash government spending
## 852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Elon Musk will now 'plug in' to also commandeer US air traffic control system, says Transportation Secretary
## 853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Elon Musk's Crackdown on USAID Splits With Project 2025 Agenda
## 854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Elon Musk's DOGE Dealt Two Legal Blows in 24 Hours
## 855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Elon Musk's DOGE lieutenant's X-rated online pseudonym leaves CNN hosts flummoxed
## 856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Elon Musk's DOGE office budget more than doubles from $6.5 to $14.4 million
## 857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Elon Musk's Trans Daughter Blasts Stonewall Website Changes
## 858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Elon Musk's role in reshaping US revealed in subtle message that shows exactly where Trump found plan for federal workforce purge
## 859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Elon Musk’s scheme for US federal employees: which jobs are going?
## 860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Elon Musk’s wrecking ball
## 861                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Elon's Nerd Army Shakes Up DC ; Federal Agencies Are Getting DOGE'd; Bureaucrat Spending Sprees Are Over; Democrats Got Caught Red-Handed; USAID Is A Massive Pool Of Waste; Biden Signs With Major Talent Agency; Democrats Revive Lame Misinformation Playbook; Liberals Call For A Trans Revolution; Trans Assassin Tried To Kill Treasury Secretary; The Democrats Are Old And Out-Of-Touch; Media Freaks Out Over Trump's Gaza Grab; Trump: Gaza Could Be Riviera Of Middle East; Trump Vows To Stabilize Middle East; Pam Bondi Confirmed As Attorney General; Tulsi And RFK, Jr. Clear Major Hurdles; Media Tries To Shame Young Conservatives
## 862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Embattled GOP Rep. Ogles  Latest Appeal To Trump? Blaming Plane Crash On DEI
## 863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Emory College Republicans, professors reflect on start of Trump's presidency - The Emory Wheel
## 864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Emory shows shaky commitment to diversity following N-word incident - The Emory Wheel
## 865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Employees fume as Trump wipes 'transgender' from CDC and deletes 'climate change' from agriculture department
## 866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Employers 'reframing not retreating' amid DEI backlash Workplace diversity Companies seek to keep benefits of schemes while placating critics, write Anjli Raval, Emma Jacobs and Taylor Nicole Rogers
## 867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Employers Ask What Constitutes 'Illegal D.E.I.'
## 868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          En el mitin de Trump previo a la toma de posesión, la música era contradictoria El cuaderno del crítico
## 869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      End of an era in the Senate
## 870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Endeavour Air slammed for 'DEI obsessed' social media after Toronto plane crash
## 871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Equal Rights Advocates: Statement - Trump's Expected Day One Gender and DEI Executive Orders Are About Control and Limiting Basic Freedoms - 'We Will Not Be Erased'
## 872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Eric Adams' Legal Battle: Indictment Fate in Question
## 873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Este no es el momento para desconectarse El Comité Editorial
## 874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Esto es lo que el presidente Trump ordenó cambiar en su primera semana
## 875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Evacuation Orders in Los Angeles County ; Trump's Migrant Crackdown; Trump Send Additional Troops To U.S. - Mexico Border; Trump Administration To Challenge Sanctuary Cities; Musk Questioning The Stargate Deal; Trump Threatens Sweeping Tariffs; Prince Harry's Victory Against Rupert Murdoch Media Empire; Remembering Kobe Bryant. Aired 6-7p ET
## 876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Even The Left's Biggest Fire Breathers Are Quietly Bending The Knee To Trump's Border, Cost-Cutting Agenda
## 877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Event revisits 1969 Main Building occupation
## 878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Everyone Loves A Good Comeback Story; Eagles Demolish Chiefs In Super Bowl; Trump Makes Super Bowl History; Hulk Hogan Joins Primetime; Trump Cheered, Taylor Booed At Super Bowl; Trump's Approval Is Higher Than Ever; America Embraces Trump; Elon Sniffs Out Government Waste; Americans Defend Waste And Fraud; Trumps Leave The Media Speechless; The Media Demands More Democrat Aggression; FBI Finds 2,400 Secret JFK Assassination Files
## 879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Everything Trump did in the first executive orders and actions of his presidency
## 880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ex-Meta director sues the tech giant, alleging a 'toxic pattern of silencing women'
## 881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Exclusive Interview with President Trump And Elon Musk
## 882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Exclusive: Disney makes changes to DEI programs and rebrands employee groups
## 883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Exclusive: FEMA firings reveal roiling tension and confusion within the Department of Homeland Security
## 884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Exclusive: Government Departments Stop Whistleblower Training
## 885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Executive Churn Slowed In 2024, Study Finds
## 886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Executive Order Suspending Refugee Program Could Leave Afghans Who Helped U.S. In Limbo; Trump Signs Executive Orders Cracking Down On Immigration; Trump Begins Second Term With Deluge Of Executive Actions; Tech Leaders, Billionaires Flock To Donald Trump's Inauguration. Aired 12:30-1p ET
## 887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Executive actions Trump has taken so far
## 888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Executive blitz concerns future educators - THE CHANTICLEER
## 889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Executive order list: What executive orders did President Trump sign and what to know
## 890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Executive orders continue after Trump's first month back in office, garnering approval and concern
## 891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Executive orders continue following Trump's first month back in office, garnering approval and concern
## 892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Executive orders, funding freezes have already shut down one of MSU's programs - and more could follow | News | msuexponent.com
## 893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Existing on Earth: a political issue? - The Spectator
## 894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Exiting UC President Drake holds final systemwide town hall, discusses staff wellness and policy changes - The UCSD Guardian
## 895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Experts reveal rating for Trump's second inaugural address
## 896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Explainer: Trump's executive order jeopardizes Murray State program - The Murray State News
## 897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Explosive New Fire In L.A. Area Could "Go Nuclear"; January 6 Leader Back At Capitol; Trump's DEI Purge; Trump Threatens Sanctions If Putin Doesn't End War In Ukraine . Aired 7-8p ET
## 898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      FAA Closes Helicopter Routes Near Reagan National Airport; Remembering The Lives Lost In The Plane-Helicopter Collision; Palestinians Return To Find Devastation In Northern Gaza; Trump Could Slap 25 Percent Tariff On Mexico And Canada Saturday; Contentious Hearings For Kash Patel, Tulsi Gabbard and RFK, Jr.; Aired 12:00-12:45p ET
## 899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    FAA Indefinitely Closes Helicopter Routes Near Reagan National Airport; Families, Friends Honor The 67 People Killed In DC Tragedy; Confirmation Of Some Of Trump's Controversial Picks In Question; Most U.S. Companies Say Diversity Is Good For Business. Aired 1:30-2p ET
## 900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      FAA Says, Six People On Board Plane That Crashes In Philadelphia; Private Medical Flight Crashes Near Philadelphia Mall; NTSB Says, All Three Bodies Recovered From Black Hawk Helicopter; CNN Follows The Midair Collision Of American Eagle 5342 And Army Helicopter; Trump Makes Baseless Claims That DEI Led To The Crash Near Reagan National Airport. Aired 10-11p ET
## 901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   FAA to make huge safety update after 67 died in DC plane crash
## 902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            FAA turned away 1,000 job applicants because of its DEI rules despite staff shortages, lawsuit claims
## 903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FAA warning system outage could cause flight delays
## 904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FACT CHECK: Did Trump Fire 3,000 Air Traffic Controllers Ahead Of Fatal Washington, DC Collision? 'A White House spokesperson denied the claim's validity in an email to Check Your Fact'
## 905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         FACT CHECK: Viral X Post Makes False Claim About Taxes, Child Support 'Trump has not publicly referenced the claim, and there is no other evidence supporting the claim'
## 906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    FACT SHEET: PRESIDENT DONALD J. TRUMP PROTECTS CIVIL RIGHTS AND MERIT-BASED OPPORTUNITY BY ENDING ILLEGAL DEI
## 907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FACT SHEET: TRUMP CONTINUES TO BLOCK HUNDREDS OF BILLIONS OF DOLLARS OWED TO COMMUNITIES ACROSS AMERICA
## 908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         FBI Finally Hands Over Names Of Employees Involved In Jan 6 Cases To DOJ
## 909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     FBI Gives Up Details Of Over 5,000 Employees Involved in Jan. 6 Cases To DOJ
## 910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       FBI warns staff they are in a 'battle' as Trump purges agents who 'did their jobs in accordance with the law' and investigated Jan 6 riots
## 911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FCC CHAIRMAN BRENDAN CARR'S ATTACKS ON DIVERSITY, EQUITY AND INCLUSION ARE RACIST, SEXIST AND AN EGREGIOUS ABUSE OF POWER
## 912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             FCC Launches Probe Into DEI Policies At One Of Corporate Media's Largest Strongholds
## 913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FEBRUARY 9, 2025 GOSAR INTRODUCES LEGISLATION TO HALT ONLINE CENSORSHIP
## 914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FEDERAL JUDGES BLOCK DEI ORDERS, EXTEND PAUSE ON NIH CUTS
## 915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            FFRF TV show hones in on Christian nationalism in Trump's first weeks
## 916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           FIVE REASONS FOR HOPE: ACTIVISM AND RESISTANCE IN 2025
## 917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FORBES: HERE ARE ALL THE MAJOR LAWSUITS AGAINST TRUMP AND MUSKAS USAID SHUTDOWN SPARKS LEGAL BATTLE
## 918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FOUR NEW EXECUTIVE ACTIONS RELATED TO MILITARY, SERVICE MEMBERS
## 919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      FTC Chairman Ferguson Announces that DEI is Over at the FTC
## 920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FTC Grants Chairman Ferguson Authority to Comply with President Trump's Orders to End DEI
## 921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   FTSE 350 firms achieve 'gender-balanced' boardrooms but lack women in top jobs
## 922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fabricated Trump post blames Chiefs' Super Bowl loss on 'DEI nonsense' | Fact check
## 923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Fact checking Vanderbilt's and VUMC's responses to executive orders about DEI - The Vanderbilt Hustler
## 924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Fact-checking Trump’s claims about DEI, Biden and the DC plane crash
## 925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Faculty Members Express Confusion and Concern as University Responds to Trump Administration - Chicago Maroon
## 926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Faculty of Arts and Sciences Diversity Dean Position Left Vacant For Nearly Two Years
## 927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Faculty wrestles to find best way to use AI in classroom - PNW Pioneer
## 928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Fail Our Children': New Data Shows Just How Badly Student Learning Suffered As Schools Doubled Down On DEI
## 929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Fake video of Trump kissing Musk's feet blasts in HUD building: "LONG LIVE THE REAL KING"
## 930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Family weekend 2025 offers loved ones a glimpse into students' lives Login or create an account
## 931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Fans slam SNL's sour Trump assassination joke: 'When am I supposed to laugh?'
## 932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Far Left Nonsense': Iraq War Veteran Explains Impact Of Trump's Executive Orders On Military DEI Initiatives
## 933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Far-right pundit Matt Walsh rails against women in law enforcement: 'It's an absurdity!'
## 934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Fate of DEI programs hang in the balance, schools threatened to comply or lose federal funding
## 935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Fauci Museum Exhibit Funding Canceled: DOGE
## 936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Feb 27 Consumers plan 24-hour spending blackout to protest prices, policies
## 937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Fed Vice Chair Philip Jefferson Returns to Swarthmore to Discuss Labor Markets
## 938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Fed's Interest Rate Isn't What You Should Focus On
## 939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Federal Bureaucrats Ordered To Remove Pronouns From Email Signatures
## 940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Federal Buyout Deadline Delayed; Democrats Blast Alleged Shadow Government; Another Blake Lively Lawsuit; President Trump Doubles Down on Gaza Takeover; Immigration Crackdown in Colorado ; Interview With Gov. Greg Abbott (R- TX )
## 941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Federal Buyout Offer Paused; White House Wants Faster Pace of Migrant Arrests; Elon Musk Continues Gaining Access to Federal Government Systems. Aired 1-1:30p ET
## 942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Federal DEI Staff Put on Leave; ICE to Use Common Sense with Migrant Arrests; John Sandweg is Interviewed about Deportations; Rare Storm Blankets South; DOJ Sidelines Workers. Aired 9-9:30a ET
## 943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Federal DEI employees to be placed on paid leave
## 944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Federal Employees Faces Mass Layoffs Over Buyout Deadline; Philippine Vice President Impeached at the Lower House Level; Former USAID Leaders Slammed Trump's Plans to Dismantle the Agency; Ukraine Now Affected by the U.S. Foreign Aid Freeze. Aired 3-4a ET
## 945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Federal Financial Freeze May Affect Federal Agencies
## 946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Federal Freeze on Funding That Caused Student Concern Becomes Rescinded
## 947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Federal Funding Freeze: Students React to Temporary Pause of Federal Aid
## 948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Federal Funding Frozen?
## 949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Federal Government recognizes two sexes only - THE GANNON KNIGHT
## 950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Federal Grants Freeze Rattles Clark - The Scarlet
## 951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Federal Judge Blocks Trump USAID Leave Plan; Trudeau Says Trump Threat To Annex Canada "Is A Real Thing"; Trump Says Musk will Review "Just About" Every Federal Agency. Politico: Trump Considering Blagojevich For Ambassador Post; Actress Debra Messing On Her Pro- Israel Activism; Federal Judge Temporarily Blocks Trump From Putting At Least 2,200 USAID Workers On Leave. Aired 5-6p ET
## 952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Federal Judge Blocks Trump’s Freeze of Federal Grant Funds
## 953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Federal Judge Clears Way For More Mass Firing; Some Once- Hawkish Republicans Soften Stance On Ukraine ; Sen. Markwayne Mullin, (R- OK ), Is Interviewed About Ukraine , Kash Patel; Senate Confirms Kash Patel To Lead FBI In 51-49 Vote; 11-Year-Old Texas Girl Dies By Suicide After Classmate Said ICE Would Deport Her Parents, Family Says; WH Hosts Black History Month Reception Amid Crackdown On DEI; West Texas Measles Outbreak Hits 58 Cases. Aired 5-6p ET
## 954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Federal Judge Halts Dismissal Of Employees Working On DEI From Intel Agencies
## 955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Federal Judge Hits Pause on Trump's Push to Halt Federal Funding for DEI Programs
## 956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Federal Judge Receives No Answers from Justice Department to Questions about Organizational Structure of Department of Government Efficiency; Republican Congressman Experiences Contentious Town Hall with Constituents after Mentioning Elon Musk. Aired 8-8:30a ET
## 957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Federal Judge Threatening Trump Admin With Criminal Charges Over Spending Freeze Used To Be A Major Dem Donor
## 958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Federal Mental Health Agency Scrubs Website Of Resources Created By Transgender Activists
## 959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Federal Policies Set A New Tone For Business
## 960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Federal Title IX changes will not impact Wilkes' own policy - The Beacon
## 961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Federal Worker Buyouts; Trump Posts New Details Of His Proposed U.S. Takeover Of Gaza; Accident Investigators Brief Lawmakers On Midair Collision; Thousands Killed In Democratic Republic Of Congo; Nation Sees Long Road Ahead As It Looks To Rebuild; New Bird Flu Strain; Arab-Americans React To Gaza Takeover Proposal. Aired 12-1p ET
## 962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Federal actions raise funding concerns for CSU, nationwide academic research - The Rocky Mountain Collegian
## 963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Federal agencies begin removing DEI guidance from websites in Trump crackdown
## 964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Federal agencies told to implement transgender bathroom ban as Trump's DEI attacks continue
## 965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Federal agencies told to move to eliminate DEI offices and positions within 60 days
## 966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Federal budget cuts endanger over $6 million in college's research grants
## 967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Federal directive gives MSU until Friday to cut all 'race-based' programs
## 968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Federal employees given deadlines to name DEI colleagues - or risk 'adverse consequences'
## 969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Federal employees ordered to remove pronouns from their email signature and urged to find 'higher productivity jobs'
## 970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Federal freeze order rescinded, could impact University funding if implemented
## 971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Federal funding cuts affect CWRU student, faculty researchers - The Observer
## 972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Federal funding freeze brings confusion, concern and community to UH
## 973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Federal funding freeze causes chaos among local San Diego officials
## 974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Federal government suspends funding
## 975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Federal judge temporarily blocks Trump DEI executive orders
## 976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Federal money for public health, medical research in Oregon at risk under Trump orders
## 977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Federal money for research in Tennessee in limbo
## 978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Federal student loans, Pell Grants not tied up in funding pause, but will be reviewed
## 979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Federal workers free to ignore Elon Musk email ultimatum, US personnel office says – as it happened
## 980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Federal workers have to make their decisions on buyout offers today
## 981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Federal workers ordered to report efforts to ‘disguise’ DEI programs or face ‘consequences’
## 982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Female NTSB head stuns the press with her unexpected response to Trump's claim DEI caused the crash
## 983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Fentanyl Crisis; Interview With Rep. Jeff Van Drew (R- NJ ); Pete Hegseth Visits Border; Trump Delays Tariffs on Canada and Mexico ; President Trump Welcomes Florida Panthers to White House
## 984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Few schools have updates on their evaluations of Trump's DEI executive order
## 985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Few think government should ignore DEI, even if it grows the economy
## 986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Fiery moment NBC's Peter Alexander clashes with new WH press secretary Karoline Leavitt over Trump's mass deportation and spending freezes
## 987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Fifty years ago today, Mrs Thatcher became Tory leader. Here’s how her legacy has been ripped up
## 988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Fighting talk from Trump as he sets out his plans In his inaugural address, the president took aim at everyone from bureaucrats to migrants. What will his words mean in practice, asks David Charter
## 989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Finding Our Way Through the Flood Zone: Combating Fear and Distraction in the Trump Era
## 990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Fired Federal Employee Whines That Trump Administration Cuts Are 'Inhumane'
## 991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Fired VA health workers reinstated, but new staff don't trust Trump and Musk
## 992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Firings, freezes and layoffs: A look at Trump's moves against federal employees and programs
## 993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      First Thing: Blacklists naming ‘woke’ federal workers were funded by Project 2025 thinktank
## 994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     First Thing: Donald Trump calls China’s DeepSeek AI chatbot a ‘wake-up call’
## 995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          First Thing: Fears grow for Israel -Gaza ceasefire as Netanyahu threatens to resume war
## 996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         First Thing: Trump baselessly blames ‘diversity’ and Democrats for deadly DC plane crash
## 997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       First female Coast Guard commandant ousted
## 998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 First woman to lead Coast Guard was forced out of residence with three hours notice, report says
## 999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           First-generation and proud: Why your degree matters now more than ever
## 1000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                FirstFT: Ceasefire under threat after Hamas accused of violation
## 1001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               FirstFT: Germany ’s Friedrich Merz pledges ‘independence from US’
## 1002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FirstFT: Marco Rubio arrives in Saudi Arabia for Ukraine talks
## 1003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                FirstFT: Trump pushes for more control of independent regulators
## 1004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 FirstFT: Trump’s trade war rocks global markets
## 1005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 FirstFT: US oil output growth to slow despite Trump’s ‘drill, baby, drill’ plan
## 1006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Fitness centers expand hours to meet growing demand - PNW Pioneer
## 1007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Five conclusions from SGA's annual State of QUnion - The Quinnipiac Chronicle
## 1008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Flight Data Appears To Show Black Hawk Off Course And 100 Feet Above Maximum Allowed Altitude; Trump To Impose Tariffs On Mexico , Canada & China Tomorrow. Aired 4-5p ET
## 1009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Flight Data Appears To Show Helicopter Above Altitude, Off Course; U.S. Air Traffic Control System Under Scrutiny; More Than A Dozen January 6 Prosecutors Fired; More Victims Of Deadly Midair Collision Being Identified. Aired 6-7p ET
## 1010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Florida Sues Target Over Pride Merchandise As More States Take Legal Action Against DEI
## 1011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Florida gets revenge on Target over tuck swimsuits and DEI obsession that sparked a culture war
## 1012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Florida takes aim at Target's 2023 Pride collection in a lawsuit over the retailer's DEI initiatives
## 1013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Flying Becoming Less Safe in 'Disturbing Trend,' Ex-FAA Investigator Warns
## 1014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Following President Trump's Executive Orders, Haverford Affirms Commitment to Community Diversity and Safety - The Bi-College News
## 1015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For BLK & Bold, Target's DEI retreat is "disappointing"
## 1016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For the sake of the students and the community, GRCC must commit to DEI
## 1017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Forbes Daily: A Massive AI Infrastructure Project Boosts Oracle Stock
## 1018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Forbes Daily: Colombian Trade Tariffs On Hold After Brief Standoff
## 1019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Forbes Daily: DeepSeek s  Wake-Up Call  And Nvidia s Historic Plunge
## 1020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Forbes Daily: DeepSeek s AI Model Raises National Security Concerns
## 1021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Forbes Daily: Jamie Dimon Defends DEI Efforts Amid Trump s Crackdown
## 1022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Forbes Daily: New Musk Directive To Feds Sparks Confusion And Pushback
## 1023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Forbes Daily: Nvidia Shakes Off DeepSeek Concerns With Robust Earnings
## 1024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Forbes Daily: Outcry After Trump Proposes U.S. Take Over  Gaza Strip
## 1025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Forbes Daily: Questions About DOGE Multiply As Justice Department Steps In
## 1026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Forbes Daily: Tesla s China Reliance Poses A Major Conflict For Musk
## 1027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Forbes Daily: Trump Blasts Fed As Agency Pauses Interest Rate Cuts
## 1028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Forbes Daily: Trump Says Mexico And Canada Tariffs On Deck Next Week
## 1029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Former American Airlines captain ‘disgusted’ by Trump crash remarks
## 1030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Former Costco Executive Hits Back at DEI Criticism: 'Who We Are'
## 1031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Former GOP Gov. Tim Pawlenty Tells Van Jones About 'Advise And Consent' In Debate About Kash Patel Confirmation
## 1032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Former Kenyan President Rips African Leaders Over Trump's Aid Freeze
## 1033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Former NOAA Officials Warn That Job Cuts Could Risk Lives and Livelihoods
## 1034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Former Obama Fundraiser Praises Donald Trump's 'Competency'
## 1035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Foundation for Government Accountability: Killing DEI Means the American Dream is Available to Everyone
## 1036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Founder Of Pro-DEI Group At DOJ Has A New Gig Undermining Trump From The Outside
## 1037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Fox News Host Says Only People Who 'Are Up In Arms' About Trump, Musk Cuts Are 'Unionized Government Bureaucrats'
## 1038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Fox News host Jesse Watters says DOGE should spare veterans after hearing his friend's job is on the line
## 1039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Fox News hosts insist Trump played 'consoler-in-chief' after he linked deadly DC crash to DEI
## 1040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Fox News removes pro-DEI language from job postings after reporter's inquiry
## 1041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Fox News' Jesse Watters Begs Trump to Save Job of Pal Who Is Victim of Musk's DOGE Cuts
## 1042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Fox and Friends say federal workers should take after Trump and not Biden 'who was in bed by 4'
## 1043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Fox host Jesse Watters turns on Trump and DOGE for 'callous' cuts after his veteran friend got the chop
## 1044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Freed Women Hostages Handed Over To Israeli Forces; U.S. Freezes Almost All Foreign Aid Effective Immediately; Pete Hegseth Confirmed As U.S. Defense Chief In Tiebreaker Senate vote; White House Says Migrant Deportation Flights With Military Aircraft Have Begun. Buses Arrive Carrying Palestinian Prisoners in West Bank; Federal Agencies in the U.S. Told to Eliminate DEI Positions Within 60 Days; Trump Tours Disaster Areas in California and North California . Aired 6-7a ET
## 1045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Freeze On Federal Grants And Loans Takes Effect At 5 P.M. Today; WH: NJ Jones That Caused Hysteria Were "Not The Enemy"; ICE: 1,100-Plus Arrested In Immigration Enforcement On Monday. Aired 2- 2:30p ET
## 1046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         From forklift driver to CEO: Meet Costco 's Ron Vachris
## 1047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       From gay clubs to Maga anthem: the absurd, contested history of the Village People’s YMCA
## 1048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       From the Community | The dangers of institutional acquiescence Login or create an account
## 1049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              From the Community: Stanford must oppose Jay Bhattacharya's appointment as NIH director Login or create an account
## 1050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Frosh 15' isn't real, but prof. urges starting healthy habits - PNW Pioneer
## 1051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Full List of Democrats Who Voted To Confirm Doug Collins as VA Secretary
## 1052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Full List of States Suing Donald Trump Over Federal Funding Freeze
## 1053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Full List of US States Setting Up Their Own 'DOGE'
## 1054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Full impact of pause to federal aid remains unclear, won't affect Pell grants  | The Daily Campus Centered Divider Line
## 1055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Full-scale assault': Campus reacts to Trump investigation into university DEI programs | Campus | dailycal.org
## 1056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Future of DEI uncertain as Trump takes office again
## 1057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Future public education faces uncertainties - The Murray State News
## 1058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GARAMENDI STATEMENT ON TRUMP'S REACTION TO DCA AVIATION CRASH
## 1059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GLAAD STATEMENT AND FACTS FOR REPORTERS ON LATEST DISCRIMINATORY AND INACCURATE EXECUTIVE ORDER TARGETING TRANSGENDER AMERICANS
## 1060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             GOP Kentucky Senate candidate knocks McConnell for Trump ‘no’ votes
## 1061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GOP Senator Says 'Permanent Washington's Worst Nightmare' Has Arrived, Predicts More Govt Bloating Will Be Cut
## 1062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GOP Senators Push Back on Musk Gutting Federal Workforce; Several Agencies Tell Employees Not to Respond to Musk Email; Zelenskyy Speaks Out on Possibility of Deal with U.S. ; Vatican: Pope in Critical Condition with Mild Kidney Failure. Aired 6-6:30a ET
## 1063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GOP pollster says Trump voters ‘tired’ of being accused of racism
## 1064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GOP rep says he supports ‘purging’ of State Department
## 1065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GOP senators caught off guard by Trump DEI comments after plane crash
## 1066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GOVERNOR STITT DELIVERS 2025 STATE OF THE STATE ADDRESS
## 1067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     GRANTS TO SPLC AND DEI DEMONSTRATE FEDERAL SPENDING AGAINST TAXPAYER VALUES
## 1068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GSK proposes raising chief’s pay to as much as £21.6mn a year
## 1069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GSK’s boss Emma Walmsley’s pay could hit £21m under US parity
## 1070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GUEST ROOM | ACP Statement on Demands to Dean Marla Love
## 1071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GV administration should protect students from Trump's agenda
## 1072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Gallego Calls on Meta to Protect Free Speech and Stop Censoring Abortion Information
## 1073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Gallery: Students respond to federal DEI policies - The Rocky Mountain Collegian
## 1074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Gas hidden within mountains, a budget iPhone, how to avoid pneumonia: Catch up on the day's stories
## 1075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Gay combat veteran reveals why Trump was RIGHT to ban transgender troops in the military
## 1076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Gayle King asks why there aren't more 'people of color' at Trump swearing-in
## 1077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Gene Hackman had likely been dead nine days when found: sheriff
## 1078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Georgia Southern President, Provost Address Proposed DEI Rollbacks Ahead of Looming Deadline - The George-Anne Media Group
## 1079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Georgia Southern Responds to Federal Order Targeting DEI Programs Nationwide - The George-Anne Media Group
## 1080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get this numbskull off my show!' Moment furious LBC host Iain Dale orders US columnist is taken off air during row over Donald Trump's claims that diversity hiring was to blame for Washington DC plane crash
## 1081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Giorgia Meloni’s supremacy threatened by €10bn banking merger
## 1082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Goldman Sach says it's just following the law as it strips out references to DEI
## 1083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Goldman Sachs Scrapping Policy That Said Company Wouldn't Take Businesses Public That Had All White, Male Boards
## 1084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Goldman Sachs abandons IPO board diversity pledge
## 1085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Goldman Sachs drops black bankers hiring target for London office
## 1086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Goldman Sachs drops its diversity target in London
## 1087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Goldman Sachs explains axing DEI rule which has 'served its purpose'
## 1088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Goldwater Institute Issues Commentary to Federalist: Trump's Executive Orders Are Only The First Step In Defeating DEI
## 1089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Goldwater Institute: Arizona Speaker of the House Puts State Constitution on Track to Banish DEI
## 1090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Goldwater Institute: Oklahoma Must Stop Forcing Students Into DEI Classes
## 1091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Google Calendar no longer includes start of Black History Month, Pride Month
## 1092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Google Calendar removes Black History Month and Pride Month because keeping them is 'unsustainable'
## 1093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Google Calendar users no longer see default entries for events like Pride, Black History Month
## 1094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Google Maps Says  Gulf Of America  While Google Calendar Drops Pride, Black History Month: What To Know
## 1095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Google Removes Pride Month from Calendar: What to Know
## 1096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Google axes diversity hiring targets as it reviews DEI
## 1097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Google becomes the latest tech giant to fall in line with Trump by ending DEI policies
## 1098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Google dates and Deloitte pronouns are latest casualties in war on
## 1099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Google defends scrapping AI pledges and DEI goals in all-staff meeting
## 1100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Google ends diversity hiring goals as it reviews DEI programs
## 1101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Google ends minority hiring goals, reviewing DEI efforts
## 1102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Google is latest big company to ditch diversity targets
## 1103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Google scraps DEI hiring targets as big tech bends to Trump
## 1104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Google scraps DEI targets as big tech bends to DOGE, Trump, and Elon
## 1105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Google scraps diversity hiring goals and cites Trump’s DEI orders
## 1106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Google scraps its diversity hiring goals as it complies with Trump's new government contractor rules
## 1107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Gov agency caught using sneaky tactic to get around Trump's DEI purge
## 1108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Gov. Braun discusses inflation, safety, healthcare in first state of the state address - Indiana Daily Student
## 1109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Gove's sycophantic defence of the US president is pitiful
## 1110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Government agency is caught deploying sneaky tactic to get around Trump's anti-woke purge
## 1111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Government watchdogs fired by Trump are suing to get their jobs back
## 1112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Governor Abbott Delivers 2025 State Of The State Address
## 1113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate Student Council voice support for Bridge funding, concerns for DEI programs Login or create an account
## 1114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Grammy Awards: Beyoncé wins album of the year; Taylor Swift leaves empty-handed
## 1115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grammys 2025 highlights: Winners and performances as Beyoncé takes home Album of the Year award with Cowboy Carter
## 1116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Grammys 2025: Beyonce Finally Wins Album Of The Year After Being Shut Out For Years
## 1117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Greg Abbott's Threat Rebuked by Largest Texas Newspaper: 'Demagogic'
## 1118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Gregory Washington holds second town hall as Mason President
## 1119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Grim search for plane crash bodies as Trump doubles down
## 1120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Grinnell College plans to retain DEI under threats of federal funding loss - The Scarlet & Black
## 1121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Grinnell residents to vote on tax levy to build new elementary school - The Scarlet & Black
## 1122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Guess who's back? - THE GANNON KNIGHT
## 1123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HART: DC Ongoing Super Bowl - Patriots Versus Stealers
## 1124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     HART: DEI - End Of An Error
## 1125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HART: It Takes Juan to Know Juan
## 1126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HAWAII A.G. LOPEZ ISSUES MULTISTATE GUIDANCE FOR BUSINESSES ON DIVERSITY, EQUITY, INCLUSION AND ACCESSIBILITY EMPLOYMENT INITIATIVES IN THE WORKPLACE
## 1127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HERE COMES THE LEGAL CAMPAIGN AGAINST "WOKE" EMPLOYERS
## 1128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         HHS Secretary RFK Jr. Calls Measles Outbreak "Not Usual"; Protesters Flood Republican Town Halls Over Job Cuts; Actor Gene Hackman Found Dead Alongside Wife In New Mexico Home; Supreme court Signals It Will Make It Easier For Americans To File "Reverse" Discrimination Lawsuits. Aired 6:30-7a ET
## 1129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HIRONO, COLLEAGUES DEMAND WRIGHT FOLLOW THE LAW, PROTECT OFFICE OF ENERGY JUSTICE AND EQUITY
## 1130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HIRONO, TOKUDA CONDEMN TRUMP'S FEDERAL FUNDING FREEZE
## 1131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HIV, transgender care, climate change and other federal websites go dark
## 1132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HMRC staff given one day off a week to promote ‘gender ideology’
## 1133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HORACE COOPER: PETE HEGSETH IS THE LEADER OUR MILITARY NEEDS
## 1134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               HOUSMAN: Conservatives Are Quickly Creating Their Own DEI Problem
## 1135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HOUSTON KEENE: The Bureaucratic Meltdown Has Already Begun
## 1136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         HOW THE TRUMP ADMINISTRATION CAN OBSTRUCT FUTURE GOVERNMENT ATTEMPTS TO REESTABLISH AFFIRMATIVE ACTION AND DEI POLICIES
## 1137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HOW TO ADJUST YOUR DEI INITIATIVES UNDER TRUMP'S NEW GUIDELINES
## 1138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HOW TRUMP'S EEOC, NLRB FIRINGS COULD IMPACT RECENT LABOR RULINGS
## 1139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HYDE-SMITH JOINS BILL TO CODIFY TRUMP ANTI-DEI EXECUTIVE ORDER
## 1140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HYDE-SMITH MOVES TO RESTORE MERIT-BASED HIRING IN THE FEDERAL GOVERNMENT
## 1141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hallock tackles questions on DEI, federal loans at student forum
## 1142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hamas Expected to Release Four More Israeli Hostages Soon; Trump administration Fires Top U.S. General, Navy Chief; Accused CEO Killer Luigi Mangione Appears in Court; Red Cross Vehicles Arrive ahead of Gaza Hostage Handover. Aired 4-5a ET
## 1143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hamas Releases Israeli Hostages, Returns Remains Of Shiri Bibas; Pentagon Announces It Plans To Fire 5-8 Percent Of Civilian Workforce; U.S. Proposes Draft U.N. Resolution On War In Ukraine ; Federal Judge Gives Go-Ahead For Trump To Gut USAID. U.S. Federal Judge Clears the Way for Dismantling of USAID; Associated Press Sues Trump Administration After Being Blocked from White House Briefings; Pentagon Announces Plans to Fire 5-8 Percent of Civilian Workforce. Aired 6-7a ET
## 1144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hamas Releases Two of Six Israeli Hostages; Trump administration Fires Top U.S. General, Navy Chief; U.S. Special Envoy Kellogg Calls Ukrainian President Volodymyr Zelenskyy "Embattled and Courageous Leader"; Accused CEO Killer Luigi Mangione Appears in Court; Hamas Expected to Release Four More Israeli Hostages Soon. Aired 3-4a ET
## 1145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hamas Returns Bodies Said To Include Mom And Sons; DOGE Eyes $1 Trillion In Potential Savings; Fireworks Expected At USA Versus Canada Hockey Final; Trump Admin Marks First Month Back in Office; Trump's Pick to Shake Up the FBI Confirmed as Director; Trump Order Targets Taxpayer Money for Migrants
## 1146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hamilton meets 'King Trump' as Lin-Manuel Miranda makes surprise SNL appearance in hilarious cold open as Timothée Chalamet is blasted for Jimmy Carter joke: 'Too soon'
## 1147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Happy Black History Month?; Trump Ramps Up Trend Of Blaming "DEI Hires" For Disasters; The True Intent Behind "DEI" That Its Critics Are Missing. Rep. Gregory Porter (D-IN), Is Interviewed About IN Gov. Leaves Funding For Martin Univ. Out Of Budget Proposal; Debate Over Boycott After Target Dropped Diversity Goals; First Complete Opera By A Black American Premieres After 130 Plus Years. Aired 8-9a ET
## 1148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Harris County Attorney Christian D. Menefee: A Fierce Advocate for Justice Amid President Trump's Disastrous Policy Shifts
## 1149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Harvard Dental School Abruptly Fired Its Head of DEI in December
## 1150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Harvard President Garber Says Diversity Is a Condition of Academic Excellence at Annual EDIB Forum
## 1151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Harvard Schools Tell Researchers To Comply With Stop-Work Orders, Continue Other Federally Funded Projects
## 1152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Harvard's Federal Funding Is Under Fire. Here's What's at Risk.
## 1153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Harvard's Sexual Harassment Policies Adapt to Trump Administration
## 1154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Has Pete Buttigieg Removed Pronouns From His Bio? What We Know
## 1155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Has US Coast Guard Commandant Linda Fagan Been Fired? What We Know
## 1156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hawai?i LGBT Legacy Foundation to Host Rainbow Town Hall on February 20th
## 1157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hawaii A.G. Lopez : Joint Statement From 13 Attorneys General - President Trump is Misleading the American People on Purpose of Diversity, Equity, Inclusion and Accessibility Initiatives
## 1158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He watches Fox, I watch CNN. Secret to our relationship? Know when to stop talking. | Your Turn
## 1159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Head of Social Security abruptly resigns after clash with Elon Musk over DOGE's access to sensitive data
## 1160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Health Resources Vanish Following D.E.I. and Gender Orders
## 1161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hearing Wrap Up: America -First Foreign Aid Protects U.S. Interests at Home and Abroad
## 1162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Heating up: Climate change policies under Trump - The DePaulia
## 1163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hedge funds bet billions on market crash in Trump’s America
## 1164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hegseth Arrives for First day as Defense Secretary; White House and Colombia Reach Deal; Immigration Crackdown Intensifying; Trump Fires Inspectors General. Aired 9-9:30a ET
## 1165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hegseth Confirmed As Secretary Of Defense
## 1166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hegseth Faces Backlash After Proposing Pentagon Cuts To Fund Trump's Agenda
## 1167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hegseth Meets Netanyahu After Trump Gaza Comments; Musk Turns To Young Techies To Slash Fed Budget; Trump Renews Pressure On Iran , Calls For Nuke Deal; Trump To Sign Order On Pretecting Women's Sports
## 1168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hegseth Targets D.E.I. in Early Directive at the Pentagon
## 1169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hegseth commits to Pentagon passing clean audit within 4 years
## 1170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hegseth could fire some senior generals and admirals soon, sources say
## 1171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hegseth directs Pentagon to find $50 billion in cuts this year to fund Trump military priorities
## 1172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hegseth dismisses question about ‘underqualified’ Trump Joint Chiefs pick
## 1173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hegseth heckled and booed by military families at pro-DEI protest in Germany
## 1174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hegseth nixes 'identity month' celebrations at DOD on eve of Black History Month
## 1175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hegseth orders $50 billion of defense budget redirected from Biden to Trump priorities
## 1176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hegseth orders Pentagon to make $50 billion in budget cuts to spend on Trump priorities
## 1177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hegseth orders military to find $50B to shift to Trump priorities
## 1178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hegseth says Trump 'deserves' to hand-pick advisers in defense of Pentagon firing spree
## 1179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hegseth vows more Trump actions on military
## 1180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hegseth welcomes DOGE's "keen eye" to massive Pentagon budget
## 1181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hegseth's Pentagon Shakeup Could Remove Female Military Leaders
## 1182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hegseth’s proposed Pentagon cuts, firing of generals: What to know
## 1183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Here Are The Biggest DOGE Hoaxes And Inaccuracies As $8 Million Canceled ICE Contract Listed At $8 Billion
## 1184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Here are Trump’s biggest moves so far to reshape government
## 1185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Here’s How President Trump Shifted Policy in His First Week
## 1186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Heritage Action: Congress Must Dismantle DEI
## 1187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Heritage Foundation Strongly Supports President Trump's Military Leadership Changes at the Pentagon
## 1188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Higher Education Officials, Restaurant Workers, City of Baltimore Ask Court to Pause Trump Administration Anti-DEIA Executive Orders
## 1189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Higher education groups sue Trump over anti-diversity orders
## 1190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HillmanTok University – a 'virtual HBCU' – is growing as Trump dismantles federal DEI
## 1191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hillmantok is TikTok's own HCBU
## 1192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hollywood delivers a brutal response to Donald Trump's gender ideology crackdown as Mexican transgender musical Emilia Pérez and intersex drama Conclave run riot during the 97th annual Academy Award nominations
## 1193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hollywood on defensive as Donald Trump’s anti-DEI crusade targets creatives
## 1194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hollywood should resist Trump pressure, says director Todd Haynes
## 1195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Holy Smokes': CNN's Harry Enten Breaks Down Just How Much More Popular Trump Is In Second Term
## 1196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Homeland Security Secretary Kristi Noem Joins Federal Agents for Immigration Crackdown in New York ; Immigrant Communities in Fear Amid Federal Raids. Aired 4:00-5p ET
## 1197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hope is not Passive:' Students Celebrate Black History Month
## 1198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hostile activists never learnt art of persuasion As the tide turns on woke causes, it's clear they were driven by intimidation instead of argument
## 1199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                House Armed Services Committee Ranking Member Smith Issues Statement on President Trump Response to Air Disaster
## 1200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    House Budget Committee Ranking Member Boyle Issues Statement on White House Attempt to Pause Federal Funding
## 1201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           House DOGE Committee Holds War On Waste Hearing; Trump Says, Talked To Putin, Zelenskyy About Ending War; Four FEMA Employees Fired For Migrant Hotel Payments; Number Of Border Gotaways Plummets; Senate Confirms Gabbard As Director Of National Intelligence; Trump, Musk Defend Effort To Slash Government Waste
## 1202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                House Democrat: Colleagues need to focus on ‘reestablishing our own credibility’
## 1203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              House Democrats Denied Entry To Education Department; Trump Slams Democrats In Fiery Response; Trump Revokes Joe Biden's Security Clearance; Backlash On The Left To Musk And 'DOGE' Activities; Air Patrols Help Secure New Orleans Skies; Increased Security After New Orleans Terror Attack; Trump Expected To Attend Super Bowl LIX; Democrats Push For 48-Hours Wait Period; HHS Nominee RFK JR. Advances To Full Senate Vote
## 1204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          House Education & Workforce Committee Chairman Walberg on Trump's DEI Executive Orders
## 1205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            House Financial Services Committee Ranking Member Maxine Waters Sends Letter to Trump Administration Blasting Illegal Termination of Diversity, Equity, Inclusion Offices, Positions
## 1206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      House Foreign Affairs Committee Ranking Member Meeks Condemns Trump Administration's Rollback of Diversity & Inclusion at State Department
## 1207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               House GOP passes first major test
## 1208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               House Judiciary Committee Ranking Member Raskin Issues Statement on Donald Trump's Baseless Scapegoating After Tragic Plane Crash
## 1209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       House Judiciary Subcommittee Issues Testimony From California Policy Center Director Ring
## 1210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       House Oversight & Committee Chairman Comer Applauds President Trump Executive Orders to Bring Accountability, Reform to Federal Workforce
## 1211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         House Oversight & Government Reform Subcommittee Issues Testimony From Foundation for Government Accountability Senior Director Whitson
## 1212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                House Republican blasts Beyoncé as ‘DEI’ winner at Grammy Awards
## 1213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 House Veterans' Affairs Committee Ranking Member Takano Issues Statement on Executive Orders Impacting Veterans
## 1214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        How America quietly funded Iraqi Sesame Street for years
## 1215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How American Airlines communicated through tragedy
## 1216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How Bill Clinton Shrunk the Federal Government 30 Years Before DOGE
## 1217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         How CFOs Became Companies  Storytellers
## 1218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 How Challenges to DEI Will Affect Public and Private Universities - The Minaret
## 1219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How Corporate Approaches To DEI Are Evolving
## 1220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How DEI, cancel culture and bad boards are killing our universities
## 1221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       How Directives By Trump Echo Project 2025
## 1222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How Donald Trump Changed Air Traffic Control Standards in First Term
## 1223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How Donald Trump Won the Super Bowl
## 1224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How Donald Trump's Executive Orders Compare to Project 2025
## 1225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         How Elon Musk and the Right Are Trying to Recast Reporting as ‘Doxxing’
## 1226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How Florida Is Enforcing Donald Trump's Agenda
## 1227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How Happy Are Kamala Harris Voters With Donald Trump? What Poll Shows
## 1228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                How Leonard Leo became Trump's most powerful weapon in his religious war on woke
## 1229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          How Many Transgender Personnel Serve In U.S. Military?
## 1230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How Marquette continues to navigate Trump's executive orders regarding DEIA
## 1231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          How Obama's FAA used a skewed multiple-choice quiz to prioritize DEI applicants and bar the brightest from air traffic controller jobs
## 1232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How Philadelphia schools are responding to Trump admin's DEI warning
## 1233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How President Donald Trump's executive orders will impact students
## 1234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How Republicans won the DEI fight: 'There's this sort of white male grievance they're catering to'
## 1235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               How Silicon Valley learned to stop worrying and love the Pentagon
## 1236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         How To Watch Donald Trump's First Sit-Down Interview Since Inauguration
## 1237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How Trump administration is begging federal workers to take the 'buyout' and visit their 'dream destination'
## 1238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How Trump and Musk have shaken the federal workforce
## 1239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How Trump rocked Colorado in his first 12 days
## 1240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How Trump will immediately seek to dismantle Biden's sprawling federal DEI programs
## 1241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               How Trump's "black box" limits outside influences
## 1242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         How Trump's DEI Crackdown Could Affect Higher Education
## 1243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How Trump's DEI Executive Orders Could Affect UCCS
## 1244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How Trump's DEI and transgender attacks affect HIV and AIDS community
## 1245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How Trump's DEI order could upend hospitals' workforce efforts
## 1246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How Trump's Executive Orders Impact Campus: A Panel With Centre Staff
## 1247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How Trump's return-to-office push impacts Colorado 's federal workers
## 1248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How Trump’s war on DEI is changing corporate culture
## 1249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How Will Swarthmore Fit Into Trump's Higher Education Havoc?
## 1250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How advocates are stepping up for Black History month as federal agencies scale back
## 1251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How city council candidate Ross Nusser looks to give back to his hometown - The Daily Iowan
## 1252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How could ESU's Division of Diversity, Equity and Inclusion be affected by federal targets on DEI?
## 1253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How do Democrats harness #DarkWoke?
## 1254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How is OU responding to anti-DEI executive orders? - The Oakland Post
## 1255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How many AI agents does it take to change your job?
## 1256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How the China tariffs will impact what US consumers pay for things
## 1257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      How the EU wants to tweak its merger rules to boost growth
## 1258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How the U is Celebrating Black History Month
## 1259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How the slash-and-burn tactics Musk brought to Washington backfired at Twitter
## 1260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How to give yourself some time back
## 1261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How to understand Elon Musk
## 1262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How to understand Musk's frantic offensive Opinion US politics
## 1263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How warnings about Black Hawk helicopter's safety systems date back decades and have been linked to dozens of deaths
## 1264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How will Trump's executive orders reshape higher education?
## 1265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How will history judge the start of Donald Trump 2.0?
## 1266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Human Rights First Condemns Rights-Violating Executive Orders
## 1267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Human Rights First: Senate Should Reject the Nomination of Pete Hegseth for Defense Chief
## 1268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hundreds gather to protest OU's compliance with SB 1
## 1269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hundreds of Americans Get Surprise Electric Bill After Trump Change
## 1270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I Didn't Watch A Single Second': 'The View' Co-Hosts Struggle To Process Trump 's Return To Power
## 1271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I Don't Care What Polls Say': Joe Scarborough Demands Dems 'Defend' USAID From Shutdown In Two-Minute Rant
## 1272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I NEVER THOUGHT TRUMP WOULD EAT MY FACE
## 1273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I TOOK ACTION TO UPHOLD THE RULE OF LAW AND PROTECT VERMONT
## 1274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I don't think we need to reduce the money': Veterans sound off on DEI executive order
## 1275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I would never invest in 'backward' Britain , says Trump ally
## 1276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I would never invest in Starmer’s ‘backwards’ Britain , says major Trump ally
## 1277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I'm a Labour girl but the Tories got it right on diversity' June Sarpong The TV host-turned-inclusivity champion believes DEI policies will survive Trump's ban, and that Britain is a more tolerant country than America . By Eleanor Mills
## 1278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I'm a Pilot's Wife. Plane Crash Speculations Are Insensitive and Disrespectful
## 1279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I'm already done with version 2.0': Inside federal agencies where workers fear for jobs under Trump 's administration
## 1280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I'm an Army vet with my dream job at the VA. I feel targeted by anti-DEI efforts and the new buyout offer - but I won't quit.
## 1281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I've written a book on the science of racism - this is what facts say about Trump's war on DEI
## 1282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ICE Says Hundreds of Illegal Immigrants Arrested in Recent Days; Powerful New Chinese AI Tech Shocks Experts, Disrupts Markets. Aired 3-3:30p ET
## 1283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ICE can visit USF. Experts say students should know their rights.
## 1284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ICYMI from Bloomberg: "Markwayne Mullin's Personal Bond Propels Him to Trump Confidant"
## 1285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ICYMI | Secretary Scott Turner on Fox & Friends - "DEI is Dead at HUD."
## 1286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ICYMI, Rep. Rogers: Our Warfighters Will Be Focused on Lethality, Capability, and Readiness
## 1287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ICYMI--Hagerty Joins Varney & Co. on Fox Business to Discuss Debanking Conservatives, Support for Hegseth, Panama Canal
## 1288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ICYMI: BERGMAN DECLARES DEI IS DOA
## 1289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ICYMI: House Foreign Affairs Committee Chairman Mast Discusses Foreign Aid Review, DEI on 'Face the Nation'
## 1290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ICYMI: MCCAUL, CORNYN PEN OP-ED ON IMPORTANCE OF CHIPS PROGRAM FOR TEXAS , U.S. MANUFACTURING SUCCESS
## 1291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ICYMI: STRICKLAND TALKS MUSK-TRUMP ADMINISTRATION DOING NOTHING TO LOWER COSTS
## 1292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ICYMI: We Must Dismantle DEI
## 1293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ICYMIHAGERTY JOINS VARNEY AND CO. ON FOX BUSINESS TO DISCUSS DEBANKING CONSERVATIVES, SUPPORT FOR HEGSETH, PANAMA CANAL
## 1294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      IDF Says Former Hostages Are Now At Israeli Military Base; Hegseth Confirmed As Defense Secretary After Tie-Breaking Vote; Advocate Groups Ordered To Stop Aiding Refugees Who Have Already Arrived In U.S. ; White House Requesting Help Form State And Local Governments To Enforce Immigration Law; Trump GOP Leaders Threaten Conditions On California Disaster Aid; Southern California Braces For Rainfall Amid Wildfire Recovery; Four Former Israel Hostages Arrive At Hospital; Putin Claims " Ukraine 's Crisis" May Have Been Averted Had Trump Been President. Aired 7-8a E.T.
## 1295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   INDEPENDENT WOMEN'S FORUM CELEBRATES AMERICA 'S PROGRESS AND PROMISE THIS BLACK HISTORY MONTH
## 1296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             INTERVIEW OF PRESIDENT TRUMP AND ELON MUSK BY SEAN HANNITY, "THE SEAN HANNITY SHOW"
## 1297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IRS Fires Thousands Of Workers During Tax Season; Elon Musk Celebrates Federal Job Cuts With A Chainsaw; Europe Considers Next Steps Amid U.S. & Russia Talks; Gov. Hochul Declines To Remove NYC Mayor Adams. Aired 5-5:30a ET
## 1298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                IRS Has Removed Sections Of Key Manual Used By Tax Pros From Web
## 1299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         IRS employees accept OPM federal worker buyout; How the 2025 tax season may be affected
## 1300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        IS THE U.S. CIVIL SERVICE REALLY BROKEN? WHAT THE RESEARCH SAYS ABOUT BUREAUCRATIC EFFICIENCY AND REFORM
## 1301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IU researchers face confusion over federal grant freeze - Indiana Daily Student
## 1302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IU won't address Dept. of Ed letter demanding end of race-based programming in schools - Indiana Daily Student
## 1303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ice skater, 16, killed in DC plane crash pulled off ultra-rare 'triple axle' jump hours before his death
## 1304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Idaho Republican town hall meeting descends into chaos after private security guards forcibly remove heckling woman
## 1305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If Trump really wants to bring down the price of eggs, he can start by listening to Turkey and the long-forgotten 'Stans'. Because these energy giants can cut REALLY cut the price of gas...
## 1306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If our diversity is not good, our money isn't' Bishop urges boycott of Target over DEI rollback
## 1307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If you liked DEI before, stick with it
## 1308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Illegal Immigration Crackdown Across U.S. ; State Governments Need To Step Up; Judge Pauses Trump Freeze On Federal Loans, Grants; Transparency Is Back In The White House, As White House Briefings Are Fun Again; White House Restores Press Passes Of 440 Journalists; Democrats Frayed Race Card; New York Magazine Crops Black From Cover Shot; GOP Broadens Coalition, Left Rages; Young Republicans Will Not Be Silenced Anymore; Jim Acosta Says He's Leaving CNN; Gen Z Promotes Taking Micro-Retirements
## 1309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Illegal migrant raids spark civil war as teacher turns on his own STUDENTS with startling message to ICE agents
## 1310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Illinois State Board of Education not complying with Trump's DEI orders
## 1311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Illinois joins multi-state lawsuit against Trump's funding freeze
## 1312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Immigrant Families Fear Being Separated By Trump Deportations; Trump Signs Four New Executive Orders, Transforming Military; DeepSeek AI Model Sends Shockwaves Through U.S. Markets. Aired 5:30-6a ET
## 1313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Immigration Crackdown Ramps Up in Cities Across U.S. ; Surprise Chinese A.I. Advancement Shocks NASDAQ, Down 500-Plus Points; Trump Expected to Sign Order Banning Transgender Service Members. Aired 10- 10:30a ET
## 1314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Immigration Crackdown; Trump May Invite January 6 Convicts to White House; Trump Targets DEI. Aired 1-1:30p ET
## 1315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Impact Of Trump's Unsubstantiated Blame Of DEI For Crash; Trump DOJ Aims To Potentially Fire Thousands Of Jan. 6 Prosecutors; Rep. Byron Donalds, (R- FL ), Is Interviewed About Trump's Firing Of January 6 Prosecutors, Tariffs on Canada, Mexico , China; Tariffs On Canada, Mexico , China Now In Effect. Medevac Jet With Six People On Board Crashes In Philadelphia; Bill Maher: "Trump Is Cool Now." Aired 9-10a
## 1316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Impoundment Control Act blocks federal funding pause, impacts on CSU faculty - The Rocky Mountain Collegian
## 1317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   In CNBC.com, Michael Littenberg Discusses Corporate Philanthropy Following Trump Executive Order on DEI in Private Enterprise
## 1318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In National Tragedy, US Leadership Shuns Basic Responsibility - The Comenian
## 1319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             In Plane Crash Aftermath, A Familiar Trump Returns: Blamer-in-Chief
## 1320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In Trump's quest to close the Education Department, Congress and his own agenda may get in the way
## 1321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                In a recent internal meeting, an Amazon VP said the company is committed to DEI despite some signs of a pullback
## 1322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             In aftermath of DC plane crash, Donald Trump criticizes DEI efforts
## 1323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In annual letter, Eisgruber defends tax-exempt endowment, DEI, and institutional restraint
## 1324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In case you haven't noticed, the target is already on our back
## 1325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In defense of DEI: Costco maintains diversity programs
## 1326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In halting Trump ban on DEI, judge sides with patriotism for America | Opinion
## 1327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In his first two weeks as president, Donald Trump has signed no less than 45 executive orders, leaving many Americans astonished at the pace he has taken. On Jan. 21, he signed an order aimed at dismantling diversity, equity and inclusion (DEI) programs,
## 1328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In light of Trump's hiring freeze, would-be interns sit unemployed
## 1329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In photos: Eagles dominate Super Bowl LIX
## 1330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In the Huddle: Yam Yau shares his hockey history - Washington Square News
## 1331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In the New Trump Era, DEI Will Still Be Part of Profitable Strategies
## 1332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In the wilderness: Democrats struggle to navigate the politics of new Trump era
## 1333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Inauguration Day 2025 live: Donald Trump signs executive orders on arena stage – watch live
## 1334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Inauguration of Donald Trump; Now: President Trump Inaugural Parade Underway; Soon: Trump Signs Sweeping Executive Orders; Soon: President Trump Speaks At Inaugural Parade
## 1335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Independent Women Applauds Executive Actions to Restore Equal Opportunity and Fairness by Ending DEI
## 1336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Independent Women Applauds Trump's Executive Action To Eliminate DEI From The Military
## 1337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Inflation is Trump's problem now
## 1338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Inflation, prices jump as Trump ignores 'real Americans.' What about America first? | Opinion
## 1339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InnovationRx: Billionaire Trump Donor Elon Musk Wages War On USAID
## 1340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Inside Democrats' plan to keep hammering Trump's aborted funding freeze
## 1341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Inside Trump's plan to make it easier to fire federal employees - and agencies have just 90 days to respond
## 1342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Inside the Bureaucrat Paperwork Cave; Go Nuts Over Cutting Waste; White House Brings Receipts for DOGE Cuts; Hegseth Invites DOGE into Pentagon; DOGE Hunts Fraud Across Government; Bondi Files Charges Against New York ; Democrat Calls for Censoring Americans; Morning Joe Frustrated with; Liberals Fight for Trans Sanctuary City; Desperate Demand Reparations; Freed American: Trump is a Hero
## 1343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Institute Communications confirms efforts to "update [Tech's] web presence" after DEI sites go dark
## 1344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Institute for Human Rights & Business Issues Commentary: Some Companies are Doubling Down on DEI - More Should Follow
## 1345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Intel Agencies Begin Dismantling DEI In Response To Trump's Order
## 1346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Internet goes wild for hulking Special Forces agent spotted with Pete Hegseth on early morning run
## 1347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Interview With Connecticut Attorney General William Tong ; Musk and Trump Targeting Department of Education?; Trump's Trade War With China Begins; FBI Employees File Lawsuit Against DOJ. Aired 1-1:30p ET
## 1348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Interview With Environmental Protection Agency Administrator Lee Zeldin; Interview With Sen. John Barrasso (R- WY ); Interview With White House Border Czar Tom Homan; Interview With Vice President J.D. Vance
## 1349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Interview With Former U.K. Ambassador To The U.N. Sir John Sawers; Interview With Former U.S. State Department Official Josh Paul; Interview With The Head Of The Palestinian Mission To The U.K. Husam Zomlot; Interview With "Hard Truths" Director Mike Leigh; Interview With "Hard Truths" Actress Marianne Jean-Baptiste; How Rev. Jerry Falwell Targeted Abortion Rights; Dozens Of Families Still Waiting For Hostages To Return. Aired 11a-12p ET
## 1350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Interview With Former U.S. Ambassador To The Czech Republic Norm Eisen; Interview With Princeton Professor And Autocracy Expert Kim Lane Scheppele; Interview With Forward Thinking Co-Founder And Director Oliver McTernan; North Korean Troops Embrace Near-Suicidal Tactics In Battle; Officials Give Update On Pennsylvania Medevac Jet Crash; 80 Years Since Liberation Of Auschwitz; Broad Play Hilariously Tackles Age Of Disagreement. Aired 11a-12p ET
## 1351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Interview With Jay Leno; Interview With White House Border Czar Tom Homan; University of Idaho Murder Suspect in Court; Interview With Sen. Tommy Tuberville (R- AL ); Two Republican Senators to Oppose Pete Hegseth Confirmation; Judge Blocks Trump Birthright Citizenship Order
## 1352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interview With John Rich; Senate Set to Vote on Pete Hegseth Nomination; Trump's Immigration Crackdown Ramps Up; President Trump Tours North Carolina and California
## 1353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interview With Kevin Costner; Interview With U.S. Transportation Secretary Sean Duffy; President Trump Takes Questions From Mar-a-Lago
## 1354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Interview With Mollie Hemingway; Interview With U.S. Treasury Secretary Scott Bessent; Interview With EPA Administrator Lee Zeldin; Interview With U.S. National Security Adviser Mike Waltz; Interview With Gov. Glenn Youngkin (R- VA )
## 1355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Interview With Rep. Abe Hamadeh (R- AZ ); Interview With Rep. Brandon Gill (R- TX )
## 1356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interview With Rep. Eric Burlison (R- MO ); Interview With Rep. William Timmons (R- SC )
## 1357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Interview With Rep. Gerry Connolly (D- VA ); Elon Musk Dismantling Government Agencies; New Trump Tariffs. Aired 1-1:30p ET
## 1358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Interview With Rep. Hakeem Jeffries (D- NY ); Interview With Special Envoy to the Middle East Steve Witkoff. Aired 9-10a ET
## 1359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Interview With Rep. James Comer (R- KY ); Trump Immigration Crackdown; Trump 's DEI Purge. Aired 11-11:30a ET
## 1360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Interview With Rep. Laura Gillen (D- NY ); Interview With Rep. Riley Moore (R- WV ); Interview With Sen. Amy Klobuchar (D- MN ); Interview With White House Border Czar Tom Homan. Aired 9-10a ET
## 1361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Interview With Rep. Yassamin Ansari (D- AZ ); Interview With Sen. Tim Kaine (D- VA ); Interview With U.S. Transportation Secretary Sean Duffy. Aired 9-10a ET
## 1362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interview With Sen. Cory Booker (D- NJ ); Interview With U.S. Secretary of Homeland Security Kristi Noem. Aired 9-10a ET
## 1363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interview With Sen. Jeff Merkley (D-OR); Interview With Rep. Brandon Gill (R- TX ); House GOP Leaders Meet With Trump. Aired 11- 11:30a ET
## 1364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interview With Sen. Katie Britt (R- AL )
## 1365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Interview With Sen. Maria Cantwell (D- WA ); Trump Removes Commandant of Coast Guard; Trump Set to Begin Immigration Crackdown. Aired 11:30a-12p ET
## 1366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Interview With Sen. Tommy Tuberville (R- AL )
## 1367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Interview With Stephen A. Smith; Interview With Sen. Rand Paul (R- KY ); Criticism Grows Over Pastor's Comments to President Trump; Interview With Rep. Abe Hamadeh (R- AZ ); Interview With Rep. Brandon Gill (R- TX ); Interview With Dave Rubin; President Trump Targets DEI
## 1368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interview With U.S. Defense Secretary Pete Hegseth
## 1369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interview with Arab League Assistant Secretary-General Hossam Zaki; Interview with Former Obama White House Health Policy Adviser and University of Pennsylvania Vice Provost of Global Initiatives Dr. Ezekiel Emanuel; Interview with Harvard Law School Professor and Bloomberg Opinion Columnist Noah Feldman; Interview with "Seed of the Sacred Fig" Director Mohammad Rasoulof. Aired 1:15-2:15p ET
## 1370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interview with Brendan Carr, FCC Chair
## 1371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Interview with Former Administrator of the U.S. Environmental Protection Agency and Former White House National Climate Adviser Gina McCarthy; Interview with "Eureka Day" Actress Jessica Hecht; Interview with "Eureka Day" Actor Bill Irwin; Interview with Cyber and Emerging Tech Former Deputy National Adviser Anne Neuberger. Aired 1-2p ET
## 1372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interview with Former British Defense Secretary Ben Wallace; Interview with Senate Judiciary Committee Former Counsel and Society for the Rule of Law Executive Director Gregg Nunziata; Interview with U.S. Navy (Ret.) and Senior New America Adviser Commander Theodore R. Johnson. Aired 1-2p ET
## 1373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interview with Governor Andy Beshear (D- KY ); Interview with "Black Box Diaries" Director Shiori Ito; Interview with "The Tech Coup" Author and Stanford Cyber Policy Center Fellow Marietje Schaake. Aired 1-2p ET
## 1374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Interview with International Rescue Committee CEO David Miliband; Interview with Columbia School of Journalism Dean Jelani Cobb; Interview with Harvard Law Professor and Bloomberg Opinion Columnist Noah Feldman. Aired 1-2p ET
## 1375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Interview with Marco Rubio, U.S. Secretary of State
## 1376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interview with Polish Foreign Minister Radoslaw Sikorski on Russia - Ukraine War; The Fragility of America 's Justice System. Interview With Law Professor And Author Rachel Barkow; Interview With Author Marc Dunkelman. Aired 10-11a ET
## 1377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interview with The New York Times Opinion Columnist M. Gessen; Interview with European Commission Vice President Kaja Kallas; Interview with Jordanian Foreign Minister Ayman Safadi; Interview with Representative Jahana Hayes (D- CT ). Aired 1-2p ET
## 1378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Interview with U.S. Senate Appropriations Committee Member Senator Chris Van Hollen (D- MD ); Interview with Forward Thinking Co-Founder and Director Oliver McTernan; Interview with "The Gatekeepers" Author Chris Whipple. Aired 1-2p ET
## 1379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Investigation Intensifies Into What Caused Fatal Crash; Trump Baselessly Blames DEI Initiatives For Air Disaster; Israel Condemns Chaotic Scenes At Hostage Release Site. Contentious Hearings for Patel, Gabbard, RFK Jr.; All 67 People Onboard Plane & Helicopter Presumed Dead; Trump Immigration Crackdown Has Some Migrants Reconsidering; FireAid Concerts Raising Money for Relief Efforts. Aired 1-2a ET
## 1380                                                                                                                                                                                                                                                                                                                                                                            Investigations Ongoing Into Tragic Collision; Trump Defends Comments Amid Democratic Criticism; Family And Friends Mourn Crash Victims; FBI Employees Purged In Large Groups; FBI Director Nominee Pledged Not To Retaliate; Impact On Canadian Energy Exports And Gas Prices; Donald Trump Tasks Lt. Gen. Keith Kellogg With 100 Day Goal To End Russia - Ukraine Conflict; Military Investigation Underway Focusing On Movements Of Army Black Hawk Helicopter Involved In Midair Collision Near Washington D.C. ; Border Patrol Agents Using Night Vision Technology To Track Illegal Immigrants Crossing U.S. Southern Border; President Trump Calling For U.S. To Take Control Of Panama Canal; Plane Crash Reported In Northeast Philadelphia.
## 1381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Investigators recover plane black boxes from Washington air collision
## 1382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Investor Tom Steyer extols ‘great opportunity’ in climate tech amid market upheaval
## 1383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Investors in Apple vote for diversity
## 1384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Iowa City City Council candidate Oliver Weilein isn't playing it safe - The Daily Iowan
## 1385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Iowa Republican lawmakers eye "comprehensive review" of state higher education system - The Daily Iowan
## 1386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Iowa Senate version of a bill ending civil rights protections for transgender Iowans advances - The Daily Iowan
## 1387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Is Rishi Sunak English? It used not to be a question
## 1388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Is Sunak English? It didn't used to be a question The era of Trump and Musk is seeing issues raised in a way unthinkable a year ago - but it may yet trip up Farage
## 1389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Is Trump’s ‘mob-boss’ rule of relying on snitches a productive way to run the country?
## 1390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Is Vivek Ramaswamy Leaving DOGE? What We Know
## 1391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Is Your Job at Risk Under Trump? For 50 Million Americans, the Answer Is Yes | Opinion
## 1392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Israel 's Ban on UNRWA in Effect; Heated Confirmation Hearings on Capitol Hill; Deadly Plane Crash in Washington; No Survivors in Deadly Midair Collision; Officials Gives Update on Deadly Midair Collision. American Airlines Plane and Army Helicopter Collide Outside Reagan National Airport Near Washington D.C. ; Eight Hostages Freed By Hamas Amid Chaotic Scenes As Israel Releases Over 100 Palestinian Prisoners; Trump's Cabinet Nominees Face Bipartisan Grilling on Capitol Hill. Aired 2-3p ET
## 1393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It Took Less Than 36 Hours For Trump To Slash Decades Of DEI Bureaucracy
## 1394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It took the air out of me': How TikTok creators reacted to the chaotic ban - and Trump's sudden reprieve
## 1395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     It was a US Treasury triumph at the FT Alphaville Pub Quiz in Washington DC
## 1396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It'll Take More Than EOs For Trump's Admin To Totally Slay Biden's Mammoth 'Whole-Of-Government' Policy Push
## 1397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It's Ivanka's new Insta glossy posse
## 1398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It's a daily conversation for us': Pitt Education students express concern about the future of the classroom  - The Pitt News
## 1399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It's a performance in hate': Boston athletes, community react to executive order banning trans women from competing in women's sports
## 1400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It’s clear why Trump blames DEI for everything
## 1401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It’s the Kemi delusion: the more the Tories run towards Reform, the more their voters will run to the Lib Dems
## 1402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ivanka Trump Used USAID Money for Events, Records Show
## 1403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ivanka Trump stuns in Oscar de la Renta as she hugs Lauren Sanchez during candlelight dinner in Washington DC
## 1404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ivanka Trump unveils new inner friendship circle after being reembraced by socialite pals
## 1405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I’m a Democrat politician. This is why I sterilised myself after Trump’s election
## 1406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               JANUARY'S DEI EXECUTIVE ORDERS WILL HAVE IMPACT FOR YEARS TO COME
## 1407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   JASON LEWIS: DEI Could Lead To Terrifying Consequences For Airline Passengers
## 1408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        JD Vance backs Trump's DEI claims after D.C. plane crash
## 1409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                JD Vance roasts the media for their 'funny' coverage of Trump's DEI remarks after DC plane crash
## 1410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             JD Vance: The VP raised in a Rust Belt home by a drug-addict mother
## 1411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       JFK Presidential Library in Boston Abruptly Closes 'Until Further Notice'
## 1412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     JOINT STATEMENT FROM 13 STATE ATTORNEYS GENERAL: PRESIDENT TRUMP IS MISLEADING THE AMERICAN PEOPLE ON PURPOSE OF DIVERSITY, EQUITY, INCLUSION AND ACCESSIBILITY INITIATIVES
## 1413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  JUDGE BLOCKS ENFORCEMENT OF DEI ORDERS AS APPLIED TO COMPANIES
## 1414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                JUDICIAL WATCH'S COVID COMMUNITY CORPS CASE ILLUSTRATES NEED FOR TRUMP PLAN TO CUT FEDERAL WASTE
## 1415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Jack Schlossberg has crude message for DOGE after JFK presidential library forced to close due to federal employee purge
## 1416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Jake Tapper left stunned as Stephen Miller explains why Trump ordered a surprise freeze on federal spending
## 1417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Jalen Hurts and Patrick Mahomes are living counters to wave of anti-Blackness | Opinion
## 1418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Jamelle Bouie Reflects on Post-Inauguration Democracy
## 1419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        James Carville Deflects When Sean Hannity Calls Out Dems' 'Bad Strategy' On 'Key Issues'
## 1420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Janelle Monáe slams Nelly for performing at Donald Trump's inauguration during Grammys after-party
## 1421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Jasmine Crockett Mocks 'Mediocre White Boys' Complaining About DEI
## 1422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Jeffries On White House Funding Mess: "Round One Goes To Team America "; RFK Jr. Grilled; Migrants To Gitmo? Aired 7-8p ET
## 1423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Jeffries hammers Trump DEI comments after plane crash: ‘Shameful’
## 1424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Jesse Watters was all for DOGE - until cuts impacted his friend: 'Need to be a little bit less callous'
## 1425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Jessica Alves puts on a busty display in a skintight pink catsuit as she leaves the hair salon after revealing she fears for her safety amid President Trump's crackdown on 'gender ideology'
## 1426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Jessica Alves reveals she has been forced to cancel all US TV appearances over 'fears for her own safety' amid President Trump's crackdown on 'gender ideology'
## 1427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Jim Acosta reignites war with Donald Trump over DC plane crash
## 1428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Jimmy Kimmel: ‘The whole country is a Fyre Festival right now’
## 1429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Jo Ellis Decries 'Political Agenda' in 'Proof of Life' Video After DC Crash
## 1430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Joe Rogan exposes Biden's top 'inappropriate spending' tactic after DOGE's findings
## 1431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Joe Scarborough Baselessly Claims Republicans Did Not Vote For Cutting Wasteful Spending
## 1432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                John Kennedy Says Dems Are Using Musk As Punching Bag To Distract From Massive Wasteful Spending
## 1433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               John Stossel: DOGE To The Rescue?
## 1434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Joint Chiefs chair says he plans to stay on under Trump
## 1435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Joint Statement from 12 Attorneys General: President Trump is Misleading the American People on Purpose of Diversity, Equity, Inclusion, and Accessibility Initiatives
## 1436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Joint Statement from Twelve State Attorneys General: President Trump is Misleading the American People on Purpose of Diversity, Equity, Inclusion, and Accessibility Initiatives
## 1437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Journalism Being Recast As 'Doxxing'
## 1438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Journalists to table for Student Press Freedom Day
## 1439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Joy Reid demands Congress subpoena Elon Musk and raft of DOGE staffers
## 1440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Joy Reid’s MSNBC downfall exposes how little power DEI has left
## 1441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Judge Again Blocks Trump s Grant Funding Freeze
## 1442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Judge Blocks Parts Of Trump s Executive Orders Targeting DEI
## 1443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Judge Blocks Trump Order To Freeze Trillions In Federal Funding; Caroline Kennedy: RFK Jr. is "A Predator"; German Chancellor: Elon Musk's Right-Wing Push Is "Disgusting". Aired 7-8p ET
## 1444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Judge Blocks Trump from Putting Many USAID Workers on Leave Tonight; Trump Says, I Plan to Fire Some January 6 Investigators; Trump Says He is Revoking Biden's Security Clearance. Trump Says He Is Revoking Biden's Security Clearance; Eagles Standing In The Way Of Chiefs' Historic Super Bowl Three-Peat. Aired 6-7p ET
## 1445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Judge Clears Way for Trump Admin's Firings; Who Is Running DOGE; Trump Says Musk is "In Charge" of DOGE; Luigi Mangione Back in NY Court. Aired 10:30-11a ET
## 1446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Judge Denies Dem Attempt To Block DOGE From Federal Data Systems; New York Governor Hochul Considers Next Steps In Mayor Adams Case; Rep. Gabe Amo (D- RI ) On Zelenskyy Saying Trump "Lives In This Disinformation Space." Aired 7:30-8a ET
## 1447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Judge Halts Elon Musk's Access To Treasury Department Payment System; Shock At Frail Appearance Of Three Released Israeli Hostages; Rubio Previously Praised USAID, Now He's Overseeing It's Demise; Egg Prices Rise Due To Bird Flu, leaving Consumers, Restaurants Scrambling; Countdown To Superbowl LIX: Chiefs Vs Eagles. Aired 4-5p ET
## 1448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Judge Halts Implementation of Trump Anti-DEIA Executive Orders Nationwide in Suit Filed by Higher Education Officials, Restaurant Workers, City of Baltimore
## 1449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Judge Halts Trump's Plan To Put USAID Workers On Leave; Sen. Chris Coons, (D- DE ), Is Interviewed About Trump's Plan To Put USAID Workers On Leave, Elon Musk, National Debt; Trump Says He's Directed Musk To Review "Just About Everything"; Oscar Turmoil: "Emelia Perez" Star Sparks Backlash. History At Stake: Chiefs Chase Unprecedented Three-Peat. Aired 9-10a
## 1450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Judge Pauses Trump s Plan To Freeze Federal Aid Spending
## 1451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Judge Pauses Trump's "Buyout" Offer to Federal Workers; EPA Environmental Justice Workers Could be Put on Leave; Emails Show Mush Associates Sought to Use Critical Treasury Payment System to Shut Down USAID Spending. Aired 2-2:30p ET
## 1452                                                                                                                                                                                                                                                                                                                                             Judge Restricts DOGE Access To Treasury Info; Trump Signs Executive Order Banning Biological Males From Women's Sports; Interview with Speaker of the House Mike Johnson; Concerns Over Humanitarian Crises After DOGE Push to Dismantle USAID; Growing Liberal Anger Against Musk and DOGE; Slew of Lawsuits Filed Against Exec Actions & DOGE; House Dem Threatens Third Trump Impeachment Push; New Orleans Increases Security Measures For Super Bowl Sunday; ICE Detentions Facilities Exceed Capacity As Trump Ramps Up Border Crackdown; Immigrant Rights Groups Raise Concerns About Trump's Use Of Guantanamo Bay ; Jimmy Johnson is Interviewed about the Super Bowl; Sharon Landry is Interviewed about the Tragedy in New Orleans and the Love One Louisiana Foundation
## 1453                                                                                                                                                                                                                                                                                                 Judge Temporarily Halts Federal Grants And Loans Freeze; Reaction To Donald Trump Federal Grants And Loans Freeze Effort; Homeland Security Secretary Joins New York City Raids; Next Generation Space-Based Missile Defense System; Leavitt Says Drones Authorized By Federal Government; Tailored Form Of ChatGPT Launched Amid DeepSeek Fallout; Mexican Citizens Frustrated With Illegal Migrants; Senator Amy Klobuchar (D- MN ) And Senator Kevin Cramer (R- ND ) Interviewed On Bipartisan Bill To Provide Federal Benefits To First Responders; Judge Halts Trump Administration Order On Federal Freeze Of Grants And Loans; Tulsi Gabbard May Face Headwinds In Senate Confirmation As Director Of National Intelligence; Donald Trump Discontinues Government Provided Security For Former Administration Officials.
## 1454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Judge allows Fork in the Road Resignation program to proceed, denies lawsuit
## 1455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Judge bars firing of intelligence officers working on DEI issues
## 1456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Judge blocks Trump ban on DEI for federal agencies, contractors
## 1457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Judge blocks Trump order, DEI programs breathe
## 1458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Judge blocks Trump's executive order ending federal support for DEI programs
## 1459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Judge blocks funding freeze
## 1460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Judge largely blocks Trump’s executive orders ending federal support for DEI programs
## 1461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Judge pauses sweeping Trump orders rolling back diversity programs, warning of threat of 'pernicious' enforcement
## 1462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Judge refuses to block CIA firing workers on diversity, equity and inclusion initiatives
## 1463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Judge temporarily blocks Trump administration from carrying out certain anti-DEI directives
## 1464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Judge temporarily blocks part of Trump administration's plans to freeze federal aid
## 1465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Judge: Mass Firings of Federal Probationary Workers "Likely Unlawful"; RFK Jr. Downplays Measles Outbreak, Doctors Say He's Wrong; Transportation Secretary Sean Duffy Saying FAA Will be Hiring More Air Traffic Controllers; President Trump to Meet with Ukrainian President Volodymyr Zelenskyy; President Trump Touting Potential Deal with Ukraine to Extract Rare Earth Minerals from Country; France and U.K. May Propose Security Guarantees for Ukraine against Russia during negotiations to end Russia - Ukraine war. Aired 8-8:30a ET.
## 1466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Judges Will Decide Fate Of Trump's Most Contentious Moves; Trump, Japanese Prime Minister Meeting At White House; Trump Expects To Talk To Zelenskyy Next Week, Says He Wants To Discuss Security Of Ukraine 's Assets Like Rare Earths. Aired 12:30-1p ET
## 1467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Julianne Moore says her book 'Freckleface Strawberry' was banned by Trump administration
## 1468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           June Sarpong: Trump’s ban won’t kill DEI – companies will just call it something else
## 1469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Justice Department Establishes Task Force To Investigate Antisemitism Complaints on College Campuses
## 1470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Justice Department Fires Officials Who Investigated Trump; Trump Bars Transgender Americans from Military Service; Snow and Flood Concerns Move into Great Lakes Region. Aired 6-6:30a ET
## 1471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Justice Department abandoning cases alleging discriminatory police and firefighter hiring
## 1472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Justice Official Resign In Protest Of Order To Drop Adams Case; 14 States Sue Over Elon Musk's Unconstitutional Authority. HHS Secretary RFK Jr. Wants To Be The One Who Reprograms Americans To Eat Differently; Clay Travis Gets Graphic With His Words. Aired 10-11p ET
## 1473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Justices to hear workplace discrimination case Reverse discrimination cases could increase
## 1474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            KENNEDY: The truth of Barack Obama's hopelessly-delayed $830 million DEI nightmare of a presidential library that may never be built
## 1475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       KPMG erases years of diversity reports Financial services US unit's website overhaul follows decision to axe its 'Accelerate 2025' scheme
## 1476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        KPMG in America removes DEI initiatives from its website
## 1477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             KPMG’s US business removes diversity reports from its website after Trump onslaught
## 1478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Kaine: Trump DEI plane crash comments were made to avoid ‘tough questions’
## 1479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Kamala Harris, Michelle Obama and Taylor Swift all now share the same humiliation. Buckle up, liberals... you're not going to like what MAUREEN CALLAHAN has to say
## 1480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Karen Bass no longer has anywhere to hide
## 1481                                                                                                                                                                                                                                                                                                                                                                                                                                                                Karoline Leavitt Debuts As Press Secretary; Washington Undergoes A Culture Shift; Noem's Upbringing Prepared Her For This Job; Border Security Is Back; Marines Help Secure The Border; Cartel Gunmen Open Fire On Border Patrol; MSNBC Compares Deportations To The Holocaust; Media Hyperventilates Over Deportations; ICE Tops 1K Daily Deportations; Schumer Loses It Over Trump's Spending Freeze; Trump Pulls Out of $50 Million Gaza Condom Buy; White House Opens Briefing Room to New Media; It's Cool To Be A Proud American; Young People Are Excited About Trump And America ; Democrats Mourn DEI's Death; Snitching Is Democrats' Favorite Pastime
## 1482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Karoline Leavitt announces Trump will impose tariffs on Mexico , Canada and China this weekend
## 1483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Karoline Leavitt clashes with AOC over looming restraining order on Trump's federal funding freeze
## 1484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Karoline Leavitt faced down the White House press in her first briefing. It was Trump's voice that followed
## 1485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Karoline Leavitt pledges Trump will bring down prices as she takes aim at 'crap' DEI projects
## 1486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Karoline Leavitt throws Democrats' own words back in their faces in brutal takedown amid DOGE protests
## 1487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Keir Starmer chooses AI security over ‘woke’ safety concerns to align with Donald Trump
## 1488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Kelly Loeffler Must Defend the Small Business Administration's Non-Partisan Mission and Tradition
## 1489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Kemi Badenoch says ‘western civilisation will be lost’ if Tory party fails
## 1490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Kendrick Lamar's Halftime performance was a political statement - The Pace Press
## 1491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Kent State students express concern over executive orders - KentStater
## 1492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Kevin O'Leary rips 'nuts' Costco for boldly defying Trump order after Walmart and major companies caved
## 1493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Kick in the teeth': Disabled federal workers fear for their jobs after Trump remarks
## 1494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Kid Rock Touts 'Liberal, Gay or Black' Members in His 'Diverse' Band
## 1495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Kid Rock's shocking claim about Kendrick Lamar and Colin Kaepernick after Super Bowl 2025 halftime show
## 1496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Kid Rock: Kendrick Lamar's Super Bowl performance was 'DEI' for 'in the hood Black people'
## 1497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Kidill brings drums, dance and brilliant punk chaos to Paris Fashion Week - Washington Square News
## 1498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Knapp hangs on to lead at Palm Beach Gardens
## 1499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Kotlikoff Affirms Cornell's Commitment to 'Merit-Based Decisions', Diversity Amid New Federal Guidance
## 1500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Kristi Noem confirmed as Homeland Security secretary as Trump to visit Las Vegas to talk 'no tax on tips': Live
## 1501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LABRADOR LETTER DOGE'ING THE COLLAPSE OF OUR REPUBLIC
## 1502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LANDRUM: One Overlooked Legal Move Could Unlock Trump's America First Agenda
## 1503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LARRY ELDER: The 'Trump Is A Tyrant' Critics Defended Biden's 'Imperial Presidency'
## 1504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     LETTER TO THE EDITOR: VUMC did not need to erase its DEI footprint - The Vanderbilt Hustler
## 1505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LGBTQ health groups sue Trump over orders targeting diversity, transgender rights
## 1506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   LOFTUS: Ghoulish Blame Games Are Warping Our Sense Of Tragedy
## 1507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LOTS OF NEWS TO COVER FRI, 21 FEB 2025
## 1508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LPC responds to federal impact on DEI: 'We have our own autonomy here in California ' - The Express
## 1509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          La Oficina Presupuestaria de la Casa Blanca ordena pausar todos los préstamos y subvenciones federales
## 1510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        La Universidad de la Florida suspende las Comunidades de Aprendizaje Vivenciales sin enfoque académico en el alojamiento estudiantil - The Independent Florida Alligator
## 1511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Labour shelves plans to make gender change easier
## 1512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lack Of Cohesive Response': 'Morning Joe' Panelists Fret Over Dems' Reaction To DOGE Foreign Funds Audit
## 1513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lady Gaga makes political speech about transgender community at the 2025 Grammys
## 1514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Lady Gaga slammed for 'odd and meaningless' political Grammys speech: 'Hollywood is a cult'
## 1515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lafayette campus uncertain over federal funding turmoil - The Lafayette
## 1516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Lately with Layne: Day one executive orders concerning, harmful
## 1517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lately with Layne: President's Day protests highlight unfolding dangers
## 1518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Lately with Layne: Trump responds distastefully to DC plane collision
## 1519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Latino Leaders Unite on Capitol Hill and Demand Accountability From the Trump Administration
## 1520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Latino workers working to overcome a technological divide brought on by automation, AI
## 1521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Laura Coates Interviews Former NYC Mayor Bill De Blasio; Setback After Setback For President Trump In The Courts; CBS News Poll Says President Trump Is Riding High Three Weeks Into His Term. Aired 11p-12a ET
## 1522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Law firm defies Trump's DEI war with 'Brockovich quota'
## 1523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Lawmakers Face Pushback From Constituents At Town Halls; Germany 's Conservatives Return To Power As Far Right Surges; Zelenskyy Praises The "Absolute Heroism" Of Ukrainians. Aired 5:30-6a ET
## 1524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lawmakers mix silly and serious at journalism gala: ‘The free press must endure’
## 1525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawsuit Claims Proctor & Gamble s Menopause Test Kit Is A  Fraud.  Plus: How Will Tariffs Affect Your Bottom Line?
## 1526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Lawsuits involving DOGE and the Trump administration that corporate America may want to watch
## 1527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                League of Women Voters: Democracy Impact of President Trump's First Week Actions
## 1528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Left-Leaning Education Orgs Urge Schools To 'Vigorously' Disobey Trump Admin's DEI Directive
## 1529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Legal Landscape Shifts
## 1530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Legal scholars discuss Trump's executive orders, debate potential constitutional crisis
## 1531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Legendary former NFL player John Wooten has a warning for America
## 1532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Letitia James Announces New Lawsuit Against Trump Administration
## 1533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Letitia James Calls Out Trump's Funding Move: 'Reckless and Dangerous'
## 1534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Letter from the Editor: DEI is important, we want to hear from you
## 1535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Letter from the editor: A reflection on WSN's mission - Washington Square News
## 1536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Letter to the Editor | Obeying in Advance - The Daily Iowan
## 1537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Letter to the Editor: Donald Trump is doing everything I voted for
## 1538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Lib Dems say Badenoch is echoing Trump’s ‘dangerous rhetoric’ as she claims ‘some cultures better than others’ – as it happened
## 1539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Liberal 'mean girl' cruelly trolls press secretary Karoline Leavitt and her older husband
## 1540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Liberal Academic Elites Take To Streets In Protest Of Trump's Freeze On Federal Handouts
## 1541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Liberal Donors, Marc Elias And Biden-Appointed Judge Freeze Trump Push To Starve Woke Nonprofits Of Taxpayer Cash
## 1542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Liberal fury and stress hurts someone. But it isn't Trump. | Opinion
## 1543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Life-saving weather warnings are on the line as Trump and DOGE target America 's forecasting agency
## 1544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Like the US president, work culture is changing
## 1545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Linda McMahon faces confirmation hearing for department Trump wants to kill
## 1546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  List of American Companies That Support President Donald Trump
## 1547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      List of US Companies That Are Continuing With DEI Policies
## 1548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           List of What DOGE Has Cut From U.S. Government So Far
## 1549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Live Updates: In Second Confirmation Hearing, Robert F. Kennedy, Jr. Takes Fire For Vaccine Stances
## 1550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Live updates: Lawmakers talk Mexico , Canada, China tariffs; Vance stands by Trump’s DEI comments
## 1551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Live updates: Trump takes aim at DEI after plane crash; Gabbard pressed on Snowden
## 1552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Live updates: Trump talks to Fox News’ Sean Hannity in first Oval Office interview
## 1553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Livingstone addresses future of DEI at Baylor
## 1554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Load the muskets': An emergent Catholic right's hopes for the White House to the Vatican
## 1555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Local Community Speaks Out as Black History Month Recognition Fades from Pentagon - The Daily Egyptian
## 1556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Local and campus community weigh in on trump presidency
## 1557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  London law firm defies Trump’s DEI war with ‘Brockovich quota’
## 1558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Long champions of social justice, Black athletes say their voices are needed now more than ever
## 1559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Long-Time Dem Operative Says Dems Fear Trump's Success As They'll Have Nothing To Sell To The Public
## 1560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Love Is Blind creator addresses lack of diversity in season eight cast after backlash
## 1561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Loyola University Maryland Launches Second Climate Survey to Strengthen Community and Inclusion - The Greyhound
## 1562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Lushootseed Lecture Series Celebrates Skagit Elder Through Literature - The Spectator
## 1563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Lutnick backs Commerce unit that promotes minority businesses
## 1564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MAGA Agenda: The People's Choice; Democrats In Denial Over Losing Politicized FBI; The FBI Has A Real Leader; Stacey Abrams' slush fund exposed; Agencies get DOGED; Trump guts the IRS; No more freebies for illegals; Americans want border security; Democrat hysteria is hysterical as Democrats miss Sleepy Joe; Bernie Sanders kicks off anti-oligarchy tour tomorrow
## 1565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MAGA Mocks Rachel Maddow for on-Air Rebuke of Her MSNBC Bosses
## 1566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MAGA Outraged by Super Bowl Black National Anthem Performance
## 1567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MAGA Republicans unify on three-word response to Democrats outraged about USAID destruction
## 1568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MAGA lawmaker wonders 'did DEI play a role' in the deadly DC plane crash
## 1569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MAGA stars cut loose at Trump's inaugural ball as Jake Paul and Mike Tyson perform bizarre stunt
## 1570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MEEKS CONDEMNS TRUMP ADMINISTRATION'S ROLLBACK OF DIVERSITY AND INCLUSION AT THE STATE DEPARTMENT
## 1571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MEEKS, HFAC DEMS CALL ON SECRETARY RUBIO TO REVERSE PURGE OF STATE AND USAID WORKFORCE, U.S. FOREIGN ASSISTANCE AND DEIA INITIATIVES
## 1572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MEEKS, SHAHEEN, FRANKEL, SCHATZ DEMAND IMMEDIATE ACTION TO ADDRESS TRUMP ADMINISTRATION EFFORTS TO UNDERMINE AMERICAN SOFT POWER
## 1573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MEMO: How Trump's Federal Funding Freeze Affects Colorado
## 1574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MFUME, HOUSE FOREIGN AFFAIRS COMMITTEE DEMS CALL ON SECRETARY RUBIO TO REVERSE PURGE OF STATE AND USAID WORKFORCE, U.S. FOREIGN ASSISTANCE AND DEIA INITIATIVES
## 1575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MLB Commissioner Rob Manfred says some fans concerned over lack of salary cap
## 1576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MLK celebrations at UNL inspire action in uncertain times
## 1577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MLK's family fears records set for release will contain FBI "smears"
## 1578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MORE EASY ACTION CLICKS NOW, CAMPAIGN CALL THURSDAY. PILE ON!
## 1579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MORGAN MURPHY: Things Are Going From Bad To Worse For The Permanent Bureaucratic State
## 1580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MORGAN MURPHY: Woke DC Bishop Who Lectured Trump, Vance Overlooked Several Biblical Lessons In Sermon
## 1581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MSNBC Host Clings To 'Plenty Of Data Points' To Prove DEI Makes Businesses 'More Successful'
## 1582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MSNBC Reportedly Cancels Joy Reid's Show In Major Shake-Up
## 1583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MSNBC guest claims America is becoming 'less safe' as FBI paints over 'diversity wall'
## 1584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MSNBC guest launches unhinged attack on 'white folks' over price of eggs in 'Trump's disgusting America '
## 1585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSNBC star Rachel Maddow set for courtroom humiliation over shocking on-air slurs
## 1586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MSNBC's Al Sharpton Makes Absurd Boycott Announcement In Response To Trump
## 1587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MU leadership provides updates on executive orders related to NIH funding, immigration enforcement, transgender college athletes
## 1588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MURKOWSKI CALLS ON OMB TO ENSURE TRIBES ARE NOT IMPACTED BY EXECUTIVE ORDERS
## 1589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MURPHY TO MCMAHON: YOU'RE SAYING IT'S A POSSIBILITY THAT A PUBLIC SCHOOL WITH PROGRAMMING RELATED TO RACE COULD LOSE FEDERAL FUNDING
## 1590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Macmillan Cancer Support is criticised for recruiting a £100k a year DEI director - despite recently axing a quarter of its workforce
## 1591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Made History': Mark Halperin Says 'Musk Has Already Done More Than' Past GOP Presidents To Reform Gov't
## 1592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Madonna posts poignant message honoring Martin Luther King Jr. as President Trump is sworn in for second term
## 1593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Madonna takes a swing at Donald Trump for 'dismantling' LGBTQ+ freedoms and tells her fans 'don't give up the fight'
## 1594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Maga replaces DEI in America ’s boardrooms
## 1595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Mahomes, Hurts again merit a SB repeat
## 1596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Major Changes Underway As Trump Works To Reshape Government; Sources: White House In Talks To Host Some Jan. 6 Convicts; DOJ Threatens To Prosecute Officials Who Resist Immigration Orders; JPMorgan Chase CEO On Trump Tariffs: "Get Over It"; PMorgan Chase CEO: Trump Tariff Threat May Be Negotiating Tool; Trump Tariffs Loom Over Chinese Factory In Mexico ; Chinese Firms Weigh Options As Trump Threatens New Tariffs. Aired 3-3:30p ET
## 1597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Major Lawsuits Against Trump And Musk: Judge Halts Trump s DEI Contract Ban For Now
## 1598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Major companies pul back on DEI initiatives - The Charger Bulletin
## 1599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Major update after thousands of government websites were set to go dark amid Trump's online purge
## 1600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Make America a Christian nation': Bostonians pray on faith's role in Trump's executive actions
## 1601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Malicious misreading': College Republicans president pushed to resign following Barron Trump comments - Washington Square News
## 1602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Man, I Feel Like a Woman: A Commentary on Trump's Executive Orders
## 1603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Mandatory Evacuation Orders As New Fire Breaks Out Near L.A.; Trump Closes Federal DEI Offices, Puts Staffers On Leave; Elon Musk Slams Trump 's $500b A.I. Project; JP Morgan Chase CEO On Trump Tariffs: "Get Over It"; Rep. Veronica Escobar (D- TX ), Is Interviewed About White House In Talks For Jan. 6 Convicts To Meet With Trump . Aired 5-6p ET
## 1604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Manhattan Institute Issues Commentary to New York Post: Trump's Justice Dept. Vows to End College Affirmative Action - Here's Where to Start
## 1605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Map Reveals States Set To Be Hit Hardest by Federal Funding Freeze
## 1606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Map Shows China's Global Investments Expanding Amid USAID Upheaval
## 1607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Marc Fogel Visits The White House After Release From Russia ; Elon Musk Defends DOGE In The Oval Office; Kash Patel Accused Of Ordering FBI Firings Before Confirmation; U.S. Military Backs Out STEM Recruiting Conference; Sonya Massey's Family Settle For $10 Million. Aired 11p-12a ET
## 1608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Marc Short is Interviewed about Tariffs, RFK Jr. and the FBI; Rep. Johnny Olszewski (D- MD ) is Interviewed about Dismantling the Education Department; Trump Hints of Purchase of TikTok. Aired 6:30-7a ET
## 1609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Marco Rubio shuns G20 meeting in South Africa over ‘equality’ drive
## 1610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Marco Rubio shuns South Africa ’s G20 amid land and Starlink rows
## 1611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Marjorie Taylor Greene Questions Reporter's Accent: 'American Media First'
## 1612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Mark Esper Loses His Security Detail Here s Who Else Trump Has Pulled Protection For
## 1613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Mark Zuckerberg suffers ultimate humiliation after whining to staff 'everything I say leaks'
## 1614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Mark Zuckerberg’s charity confirms support for DEI despite Meta’s overhaul
## 1615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Mark Zuckerberg’s charity guts DEI after assuring staff it would continue
## 1616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Mark Zuckerberg’s charity scraps diversity team despite pledge to staff
## 1617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Marvel’s New ‘Captain America ’ Is No. 1, Despite a Backlash and Poor Reviews
## 1618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Matthew Guterl P'26 P'28 named vice president of diversity and inclusion - The Brown Daily Herald
## 1619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Mayday-Mayday, Trump's 'War on DEI' puts Americans at risk - Hilltop Views
## 1620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Mayor: Immigration Agents Raided NJ Business Without Warrant; Judge Blocks Trump's "Blatantly Unconstitutional" Executive Order; Trump Wants To Meet With Putin "As Soon As We Can" "Immediately". Aired 7-8p ET
## 1621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               McDonald's defies Trump in the UK
## 1622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  McDonald’s defies Trump to keep DEI in Britain
## 1623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          McMahon grilled on DOGE and DEI as Education Department upheaval looms
## 1624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     McMahon to face senators next week as Education fight grows
## 1625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Md. A.G. Brown Issues Multistate Guidance for Businesses on Diversity, Equity, Inclusion, and Accessibility Employment Initiatives in the Workplace
## 1626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Md. A.G. Brown: Joint Statement From 12 State Attorneys General: President Trump is Misleading the American People on Purpose of Diversity, Equity, Inclusion, and Accessibility Initiatives
## 1627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Meadville history reignited by Allegheny reverend - The Campus
## 1628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Mechanical failure or human error? What might've caused the D.C. plane crash that killed 67 people
## 1629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Medevac Plane Crashes in Philadelphia , Injuries on Ground Unclear; 6 On Board Crashed Medevac Jet in Philly, Including Child Patient; Trump Tries to Remake Government With No DEI; Coach Remembers Figure Skater Killed in DC Collision. Aired 12-1 am ET
## 1630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Medford considers ordinance protecting gender-affirming and reproductive healthcare
## 1631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Media Pushes False Tale Of Trump-Musk Friction; DOGE Moves Full Steam Ahead; Democrats Fuming Over DOGE Crackdown; Trump's Mission For Accountability And Transparency; Interview With Sen. Ted Cruz (R- TX ); The Geopolitical Importance Of Greenland; DOGE And The War On Waste; Media Moments That Matter; Behind-the-Scenes At The Babylon Bee
## 1632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Media Tip Sheet: Trump Administration Moves to Dismantle Federal DEI Programs and End Affirmative Action in Contracting
## 1633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Medicaid portals down, research funding frozen: Trump's chaos can cause real harm | Opinion
## 1634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Medical Jet Crashes in Philadelphia, No Confirmed Survivors; Israel -Hamas Ceasefire Leads to Hostage Releases; Deadly Mid-Air Collision Over D.C. , Black Boxes Recovered; Trump Imposes New Tariffs on Canada, Mexico , China; Madison Keys Wins Australian Open, First Major Title. Aired 7-8a ET
## 1635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Meet Andrew Ferguson, the new chairman of the FTC who has vowed to go after Big Tech's 'vendetta against competition'
## 1636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Meet Ivanka Trump’s new glossy posse
## 1637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Megyn Kelly's brutal takedown of CNN pundit and her meltdown over being 'paid less than white male colleagues'
## 1638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Melania and Ivanka's close ties to USAID exposed as Trump goes scorched-earth on the 'corrupt' agency
## 1639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Melania unveils cryptocurrency as Donald Trump teases Jan 6 'hostages' decision before inauguration: Live
## 1640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Melania's fashion: more than meets the eye
## 1641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Meloni coalition under threat from bank merger Prime minister's political skills have transformed Italy , but the strength of her government is at risk. By Michael Bow
## 1642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Meritocracy' Is the Right's Smokescreen for White Mediocracy | Opinion | Opinion
## 1643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Merkley, Murray, Peters Seek Clarity on Scope, Reach of OMB Funding Cuts, Who Authored Disastrous Memo
## 1644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Merz Claims Win for Conservatives in Germany 's Snap Election; Trump, Macron Set to Meet in Washington; Vatican: Pope Still Critical, Shows 'Mild' Kidney Failure; Trump's First Month in Office, By the Numbers. Aired 12-12:45a ET
## 1645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Meta CEO Mark Zuckerberg tells employees to 'buckle up' for an 'intense year' in a leaked all-hands recording
## 1646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Meta Will Spend Record $60 Billion On AI This Year, Zuckerberg Says After Trump Announces Stargate Deal With OpenAI
## 1647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Meta and Google opt out of Sydney Mardi Gras amid move away from DEI in US
## 1648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Meta denies claims it is pushing users to follow accounts linked to Trump team
## 1649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Meta set to notify workers impacted by its performance-based cuts
## 1650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Meta to pay $25 million to settle Donald Trump lawsuit, Zuckerberg hails administration
## 1651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Michigan Defies Donald Trump's Schools DEI Threat
## 1652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Michigan Tech takes action in compliance with DEI changes - The Lode
## 1653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Midair Collision Investigation; DOJ Defends Trump's Birthright Citizenship Order in Court; No Evidence For Trump's DEI Claims on Midair Collision. Aired 11:30a-12p ET
## 1654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Middle schoolers at military facility in Germany protest Hegseth’s anti-DEI moves
## 1655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Middle schoolers protest Pete Hegseth's DEI takedown at US base in Germany
## 1656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Migrant Deportation Flights Begin; Rep. Gabe Vasquez (D- NM ) is Interviewed about Birthright Citizenship and Deportations; Trump Visits North Carolina and California ; Zeb Smathers is Interviewed about Flood-Ravaged North Carolina . Aired 9-9:30a ET
## 1657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Military Halts Sexual Assault Prevention Training Post-Trump DEI Order
## 1658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Military leaders should expect Trump crackdown – from disloyalty to diversity
## 1659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Military promotions, academic institutions to no longer consider race, sex: Hegseth memo
## 1660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Millions in aid spent on 'storytelling' to save seas
## 1661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Millions of Federal Workers Receive Email from Trump Administration with Option to Resign from Their Current Positions; Robert F. Kennedy Jr. to Testify at Senate Confirmation Hearing for His Health and Human Services Secretary Nomination; Advocacy Group Denounces ICE Raid at Philly Car Wash. Interview with Rep. Nydia Velazquez (D- NY ). Aired 8-8:30a ET
## 1662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Millions spent on ‘inclusivity’ projects to save seas — including in landlocked nations
## 1663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Minnesota Pride group raises $50,000 after dropping Target as a sponsor
## 1664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Minorities Face Burnt Of Trump's First Actions Back In Office; Former White House Diversity Chief Reacts To End Of DEI Programs; Trump Targets DEI, Civil Rights Rules In First Days Of 2nd Term. Newark Mayor Says Business Raided By ICE Agents, Multiple People Detained; Hostages Return To Israel For Treatment After Release By Hamas; CNN Kobe Bryant Documentary Series Premiers Tonight. Aired 8-9a ET
## 1665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Mirror Indy: 'It sucks': Ivy Tech closes DEI offices to protect its funding
## 1666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Missouri Western responds to the halting of federal funding for diversity programs
## 1667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Missouri sues Starbucks, claiming DEI policies are slowing down orders
## 1668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Moderate Republicans, Democrats elect Burrows as speaker - The Battalion
## 1669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Moment air traffic controller screams as American Airlines plane collides with Black Hawk helicopter over Washington
## 1670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Monday briefing: Will Trump really begin his second term with a message of unity?
## 1671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            More DEI fallout: Air Force scraps course that used videos of Tuskegee Airmen and female WWII pilots
## 1672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                More than 100 US spies are fired for sexually explicit chats, Tulsi Gabbard says
## 1673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            More than 50 student organizations demand protection of DEI services
## 1674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            More than a third of Black NFL players surveyed by the AP are discouraged by a lack of Black coaches
## 1675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Morning Mail: antisemitism warning from Auschwitz survivor, our ‘unfair’ dental care, China stuns AI industry
## 1676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Morning Report — Critics tee off on Trump orders
## 1677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Morning Report — Senators muscle forward in the budget fight
## 1678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Morning Report — Trump heads west playing defense and offense
## 1679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Morning Report — Trump’s whirlwind second term begins
## 1680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Morrisey 'applauds' WVU for closure of DEI Office
## 1681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Most Americans Say US Foreign Aid Is 'Wasted On Corruption,' Survey Reveals
## 1682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Most Sidelined Federal Diversity Staff and Others Should Be Allowed Back to Work
## 1683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Most banned books feature people of color and LGBTQ+ people, report finds
## 1684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Motives of arsonists, Target's DEI reversal, Super Bowl ads: Catch up on the day's stories
## 1685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Multiple Companies Ditching California For Texas
## 1686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Multiple Meetings Over Russia and Ukraine Peace; Anne Applebaum is Interviewed about Government Cuts and Firings; Best Moments from "Saturday Night Live.". Aired 9:30-10a ET
## 1687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Multistate Guidance for Businesses on Diversity, Equity, Inclusion and Accessibility Employment Initiatives in The Workplace
## 1688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Murdered fire captain's ex lover drops bombshell about victim's wife after cops named her as prime suspect
## 1689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Museums’ slavery focus has become humdrum, historian says
## 1690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Music and mayhem - The Quinnipiac Chronicle
## 1691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Musk And Mystery Team Intensify Dismantling Of Government; CIA Sent Names Of Recent Hires in Unclassified Email To White House; Nationwide Protests Against Trump And Musk Government Actions; "NewsNight" Panelists Discuss The Competency Of Trump Picks; Republicans Try To Figure Out Which Side of the Gaza Plan They're On. Aired 10-11p ET
## 1692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Musk And Trump Sit Down For A Rare Interview; Elon Musk And 'DOGE' Aim To Cut $1 Trillion; Elon Musk Shares Backlash For Supporting Trump; New Video Show Delta Plane Crash Landing; Officials Meet In Saudi Arabia For Ukraine Talks; CA Attorney General Leads Resistance To Trump; Secret Of Success: Musk: Way To Save Taxpayer Money Is Competence And Caring
## 1693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Musk May Use His Tech Skills To Pare Costs
## 1694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Musk Moves from Villainizing Workers to Fictionalizing Them; Trump Cedes Spotlight to Elon Musk in First Cabinet Meeting; Bezos Commands Washington Post to Focus Columns on His Two Pillars. Supreme Court Justices Poises to Favor Straight Woman in a Job Bias Case; A.I.-Generated Video of Trump's Fantasy Gaza Sparked Outrage. Aired 10-11p ET
## 1695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Musk Moves to Eliminate Key Federal Agency; El Salvador Agrees to House Deported U.S. Criminals; FBI Prepares for Major Trump Purge; Red Flags Raised After CBS Hands Over Harris Transcript; Judge Warns Lively and Baldoni Lawyers. Aired 11p-12a ET
## 1696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Musk Plan for Retooling Government Takes Shape, but Big Questions Loom
## 1697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Musk Prepares For Cabinet Meeting As Mass Firings Loom; Andrew Cuomo Readies Controversial Comeback; New Revelations In Idaho College Murders Case. Aired 11p-12a ET
## 1698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Musk Rehires DOGE Aide Who Resigned Over Racist Posts; Trump Admits Musk's DOGE Getting Access to Sensitive Data; Trump Terminates Kennedy Center Board. A Federal Judge Blocks Trump Administration's Plan To Put All USAID Workers On Leave; Homeland Security Secretary Noem Checks Out Operations at Guantanamo Bay . Aired 10-11p ET
## 1699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Musk Takes Center Stage at Trump's First Cabinet Meeting; Israel, Hamas Agree on New Exchange as Fragile Ceasefire Appears Intact; Crowds Line Streets to Mourn Bibas Family Who Were Killed in Gaza. Aired 2-2:30p ET
## 1700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Musk Threatens Dismissals as Federal Workers Told to Justify Jobs; Interview with Rep. Gerry Connolly (D- VA ); Zelenskyy Says He is Ready to Step Down if it Brings Peace in Ukraine . Aired 3-4p ET
## 1701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Musk Threatens Firings As Federal Workers Told To Justify Jobs; Zelenskyy Says He's Ready To Step Down If It Brings Peace In Ukraine ; Pope's Still In Critical Condition With Signs Of Mild Kidney Failure; Polls Close In Germany 's National Election; Angry Crowds Confront GOP Lawmakers At Town Halls Over DOGE Cuts. Aired 2-3p ET
## 1702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Musk Tightens Grip On Government With Oversight Of More Agencies; Pam Bondi Sworn In As Attorney General; Trump Takes Action To Ban Trans Women From Women's Sports. Aired 9-10p ET
## 1703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Musk savagely trolls whining federal workers as attempts to seize highly-sensitive $5 TRILLION system hits major stumbling block in emergency court hearing challenging DOGE's power
## 1704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Musk stunned as dozens of DOGE staff suddenly QUIT with scathing letter... as eye-watering new savings figure is revealed
## 1705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Musk urged to abolish Planned Parenthood funding as report reveals abortion clinic horror stories
## 1706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Musk vs. federal bureaucracy
## 1707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Musk wants retired air traffic controllers to resume work, but it's not so easy
## 1708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Musk's "based" Grok 3 sticks to the middle of the round
## 1709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Musk's DOGE Gains Access to Medicare, Medicaid Data Systems: Live Updates
## 1710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Musk's Mission: End The Waste And Fraud; Holding Government Accountable: Failure Not An Option; Inside Look At Illegals Entering Gitmo; Inside look at Gitmo living conditions as Laura visits Gitmo's migrant operation center; Pete Hegseth, you don't want to be in Gitmo; Hegseth sees Khalid Sheikh Mohammed, 9/11 detainees; Maine representative censured for exposing trans craze; NSA transgender sex chat exposed; jake tapper covered up Biden's decline; Newsom's newest venture, another podcast; Newsome recall effort heats up; The MAGA hat reimagined
## 1711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Musk's wrecking ball
## 1712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Musk: Trump ‘will succeed’ in dismantling Education Department
## 1713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Musk’s war on diversity won’t stop first disabled astronaut
## 1714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Musk’s ‘Doge’ guts nearly $1bn in US education department’s research office
## 1715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           My Week Donald Trump*
## 1716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NAACP 's top marketer tackles everything from DEI rollbacks to the organization's first foray into daytime TV
## 1717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NAACP PRAISES REINTRODUCTION OF HISTORIC REPARATIONS BILL DURING BLACK HISTORY MONTH
## 1718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       NAACP President Condemns Trump Administration's Roll Back of DEI Programs
## 1719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NAACP chief slams Trump for linking DEI with plane crash: ‘Sinister strategy’
## 1720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NAACP lists companies that dump DEI in its tactical spending guide for Black Americans
## 1721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NAACP spending guide urges Black Americans to avoid companies that dumped DEI
## 1722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NAACP’s Legal Defense Fund calls on Congress to reject McMahon for Education Department
## 1723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NACUBO On Your Side: Jan. 7-27, 2025
## 1724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NASA's woke boss admits agency wasted millions of taxpayer dollars on 'shameful' DEI programs
## 1725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NASW RESPONDS TO TRUMP ADMINISTRATION EXECUTIVE ORDERS
## 1726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             NASW'S APPALLED BY EXECUTIVE ORDER ENDING DEI IN FEDERAL GOVERNMENT
## 1727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NAVIGATING A NEW POLITICAL LANDSCAPE: FREQUENTLY ASKED QUESTIONS
## 1728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NBC Host Asks Cory Booker Point Blank If Dems' Favorite Talking Points Are 'Effective' After Election Loss
## 1729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NBC Reporter Invokes Trump, Musk During Coverage Of Most Recent Plane Crash, But It Happened In Canada
## 1730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NBC parent company's DEI initiatives probed by FCC as it becomes latest target of Trump administration
## 1731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NC State Representative and Senator talk civic engagement at NCCU - Campus Echo Online
## 1732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NCAA makes ruling on transgender athletes in women's sports after Trump executive order
## 1733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NEA PRESIDENT BECKY PRINGLE ISSUES STATEMENT PERTAINING TO THE MOST RECENT ATTACKS BY THE TRUMP ADMINISTRATION ON FEDERAL DIVERSITY, EQUITY AND INCLUSION PROGRAMS
## 1734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NEW JERSEY LGBTQ ADVOCATES FROM GARDEN STATE EQUALITY SAY THEY'LL CONTINUE TO PUSHBACK WITH FACTS
## 1735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             NEW UMASS AMHERST /WCVB POLL FINDS GOV. MAURA HEALEY MAINTAINS SUPPORT AMONG BAY STATE VOTERS, THOUGH CRACKS EMERGE
## 1736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NEW UMASS AMHERST /WCVB POLL GAUGES BAY STATE RESIDENTS' VIEWS ON RACE, EDUCATION AND ABORTION IN THE COMMONWEALTH
## 1737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     NEWS 02/20/2025 VIDEO: BLACKBURN DETAILS DOGE'S EFFORTS TO RESTORE ACCOUNTABILITY IN THE FEDERAL GOVERNMENT
## 1738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NEWSBYTES JANUARY 31, 2025
## 1739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NEWSLETTER -FEBRUARY 2, 2025
## 1740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NEWSLETTER -FEBRUARY 9, 2025
## 1741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NFL botches its DEI message optics
## 1742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NFL botches its message on DEI by dropping 'End Racism' from end zones at Super Bowl | Opinion
## 1743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NFL has no plans to end DEI policies, Goodell says
## 1744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NFL to make controversial Super Bowl decision over racism message with Donald Trump attending showpiece
## 1745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     NFL to scrap ‘End Racism’ messaging on field for Super Bowl
## 1746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NFL to use 'Choose Love' message instead of 'End Racism' on field for Super Bowl
## 1747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NHS diversity practices hindered by ‘misguided approaches’, says Streeting
## 1748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NHS hires diversity staff on double the salary of junior doctors
## 1749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NHS hiring dozens of diversity jobs despite order to crack down
## 1750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NICOLE KIPRILOV: 5 Things That Became Abundantly Clear During Trump's First Week In Office
## 1751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NIH Communications Freeze Leaves Longwood Affiliates Out in the Cold
## 1752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NILE GARDINER: The Donald's revitalised America could lead Britain to broad sunlit uplands - but Keir Starmer's doctrinaire socialists will blow the opportunity
## 1753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NO, USAID IS NOT THE CHRISTIAN CHARITY ARM OF THE U.S. GOVERNMENT
## 1754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           NOAA sees DOGE search for its DEI-related information
## 1755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NOAA told to search its grants for climate change terms
## 1756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             NORTH CAROLINA ELIMINATES DEI INDOCTRINATION IN ACADEMIC COURSEWORK
## 1757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NSA Reportedly Purges Agency's Websites Of DEI Terms
## 1758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NSA agents exposed for sex chats as Tulsi Gabbard vows to punish workers posting 'kinks, fetishes and polyamory'
## 1759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NSF faces steep budget cuts and layoffs, effects on CMU research funding unclear - The Tartan
## 1760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NSW Premier Chris Minns quietly removes he/him pronouns from his social media accounts
## 1761                                                                                                                                                                                                                                                                                                                                                                                                                                                   NTSB Investigates Deadly Plane Crashes In DC , PA ; Trump Imposes Tariffs On Canada, Mexico & China; Interview With Transportation Secretary Sean Duffy; Trump Offers Buyout to Federal Workers; Poll: Trump Approval Ratings 10 Points Higher Than in Beginning of First Term; Trump Cabinet Picks Grilled On Capitol Hill; Bipartisan Measure Calls For U.S. To Keep All Options On Table To Deter Nuclear Iran ; Trump Signs Order To Impose tariffs On Canada, Mexico And China Starting Tuesday; Voters Have Unfavorable Opinion of the Democratic Party; Future of the Democratic Party; Robert George and Cornel West is Interviewed about their Book "Truth Matters."
## 1762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           NTSB Recovers One Data Recorder From AA Flight; Plane And Helicopter Collide Near D.C. , No Survivors; Tulsi Gabbard And Kash Patel Shake Up The Deep State; Democrats welcome illegal criminals with open arms; Chicago mayor says White House government is raggedy; How the left wrecked education; Schools are for success, not indoctrination; Big pharma tries to stop RFK Jr.; Rand Paul calls out blind government acceptance
## 1763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NTSB Takes Questions on Deadly D.C. Air Collision; NTSB Says, Flight Data Recorders Not Recovered; Tulsi Gabbard Faces Senate Confirmation Hearing
## 1764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NTSB: "Whole of Government Effort" to Investigate Midair Crash; NTSB: Flight Data Recorders Not Yet Recovered; NTSB: "Very Quick, Rapid Impact," No Passenger Slides Deployed. Aired 3-3:30p ET
## 1765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NWLC Responds to the Firing of Commissioners at the Equal Employment Opportunity Commission (EEOC)
## 1766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     NYC's swoon-worthy restaurants for Valentine's Day - Washington Square News
## 1767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     NYGOP STATEMENT ON THE END OF DEI IN THE FEDERAL GOVERNMENT
## 1768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NYU Langone nurses brace for strike amid union contract negotiations - Washington Square News
## 1769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NYU experts on Trump 's anti-DEI crusade - Washington Square News
## 1770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NYU-affiliated groups sue Trump for 'unconstitutional' executive orders - Washington Square News
## 1771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    National Action Network: After Trump Delivers Opening Attack on Federal Dei Programs, Rev. Sharpton Announces Boycott of Companies That Abandon the Policies
## 1772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  National Center for Public Policy Research: Costco Packs Big Discrimination Into Big Box Store
## 1773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            National DEI changes lead Carbondale to monitor inclusion goals - The Daily Egyptian
## 1774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Nationwide Economic Blackout This Week: Which Stores are Being Targeted
## 1775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Navigating Change: Rutgers-Camden's Response to Executive Orders on DEI
## 1776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Navy allows officers to wear saris in diversity overhaul of uniform policy
## 1777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Netflix viewers criticize Love Is Blind producers for 'identical' male contestants in season 8
## 1778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     New 40-Acre Brush Fire Erupts Overnight in L.A.; Trump Defends Jan. 6 Pardons in Oval Office Interview; Authorities Search for Motive in Deadly Nashville School Shooting. Aired 7-7:30a ET
## 1779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                New ALA Initiative Asks Advocates to "Show Up for Our Libraries"
## 1780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         New California Wildfire; Trump Targets Diversity, Equity and Inclusion Protections; Trump's Immigration Crackdown; Same-Sex Marriage Law Takes Effect in Thailand ; Trump Turns Up Pressure on Russia to End Conflict. Aired 4-4:30a ET
## 1781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   New Details on Deadly Midair Collision in Washington, D.C. ; Military Helicopter May Have Been Flying Too High; Remembering the Lives Lost in Washington Aviation Disaster; Trump Baselessly Links DEI Initiatives to Air Disaster; Palestinians Return to Devastation in Northern Gaza; FAA Closes Helicopter Routes Near Reagan National After Crash; Rafah Border Crossing Expected to Open by End of Week; Israel Pauses 2-Year-Old Girl's Medical Evacuation from Gaza; German Lawmakers Vote on Immigration Restrictions; Contentious Hearings for Trump's Most Controversial Nominees. Aired 10-11a ET
## 1782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             New EPA Chief Has Message For Bureaucrats Hoping To Stymie Trump Agenda From Within
## 1783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        New Fast-Moving Fire In Southern California ; Trump Purges Diversity, Equity And Inclusion Protections; Thailand Legalizes Same- Sex Unions; Hughes Fire North of Los Angeles Now 14 Percent Contained; Trump to Visit Los Angeles , Tour Fire Devastation Friday; Trump Blames Governor, Water Policy for Fires' Devastation; 1,500 U.S. Troops Ordered to the Southern Border; Same-sex Marriage Law Takes Effect in Thailand ; Nepal Hikes Mount Everest Climbing Fee Up to $15,000. Aired 2-2:45a ET
## 1784                                                                                                                                                                                                                                                                                                                                                                             New Questions Over Congestion And Communication; 64 People Were On Jet And Three On Board Helicopter; Coaches And Students Among Those Killed; Nominee For FBI Director Faces Scrutiny; Heated Exchange During Robert F. Kennedy Jr. Testimony; U.S. Army Black Hawk Helicopter and American Airlines Flight Collide Near Washington D.C. with No Survivors; Sen. Tim Kaine (D- VA ) Interviewed on Overcrowding of Flights at Reagan National Airport Possibly Contributing to Recent Midair Collision; Israeli Prime Minister Benjamin Netanyahu Orders Delay in Palestinian Hostage Release to Hamas; FBI Director Nominee Kash Patel and Director of National Intelligence Nominee Tulsi Gabbard Testify at Their Senate Confirmation Hearings.
## 1785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           New Recovery Effort Under Way In Deadly In-Flight Collision; Controversial Trump Picks Face Questions On Past Comments. Aired 4-5p ET
## 1786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          New Trump orders on transgender troops, COVID and more expected on Hegseth's first day
## 1787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          New Ultimatum from Trump; GOP'S Careful Pushback on Musk; Sen. Ed Markey (D- MA ) is Interviewed about Dismantling Federal Agencies; Flu Cases Peak for Second Time; Louisiana Police Looking into Death of Reporter. Aired 8:30-9a ET
## 1788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                New Video Show Moment Plane & Army Helicopter Collided; Multiple Investigations Into What Caused Collision That Killed 67; Figure Skating Community Mourns Victims Killed in D.C. Tragedy; FireAid Concerts Raise Millions For Fire Victims. Aired 9:30-10 am ET
## 1789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           New Video Shows Collision from Previously Unseen Angle; FAA Indefinitely Closes Helicopter Routes Near Reagan National Airport; Families, Friends Pay Tribute to 67 People Killed in D.C. Tragedy. Aired 10-10:30a ET
## 1790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  New Video Shows Passenger Jet Colliding With Military Chopper; FAA Indefinitely Closes Helicopter Routes Near Crash Site; NTSB Recovers Both Black Boxes From Doomed Jet; Trump Jumps Right To Blame Game Over Plane Crash. Aired 12-12:30p ET
## 1791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     New Videos Show Moment Helicopter and Plane Collided; Trump Says He Will Meet With Some of the Victims' Family Members; Trump Makes Baseless Claims DEI Hiring May Have Caused Collision. Aired 7- 7:30a ET
## 1792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                New York City Mayor Eric Adams Requests Attends Court to Request Federal Charges of Corruption be Dropped; Interior Secretary Doug Burgum Gives Tour of Interior Department Building; President Trump Calls Ukrainian President Volodymyr Zelenskyy a Dictator; President Trump Draws Criticism from Some Senators for Indicating Ukraine Started Current War with Russia ; Donald Trump Calls Volodymyr Zelenskyy A Dictator Without Elections; Administration Efforts To Increase U.S. Energy Output; Interior Department Lays Off Thousands Of Employees; Trump Backs House To Implement America First Agenda
## 1793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   New administrations spell uncertainty for KSC
## 1794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           New footage of American Airlines crash shows doomed jet and Black Hawk helicopter's lights could be seen from over a mile away - so how did they not spot each other?
## 1795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Newsmax host boasts that Trump is a 'dictator that the American people voted for'
## 1796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Nielsen s Annual Report Highlights These New Trends Among Black Consumers
## 1797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             No Survivors in Midair Collision; President Trump Blames DEI For Midair Collision. Aired 1-1:30p ET
## 1798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         No funding, no future: Emory students will graduate into hopelessness - The Emory Wheel
## 1799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       No one is safe from Trump’s racist agenda
## 1800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              No plans to draw down US forces in Europe, for now
## 1801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          No recourse available': Confusion spreads at Education Department amid buyout deadline
## 1802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        No, Trump isn't gutting medical research
## 1803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            No, el presidente Trump no es populista David Brooks
## 1804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               No, image doesn’t show real Trump post about Department of Education | Fact check
## 1805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       No, transgender pilot wasn't flying Black Hawk helicopter that crashed in DC | Fact check
## 1806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Noir mood in Hollywood as Trump assaults DEI Media. Diversity goals Nerves under strain in a sector caught between administration wrath and workforce defiance
## 1807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               North Carolina Office of the State Auditor: 'State Auditor Boliek to Eliminate DEI Concepts, Training, and Requirements From OSA'
## 1808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Northwest dissolves Office of Diversity and Inclusion, Tatum talks prioritizing student success
## 1809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Notre Dame Calls DEI 'Equally Important' As Catholicism In Hiring Decisions
## 1810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Notre Dame's Marcus Freeman falls short of breakthrough for Black coaches on historic day in America
## 1811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Notre Dame's Marcus Freeman seeks breakthrough for Black coaches on a historic day in America
## 1812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now Musk has air traffic controllers on his radar The Space X boss has a history of clashes with the Federal Aviation Authority. After the Washington air crash, he is targeting the agency, says James Ball
## 1813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now the Trump administration is going after Comcast , too
## 1814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now, Hegseth Clears Hurdle For Defense Secretary Role; Migrants Nab MS-13 Members, Murder Suspects; Judge Blocks Trump's Birthright Citizenship Order; President Trump Signs New Executive Orders
## 1815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Nurses fired at NYU Langone rehired after 2-year legal battle - Washington Square News
## 1816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Nvidia's earnings have turned into a quarterly AI State of the Union
## 1817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OH DEERE. APPLE AND JOHN DEERE STILL HAVEN'T AWOKEN TO THE RISKS OF GOING WOKE
## 1818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           OISA Advises International Students Under Second Trump Administration
## 1819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OKLAHOMA MUST STOP FORCING STUDENTS INTO DEI CLASSES
## 1820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        OLSZEWSKI, HFAC DEMS CALL ON SECRETARY RUBIO TO REVERSE PURGE OF STATE AND USAID WORKFORCE, U.S. FOREIGN ASSISTANCE AND DEIA INITIATIVES
## 1821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    OMB FUNDING PAUSE, MORE EOS MARK HECTIC WEEK FOR HIGHER ED FEBRUARY 03, 2025
## 1822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OMB Q&A REGARDING MEMORANDUM M-25-13
## 1823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ON THE EXPANSION OF EXECUTIVE POWER: AN OVERVIEW
## 1824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ONE WEEK OF PRESIDENT TRUMP
## 1825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      OP-ED: Honoring Black History Month Amid Continued GOP Attacks on School Curriculums and BIPOC Communities
## 1826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OPINION | Setting the stage: Trump's first 40 executive orders
## 1827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OPINION | The 'woke virus' is not what our government should be fighting against
## 1828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           OPINION: Are you worried yet? - The Murray State News
## 1829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         OPINION: Dissolving DEI could have serious consequences
## 1830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OPINION: Elon Musk and an "oligarchy," do billionaires have too much power in U.S. politics today? - The Seahawk
## 1831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          OPINION: Florida schools shouldn't put immigrants last
## 1832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OPINION: Make USF 'woke' again
## 1833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             OPINION: Students be warned: President sets sights on Department of Education - The Suffolk Journal
## 1834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      OPINION: Trump played voters with his part in Project 2025
## 1835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         OPINION: Trump's DEI rollback is a harmful setback for America 's diversity initiatives
## 1836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          OPINION: Trump's gender policy has no place in America
## 1837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OPINION: Trump's new executive orders do nothing to preserve meritocracy - Indiana Daily Student
## 1838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OPINION: X and Bluesky situation represents new age of social media division - The Daily Wildcat
## 1839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          OPM denies federal government website shutdown reports: ‘False rumors’
## 1840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OPM orders termination of DEI offices within 60 days
## 1841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 OSBA Monitoring Federal Actions
## 1842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OU film school director responds to studio diversity rollbacks
## 1843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ocasio-Cortez says Trump admin trying to ‘overwhelm’ with ‘constant’ developments
## 1844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Oded Lifshitz's Family Confirms Identity of His Remains; Hamas Returns Bodies of Four Israeli Hostages; No Joint Presser with Ukrainian President Volodymyr Zelenskyy and Trump's Ukraine Envoy after Meeting; Pope's Tests Show "Slight Improvement" in Pneumonia; JD Vance Speaks at Annual Conservative Conference; Germans Head to the Polls This Weekend; Defense Secretary Orders Pentagon to Slash Budget by 8 Percent Yearly. Aired 10-11a ET
## 1845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of Mice and Mugar: Mouse spotted on third floor of Mugar Library
## 1846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Off Topic: The alt-right is lying about free speech - Washington Square News
## 1847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Off Topic: The case for dating across the political divide - Washington Square News
## 1848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Off the Radar: 'The Beaches of Agnès' is a beautiful autobiography of a life well lived - Washington Square News
## 1849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Officials tack on additional leadership review for hiring, promotions to preserve GW's 'limited' resources - The GW Hatchet Donation Button
## 1850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Officials: No Survivors In Midair Collision; 67 Believed Dead; Recovery Effort Unfolds For 67 Victims Of Passenger Jet-Chopper Crash; Trump Lashes Out At DEI, Dems Amid Crash Recovery Effort; FBI Director Nominee Kash Patel Faces Confirmation Hearing. Aired 1:30-2p ET
## 1851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ohio Dems decry chaos of attempted Trump funding freeze
## 1852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Okla. Gov. Stitt Delivers 2025 State of State Address
## 1853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On Day 2, Trump extends his long list of executive orders
## 1854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 On Jan. 20, President Donald J. Trump signed an executive order titled "Ending Radical and Wasteful Government Diversity, Equity and Inclusion (DEI) Programs and Preferencing." This order mandates the cancellation of "discriminatory programs, including il
## 1855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On Strong Foundations: The AfAm House Celebrates 55 Years
## 1856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Once a DEI leader, Google is retreating from diversity initiatives. Here's why.
## 1857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       One Black Box Recovered from Potomac After Plane-Chopper Collision; Figure Skaters, Parents, Coaches Among the 67 Killed in Crash; Trump Baselessly Blames DEI Initiatives for Plane-Chopper Collision; 67 Believed Killed In D.C. Plane-Chopper Crash; Trump Baselessly Blames DEI Initiatives For Plane-Chopper Collision; Figure Skaters, Parents, Coaches Among The 67 Killed In Crash. Aired 8-9p ET
## 1858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               One Month In: Villanova Dems & Republicans React - The Villanovan
## 1859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            One flag policy': Trump admin tells US embassies they can't fly the Pride, BLM flags
## 1860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  One in five Democratic voters say Trump is doing a good job as his whirlwind start in office attracts new fans
## 1861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       OpenAI removes diversity commitment page from its website
## 1862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Opinion | DEI reversals should open the door to new progressive attitudes - The Daily Iowan
## 1863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Opinion | Political pressure is the culprit behind the UI's department changes - The Daily Iowan
## 1864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Opinion | The juxtaposition of Trump's inauguration on MLK Day - The Daily Iowan
## 1865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Opinion | This is 2025, not 1984 - The Daily Iowan
## 1866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Opinion: 'Oh, you're an American - do you see what's happening in your country?' - The Eagle
## 1867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Opinion: 3 ways Trump may be clearing a path for whistleblowers
## 1868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Opinion: 4 reasons why a US sovereign wealth fund is a bad idea
## 1869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Opinion: 6 ideas to make the CDC great again
## 1870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Opinion: A better way to end DEI: Pass a law
## 1871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Opinion: A letter to white women from a white woman
## 1872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Opinion: As DEI falters, Black Americans should revisit the vision of Marcus Garvey
## 1873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Opinion: Could Stephen A. Smith save the Democratic Party?
## 1874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Opinion: DeepSeek's arrival is a wakeup call for AI regulation - Washington Square News
## 1875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Opinion: Democrats must command attention, or they will stay drowned out by noise
## 1876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Opinion: Government buyouts don’t cut waste, they kill expertise
## 1877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Opinion: How Trump, Musk and Bezos could preserve humanity from an asteroid strike
## 1878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Opinion: How can we defend the private sector from Trump’s war on DEI?
## 1879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Opinion: If China shares AI, the US can’t afford to lock it out
## 1880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Opinion: Modern politics demand more than a passive glance | Opinion | dailytitan.com
## 1881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Opinion: New York City under Trump's second term - Washington Square News
## 1882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Opinion: Obama’s chumminess with Trump doesn’t seem to have helped anyone
## 1883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Opinion: Our universities need both free speech and diversity protections to succeed
## 1884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Opinion: Project 2025 has slowly been implemented at the state level - The Eagle
## 1885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Opinion: Students need to rethink their relationship with weed - Washington Square News
## 1886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Opinion: The beauty of black cats - The Scarlet & Black
## 1887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Opinion: The destruction of USAID is a canary in American democracy’s coal mine
## 1888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Opinion: Thunder vs. lightning: How Democrats must navigate the Trump era
## 1889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Opinion: Trump always passes the buck
## 1890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Opinion: Trump and Musk risk radicalizing veterans
## 1891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Opinion: Trump is back and dividing us again with crash-related attacks on DEI
## 1892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Opinion: Trump wants you to believe nothing is true. Don’t believe him.
## 1893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Opinion: Trump’s crony meritocracy could shatter US civil service
## 1894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Opinion: Trump’s foreign aid freeze exports misogyny, insults sexual violence survivors
## 1895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Opinion: Trump’s idea of ‘competence’ — only white men need apply
## 1896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Opinion: USAID should help those in need, not serve as a slush fund for leftist priorities
## 1897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Opinion: What NYU owes Black students beyond Black History Month - Washington Square News
## 1898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Opinion: When public health goes dark, the nation pays the price
## 1899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Opinion: Who’s up next for the Democrats?
## 1900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Opinion: Why diversity and success are inextricably linked
## 1901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Opinion: Why were lawmakers only lobbing softballs at Sean Duffy?
## 1902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Opinion: With chaos reigning supreme, Trump’s honeymoon is already over
## 1903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Opinion: You can get anything at Costco, including DEI
## 1904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Opinion: Your life should be harder - The Scarlet & Black
## 1905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Oregon Wild: We Will Not Obey in Advance
## 1906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Organizer: Consumer economic blackout set for Friday Event is one of several to protest companies
## 1907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Oscar-Winning Actor Gene Hackman Found Dead in His Home; Trump to Welcome British P.M. Starmer to White House; Pro- Palestinian Protesters Storm Barnard College Campus. Aired 7-7:30a ET
## 1908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Oscars goes to war with Trump by nominating two trans dramas for 21 awards after president's two-genders law was branded 'shameless' by Hollywood wokerati
## 1909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Our Government Is To Conduct Itself In A Way That Is Responsible, That Is Professional, That Can Save As Many American Lives As Possible; The Democratic Party Is Again Obstructing Donald Trump's Nominees To Various Cabinet Positions; Draining The Washington, DC Swamp
## 1910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Our diversity obsession was killing the West – will Britain wake up in time?
## 1911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our dollars do count': These shoppers are using an economic blackout against companies
## 1912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Our future shouldn't be prevented by our own indifference | Editorial
## 1913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Our view
## 1914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Out Of Control Spending, Marxism And 'DEI Privilege Walks': How USAID Became Progressive Slush Fund Under Biden
## 1915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Out of Bounds: Major sports news out of Spain , France and Argentina - Washington Square News
## 1916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Outcry as Trump withdraws support for research that mentions ‘climate’
## 1917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Outrage Over Elon Musk Request To Federal Workers; Donald Trump Backs Elon Musk's 'DOGE' Productivity Push; Networks Spend Little Time On DOGE Savings: Report; Democrats And Media Missing Voters' And Courts' Support For Cuts; Activists Try To Interfere With ICE Operations; Activist Identify L.A. ICE Agents On Posters; Colony Ridge Development Raided By Authorities; Border Czar Homan Battles With Boston Officials; Trump Clashes With Maine Governor Over Trans Law; Super Bowl Summon: Should Trump Invite Philadelphia Eagles To White House?
## 1918                                                                                                                                                                                                                                                                                                                                                                                                              Over 95 Million Americans On Alert For Brutal Cold Temperatures; Trump's Mass Deportation Operation Begins With Over 300 Criminal Aliens Rounded Up On Day One; Trump Puts All U.S. Government Diversity Staff On Paid Leave "Immediately"; AI Can Predict Career Success From A Facial Image, Study Finds; "OK' Is Now Hate Symbol, The ADL Says; Noose Found In NASCAR Driver Bubba Wallace's Garage At Alabama Race; Banana Peel Found In A Tree Sparks Racial Fears; President Trump Orders All Government DEI Staff be Placed On Paid Leave; Trump State Department Implements Policy Requiring U.S. Outposts To Fly Only U.S. Flag; Philadelphia Mayor Misspells City's Football Team "Eagles" During Rally.
## 1919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Over a hundred rally in Grinnell against bill threatening civil rights for trans Iowans - The Scarlet & Black
## 1920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PA Politics: Federal Funding Fiasco and the "Lightning Plan"
## 1921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PAID LEAVE IN 2025: THREE CRUCIAL BATTLEGROUNDS FOR WORKING PEOPLE AND FAMILIES
## 1922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PBS caves to Trump closing its DEI office and seeing its staff leave the company
## 1923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PBS closes DEI office
## 1924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PDA WEEKLY REVIEW AND PREVIEW FOR 2-15-25. JOIN US!
## 1925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PLASKETT RELEASES STATEMENT ON WHITE HOUSE ATTEMPT TO PAUSE FEDERAL FUNDING
## 1926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PREPARED REMARKS: THE RULE OF LAW VERSUS THE RULE OF INTIMIDATION: THE CASE FOR DIVERSITY AND INCLUSION
## 1927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PRESIDENT APPOINTS ANDREA R. LUCAS EEOC ACTING CHAIR
## 1928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PRESIDENT TRUMP'S EXECUTIVE ORDERS GROTHMAN
## 1929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PRESS BRIEFING BY PRESS SECRETARY KAROLINE LEAVITT, DEPUTY CHIEF OF STAFF STEPHEN MILLER, NATIONAL ECONOMIC COUNCIL DIRECTOR KEVIN HASSETT, AND NATIONAL SECURITY ADVISOR MIKE WALTZ
## 1930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PRESS GAGGLE BY PRESIDENT TRUMP AT FUTURE INVESTMENT INITIATIVE INSTITUTE PRIORITY SUMMIT
## 1931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PUBLIC SCHOOLING, TRUMP, AND THE "BOOK BAN HOAX"
## 1932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pacific Legal Foundation: New Lawsuit Challenges Minnesota 's Racial Quotas for State Board
## 1933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pacific Legal Foundation: President Trump's Executive Order Ending DEI Policies is 'significant Win'
## 1934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Pacific Union College releases statement on immigration
## 1935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Page after page is disappearing from government and military websites. Here's what Trump's already purged.
## 1936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Palantir Stock Suddenly Falls 10% After Report Of Incoming Pentagon Budget Cuts
## 1937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Palestinian flags covered up at national gallery; Trump calls himself ‘king’; and the man pumping iron for art
## 1938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Palestinians Push Back Against Gaza Takeover Idea; Nation Sees Long Road ahead as it Starts to Rebuild; Inside New Leader Ahmad Al-Sharaa's Vision for the Country; Fear Among Federal Workers as Trump Administration Plans Layoffs; Arab Americans React to Gaza Takeover Proposal. Aired 9- 9:45a ET
## 1939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pam Bondi Immediately Targeted DEI, 'Weaponization' On First Day Leading Trump's DOJ
## 1940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Pam Bondi SUES Chicago over sanctuary city laws after sending DOJ into frenzy with sweeping pro-MAGA directives
## 1941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pam Bondi throws out DEI lawsuits against police and firefighters, saying no more 'quotas'
## 1942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Panelists Warn of 'Racial Weaponization' By Trump at IOP Forum
## 1943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Part Two Of Hannity's Exclusive Interview With President Trump
## 1944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Part Two of Hannity's Interview With Vice President J.D. Vance
## 1945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Party-loving senior celebrates turning 105 with birthday rave
## 1946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Passenger Jet's Black Boxes Recovered After Midair Tragedy; Trump Tariffs On Canada, Mexico , China Begin Tomorrow; U.S. Stocks Fall After Trump Tariff Announcement. Aired 2-2:30p ET
## 1947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Passenger onboard plane departing DC airport shows how 'crazy close' choppers fly next to commercial crafts
## 1948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pastor Jamal Bryant, The Next Jeremiah Wright; Radical Preacher Excoriates Black MAGA; Radical Preacher's Racist Rant; Kamala Wins NAACP Chairman's Award; Kamala's Word Of The Day, Do And Done; SAG Awards Show Experiences Technical Difficulties; Jane Fonda's Real Lifetime Achievement, Being Woke; Connecticut 's Cannibal Killer Getting Released; Democrats' Erasure Of Women; New Woke Democrat Terminology, Inseminated Person; Notice To Bureaucrats: You're Not Entitled; Left Finds New Hate Crime: Going To Work; The New Face Of The Failing Democrat Resistance
## 1949 Patel Pledges Not To Seek Retribution As FBI Director; Gabbard Grilled Over Views On FISA, Snowden; RFK, Jr. Fights For Confirmation As Votes Loom; Interview With Rep. Jim Jordan (R- OH ); Committees Set To Vote Soon On Trump Nominees; Interview With Rep. Jim Himes (D- CT ); Dual Plane Crashes Shake Confidence In Air Travel; DC Crash Marks Worst US Air Disaster In 15 Years; Interview With Sen. Roger Wicker (R- MS ); Trump Pushes Iron Dome Missile Shield In The US ; Trump Looks To Restore Military Dominance; Trump Offers Buyouts To Dissenting Federal Workers; Trump Takes Aim At Bloated Federal Budget; The Limits Of Presidential Powers to Shrink Government; Interview With Rep. Steve Scalise (R- LA ); Slim House GOP Majority Faces High-Stakes Agenda; Tariffs On Canada, Mexico and China Take Effect; Interview With Rep. Maria Elvira Salazar (R- FL ); Secretary Rubio Meets With Latin American Leaders; SecDef Touts Gitmo Plan To House Criminal Migrants; Criminal Migrant Deportations Underway; Trump Pushes To Retake The Panama Canal; Trump DOJ Drops Case Against Jeff Fortenberry
## 1950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Patrick's Politics: The worst controversies of Trump's second term so far | The Daily Campus Centered Divider Line
## 1951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Pay of Barclays CEO more than doubles to £10.5m as profits soar
## 1952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Peace Plans for Ukraine ; U.S. , Russia to Start Ukraine Peace Talks Soon; Rubio Discussing Middle East Tensions; Protests in Tel Aviv to Release All Hostages; Israel Receives U.S. Heavy Bombs; U.S. Severe Weather; Sweeping Federal Layoffs; Hampton Dellinger Allowed to Temporarily Keep Job; Pope Francis Fights Respiratory Infection; Israel Likely To Strike Iranian Nuclear Targets This Year; "Jane Doe" Drops Rape Case Against Diddy, Jay-Z. Aired 4-5a ET
## 1953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Penn State Students for Justice in Palestine react to Executive Order 13899
## 1954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pentagon Agency Won't Observe Black History Month, Holocaust Remembrance
## 1955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pentagon Releases Digital Content Refresh Memorandum
## 1956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pentagon Reportedly Halting Mass Layoffs Of Probationary Employees Pending Review
## 1957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pentagon Revokes Security Detail Of Trump Critic Mark Milley, Orders Probe Into His Conduct
## 1958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pentagon agency pauses celebrations for Martin Luther King Jr. Day, Black History Month and more
## 1959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pentagon expected to fire over 5,000 civilian staffers next week
## 1960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pentagon intelligence agency pauses observances for Martin Luther King Jr. Day, Juneteenth
## 1961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pentagon is pulled into politics as leader who promised to prioritize 'warrior culture' takes charge
## 1962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pentagon orders new purge of social media sites to dump diversity, inclusion mentions by March 5
## 1963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pentagon schools suspend library books for ‘compliance review’ under Trump orders
## 1964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pentagon scraps all cultural celebrations Hegseth: Efforts to divide force 'erode camaraderie'
## 1965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pentagon's Liberal Agenda Is Already Taking A Massive Beating
## 1966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           People will die when US stops international aid, warn Irish charities
## 1967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Pete Buttigieg responds to Trump's 'despicable' comments blaming HIM and DEI for DC plane crash
## 1968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pete Hegseth Confirmation Vote Could Happen In Hours; Sen. Tim Kaine, (D- VA ), Is Interviewed About Pete Hegseth Confirmation, RFK Jr.; The Impact Of Trump's First Days Back In Office; Trump Floats The Idea Of Getting Rid Of FEMA; Big Changes In Americans' Views On How Much To Drink; Giant Pandas Debut At D.C. 's National Zoo . Aired 5-6p ET
## 1969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pete Hegseth Confirmed As Defense Secretary; Sen. Marsha Blackburn Calls For Release Of Epstein Files; Mitch McConnell, Susan Collins And Lisa Murkowski Oppose Pete Hegseth; Media Continues Criticism Of Pete Hegseth; Rep. Kevin Kiley (R- CA ) Is Interviewed About The Need For Common Sense In California 's Policies; Trump Visits Los Angeles To Assess Wildfires Aftermath; Bass, Trump Exchange Words At Roundtable; Veterans Bring Show Of Force Supporting Hegseth
## 1970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pete Hegseth FIRES top female military staffer as military gets the DOGE treatment
## 1971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Pete Hegseth Issues Warning to Federal Workers Who Fail To 'Comply'
## 1972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Pete Hegseth Set to Fire Admirals and Generals?; Interview With Rep. Robert Garcia (D- CA ); Senate Set to Vote on Kash Patel; Interview With Sen. Jacky Rosen (D- NV ); U.S. - Ukraine Relationship Falling Apart?. Aired 11-11:30a ET
## 1973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pete Hegseth Sworn In As Defense Secretary After JD Vance Cast Tie-Breaking Vote Here s What To Know
## 1974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pete Hegseth Sworn In As Secretary Of Defense After Vance Casts Tie Breaking Vote; Sen. Grassley, Long-Time Proponent Of Inspectors General, Calls On Trump To Explain Firings Of Watchdogs; Schumer Slams Trump For "Chilling Purge" Of Several Inspectors General; Trump To Set To Meet With Supporters Today In Las Vegas ; 4 Israeli Soldiers Freed In Latest Round Of Hamas Hostage Releases; Advocate Groups Ordered To Stop Aiding Refugees Who Have Already Arrived In U.S. ; "Operation Panda" Airs Sunday At 8PM ET. Aired 12-1p ET
## 1975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pete Hegseth is booed and heckled by military families in Germany upset over anti-DEI push
## 1976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pete Hegseth moves a step closer to being Trump's Defense secretary, despite allegations
## 1977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Pete Hegseth narrowly confirmed as Trump’s defence secretary
## 1978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pete Hegseth orders DOGE-inspired $50 billion in Pentagon cuts
## 1979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pete Hegseth reveals his top priority on his first day as Donald Trump's Defense Secretary
## 1980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pete Hegseth says Trump is 'exactly right' to blame DEI for DC plane crash and details the key to the probe
## 1981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pete Hegseth says Trump is 'right' to blame DEI for DC plane crash
## 1982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Peter Thiel’s cant and retribution
## 1983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Philadelphia Eagles' Reported White House Snub Sparks MAGA Anger
## 1984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Philadelphia Mayor Says All 6 Plane Passengers Died in Crash
## 1985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Philadelphia plane crash latest: No survivors on board medical jet that was carrying six people, including a pediatric patient
## 1986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Physicians for Reproductive Health: Preparing for a Second Trump-Led Administration: The 2025 Presidential Inauguration
## 1987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Picklers serve a new club at Grinnell - The Scarlet & Black
## 1988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pingpong of executive orders is bad for US
## 1989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pissed Me Off': Whoopi Goldberg Stares Into Camera To Lecture Trump Press Sec On How 'Wokeness' Got Her A Job
## 1990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pitt unions react to federal diversity, equity and inclusion rollbacks - The Pitt News
## 1991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Plane Crash Live: 14 Still Missing As Black Boxes Recovered After Washington DC Midair Collision
## 1992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Plane crash near Washington DC : what we know so far
## 1993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Playlist: Songs for changing the world and protesting
## 1994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Police told not to say 'blacklist' over race fears Police race guidance 'utterly mad', says first black PCC
## 1995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Policing chief drops diversity guide telling officers not to say ‘black sheep’
## 1996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Political experts clash on DEI's purpose, effectiveness - The Dartmouth
## 1997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Political guru James Carville's surprising advice for Democrats as minority party flails in attempt to combat Trump and Elon Musk
## 1998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Political guru predicts Trump White House will COLLAPSE within 30 days
## 1999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Political polarization leads Kendrick Lamar halftime critiques
## 2000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pope Francis Attacked by MAGA
## 2001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Pound plunges as Bank of England cuts rates – and hints at more to come
## 2002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Power of the purse Consumers are being encouraged to boycott retailers over rollback of DEI efforts
## 2003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Power, Policy, and Pushback: A Look at President Trump's First Day in Office - The Bates Student
## 2004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              President Ambar Addresses Executive Orders, Attacks on DEI at Community Forum - The Oberlin Review
## 2005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           President Biden Issues Preemptive Pardons for Dr. Anthony Fauci and General Mark Milley; Trump-Vance Transition Adviser Jason Millers Says President-Elect Trump Prepared to Sign Executive Orders regarding Immigration and Energy Immediately Upon Taking Office. Aired 8-8:30a ET.
## 2006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  President Chilton Delivers State of the University Address - The New Hampshire
## 2007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             President Donald Trump signed an executive order to end federally funded diversity, equity and inclusion programs on Jan. 20, potentially affecting students' sense of belonging at the University of Rhode Island.
## 2008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 President En Route To Liberty Ball; Trump Attends Commander-In-Chief Ball; Trump Sworn In And Signs Executive Orders; Trump Speaks At Second Ball Of The Night; Previewing Trump Effect On Israel And Anti-Semitism; Trump Vows To End Wokeness In The Military
## 2009                                                                                                                                                                                                                                                                                                                                                                                                                                   President Fires Chairman Of The Joint Chiefs, General CQ Brown; Pentagon Announces Plans To Fire 5-8 Percent Of Civilian Workforce; Former Employees, Lawmakers Express Concerns Over CDC Layoffs; Voters Express Outrage At Town Halls Over Trump Cuts; U.S. Proposes U.N. Resolution Marking Anniversary Of War In Ukraine ; Zelenskyy Hopes For "Fair" Minerals Agreement With U.S. ; Final Living Hostages Released Under First Phase Of Gaza Ceasefire. Final Living Hostages Released Under First Phase Of Gaza Ceasefire; Patrice Willoughby, NAACP Policy Chief, Discusses Trump, Black History And DEI; Woman Accused Of Drugging, Robbing Older Men In Deadly Scheme. Aired 1-2p ET
## 2010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              President Trump Announces Tariffs on Canada, Mexico , and China; Stocks Markets Potentially Down Upon News of U.S. Tariffs on Trading Partners; Workers at U.S. Agency for International Development Receive Email to Not Show Up to Work as Trump Administration Targets Agency. Aired 8-8:30a ET
## 2011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           President Trump Blames DEI For Midair Collision. Aired 11:30a- 12p ET
## 2012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            President Trump Calls Zelenskyy A Dictator, Issues A New Warning; Elon Musk's DOGE Slashes Into A Program That Got Lawmakers On Both Sides Of The Aisle Upset; New York City Mayor Eric Adams Speaks Hours After Appearing In Court. Aired 10-11p ET
## 2013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         President Trump Defends Pardoning Violent January 6 Rioters; Evacuation Warning Just Issued As New Fire Erupts In L.A.; Trump Brushes Off Concerns Over China's Access To TikTok Data. Aired 5-5:30a ET
## 2014                                                                                                                                                                                                                                                                           President Trump Dismisses Joint Chiefs Chairman General Charles Q. Brown; Pentagon Announces Plans to Fire Tens of Thousands of Employees in Coming Week; Constituents Criticize Congressmembers at Town Halls; U.S. to Propose Resolution to U.N. that Does Not Condemn Russia as Aggressor in Conflict with Ukraine ; Measles Outbreak Grows to 90 in Texas ; Laid Off Workers at Centers for Disease Control and Prevention Complain about being Misclassified in Recent Firings; FBI Accuses Woman of Drugging and Kidnapping Elderly Men She Met on Dating Apps; New Los Angeles District Attorney Likely to Deny Motion by Menendez Brothers for Retrial; Vatican States Pope Francis Suffered Respiratory Crisis; Journalist who Covered Pan Am Plane Explosion over Lockerbie, Scotland, in 1988 Interviewed on His Experience. Aired 2-3p ET
## 2015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     President Trump Gets to Work; Interview With Dave Portnoy; Blizzard Warning Along Gulf Coast; President Trump Meets With Republican Leaders
## 2016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         President Trump Gives Media Full Access to His Leadership Style But Throws Punches Whenever He Sees Fit; Critics of President Trump are Uncomfortable for The Remarks He Made About President Zelenskyy While Pushing Vladimir Putin's Talking Points; Four Deputy Mayors Resigned After Trump's Justice Department Drops Eric Adams Case; The Media Hammered President Trump for Blaming Ukraine Over the War That Russia Started; Jason Miller Defends President Trump's Policies on Cutting Unnecessary Expenses of the Government, The Unique Language the President Uses Daily, Among Other Things
## 2017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            President Trump Gives Wide-Ranging Speech At CPAC; GOP Lawmakers Questioned, Booed At Town Hall Over Trump And DOGE; Fired: Chairman Of Joint Chiefs, Navy Chief, Air Force Vice Chief; Trump Admin Plans To Fire 5 Percent to 8 Percent Of Military's Civilian Workforce; Musk Asks Fed Employees To Give Proof Of Work Or Be Dismissed; GOP Sen. Tillis: "Vladimir Putin Is A Liar" and "Murderer"; Pope In "Critical Condition" Following Respiratory Crisis; Crowds Gather To Support Murder Suspect Mangione At Court Appearance. Aired 5-6p ET
## 2018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        President Trump Issues Executive Order on Ending Radical, Wasteful Government DEI Programs, Preferencing
## 2019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               President Trump Issues Memo on Keeping Americans Safe in Aviation
## 2020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        President Trump Jokes With Members Of The Press; A Deal With Ukraine Has Been Negotiated
## 2021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 President Trump Meets With Japanese Prime Minister; Super Bowl Set to Kick Off Sunday; Interview With Gov. Jeff Landry (R- LA )
## 2022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          President Trump Orders all Federal Diversity, Equity, and Inclusion Staff Placed on Leave; President Trump Criticizes Bishop for Statements During National Prayer Service on Inauguration; New Allegations against Pete Hegseth regarding Treatment of His Second Wife Surface; Pushback on Trump 's January 6 Pardons; Trump Administration Dismantles Federal DEI Offices, Puts Staffers on Leave. Aired 8-8:30a ET
## 2023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        President Trump Returns to Office, Leading with a Historic First Week | RMU Sentry Media
## 2024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              President Trump Revokes Biden's Security Clearance
## 2025                                                                                                                                                                                                                                                                                                                                                                                                                                                           President Trump Says The US Government Will Only Recognize Two Genders; The Former Vice President Established An LLC Called Pioneer49...; Spirit Airlines Is Cracking Down On 'Inadequate' Clothing On Its Flights; Men Have Grown Twice As Much As Women Over Past Century, Study Shows; Reporters Claim Politico Killed Negative Biden Stories; Trump Signs Order To Declassify Files On JFK, RFK And MLK Assassinations; Reporter Claims His Stories On Hunter Biden's Laptop And Tax Problem Killed by Editor; Department Of Government Efficiency Reviewing Costs Of Promotional Items Used To Advertise Federal Agencies; Guests Answer Questions From Viewers.
## 2026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   President Trump Signs More Executive Actions; Trump Completes Historic Comeback; Trump Electrifies Washington
## 2027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            President Trump Speaks at House GOP Conference Retreat in Florida ; China Announces New Artificial Intelligence Program which Sends U.S. Tech Stocks Plummeting; Newly Confirmed Defense Secretary Pete Hegseth Announces Review of U.S. Military's Transgender Policy; Colombian President Agrees to Repatriate Immigrants from U.S. After President Trump Threatens Economic Sanctions; President Donald Trump Speaks To House GOP Members; Trump: Tax Cuts For United States -Made Products; Trump: Auto Sector "Being Wiped Out"
## 2028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       President Trump Tackles Immigration Reform; Federal Employees Told To Report Efforts To Hide DEI Work; New York Jets Hire Aaron Glenn As New Head Coach. Aired 5:30-6a ET
## 2029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 President Trump Takes Questions in Oval Office; Trump and Putin Speak; Interview With Rep. Eric Burlison (R- MO ); Interview With Rep. William Timmons (R- SC )
## 2030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          President Trump and DEI: Comments and changes made by the President lead to a DEI debate - The Seahawk
## 2031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              President Trump celebrates Black History Month after abolishing diversity programs
## 2032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           President Trump orders end to government DEI programs
## 2033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      President Trump to attend Super Bowl 59, despite long and complicated history with the NFL
## 2034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              President Trump's Accomplishments During His First Month In Office
## 2035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   President Trump's Allies Look To Clarify His Ideas For Gaza; Attorney General Pam Bondi Quickly Aligns DOJ With Trump Agenda; Bird Flu Cases Lead To Higher Egg Prices In U.S. ; Panama Denies U.S. State Department's Claim That U.S. Government Ships Can Use The Panama Canal For Free; FCC Releases Kamala Harris' "60 Minutes" Interview Transcript; Google Removing Hiring Goals Targeting Diversity. Aired 5- 5:30a ET
## 2036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      President Trump's America First Priorities
## 2037                                                                                                                                                                                                                                                                                                                                                                              President Trump's New Tariffs Go Into Effect Tuesday; Canada Announces "Far-Reaching" Retaliatory Tariffs On American Goods; China Says It Will File Complaint With WTO Over Tariffs; Mexican President Announces Retaliatory Tariffs On U.S. ; 7 Dead, Including One On The Ground, After Medevac Jet Crashes In Philadelphia; NTSB Scrambles To Retain Employees After Trump's Resignation Offer; NTSB Data: Pilots Tried To Pull Passenger Jet's Nose Up Within Seconds Of Deadly D.C. Helicopter Collision. Trump Allies Push to Get RFK Jr. and Gabbard Confirmed; Health Information Related to Gender and Equity Removed from CDC Website; Grammy Awards to Benefit Wildfire Victims; Punxsutawney Phil Makes His Prediction. Aired 7-8a ET
## 2038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 President Trump's Washington Shake-Up Continues
## 2039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        President Trump's recall of DEI programs reinforces the white patriarchy
## 2040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     President Trump, Elon Musk Appears in "The Sean Hannity Show" (Part 2 of 2)
## 2041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    President Trump: Initial Rescissions of Harmful Executive Orders and Actions
## 2042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         President issues warning over DEI Corporate America already taking heed
## 2043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               President punishes public schools
## 2044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Presidential Executive Actions For Republican Agenda; Dozens Of Executive Orders Expected To Be Signed; Next Steps For Cabinet Nominees; Newly Sworn-In President Donald Trump Gives Speech to Supporters inside Capital One Arena; President Trump Signs Executive Orders before Crowd in Capital One Arena; Former President Biden Issues Pardons for His Family Members on President Trump 's Inauguration Day. U.S. Senate Passes Laken Riley Act.
## 2045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Presidents Day protests across US condemn Trump, Musk
## 2046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pressley's Statement on Trump's Executive Actions on Diversity, Equity and Inclusion
## 2047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Pressure mounts on Costco over DEI policies: 'Why would they Bud Light themselves?'
## 2048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pride Toronto loses corporate funding as Trump’s DEI purge has chilling effect
## 2049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Prince Harry Settles Legal Claims Against Tabloid Publisher; Musk Bashes $500 Billion AI Project Announced by Trump ; Trump Attacks Birthright Citizenship; Trump Targets Diversity, Equity and Inclusion Protections. Aired 4:30-5a ET
## 2050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Princeton's administration of justice is Trumpian
## 2051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Professor fuels conspiracy theories after blaming Trump for future plane crashes just HOURS before DC tragedy
## 2052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Progressive Remain Unprepared for Trump - The Oberlin Review
## 2053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Project 2025 thinktank has backed group listing ‘woke’ federal workers
## 2054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Project 2025 will transform California 's educational landscape, for teachers and students
## 2055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Promises Made, Promises Kept': CNN's Abby Phillip Credits Trump With Presenting Good Optics On Border
## 2056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Promises Made, Promises Kept: President Trump Is Tirelessly Implementing His Agenda
## 2057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Promises Made, Promises Kept; Trump Brings Sweeping Change In First Days; Trump Checks Off Major Campaign Promises; Trump Takes Immediate Action On Immigration; Chicago Mayor Vows To Protect Illegal Immigrants; Hughes Fire Explodes To 9000-Plus Acres North Of L.A.; Domestic Workers Continue Search For The Employment
## 2058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Proof of prejudice Keon West sets out the data to explore and explain the persistence of racism in society today. By Subhadra Das
## 2059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Protest against Project 2025 and Trump's policies brings people together at California Capitol - The State Hornet
## 2060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Protesters at Republican Event Told 'Your Voice Is Meaningless'
## 2061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Protesters raise objections to Trump Administration at Cabell County Courthouse - The Parthenon
## 2062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Protesters rally against Elon Musk and DOGE, urge younger generations take action
## 2063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Protestors demand end to 'executive overreach,' defend human rights
## 2064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Protestors gather at Wisconsin State Capitol for 'Not My President's Day' demonstration - The Badger Herald
## 2065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Protests on campus: Students gather round the bell for a cause - The Tack Online
## 2066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Public Citizen: Trump Administration Strips FDA DEI Health Initiatives, Harming Clinical Research and Patient Care
## 2067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Public health group alarmed by online 'DEI Watchlist' targeting federal staff
## 2068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Puri | Good riddance to diversity, equity and inclusion Login or create an account
## 2069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pushback on Trump's January 6 Pardons; Trump Administration Dismantles Federal DEI Offices, Puts Staffers on Leave. Aired: 8-8:30a ET
## 2070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Q&A with the President - Sonoma State Star
## 2071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Q&A: President Jonathan Levin addresses Trump's executive orders, Bridge peer counseling Login or create an account
## 2072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Queer community at 5Cs respond to Trump's anti-trans executive orders
## 2073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               R.I. A.G. Neronha : Joint Statement From 13 State Attorneys General - President Trump is Misleading the American People on Purpose of Diversity, Equity, Inclusion, and Accessibility Initiatives
## 2074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           R.I. A.G. Neronha Issues Multistate Guidance for Businesses on Diversity, Equity, Inclusion and Accessibility Employment Initiatives in the Workplace
## 2075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             RADICAL INDOCTRINATION HAS NO PLACE IN K-12 SCHOOLS
## 2076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RANKING MEMBER HUFFMAN SOUNDS THE ALARM ON TRUMP'S ILLEGAL MIDNIGHT PURGE OF FEDERAL WATCHDOGS
## 2077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           RANKING MEMBER MARKEY CONDEMNS TRUMP ADMINISTRATION'S ATTACK ON POLICIES TO COMBAT HISTORIC DISCRIMINATION, DEMANDS TRANSPARENCY FOR SMALL BUSINESSES
## 2078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        RANKING MEMBER RAMIREZ DEMANDS ANSWERS ON EFFECTS OF HIRING FREEZE, MASS TERMINATIONS, ACROSS-THE-BOARD CUTS ON VETERANS
## 2079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      RANKING MEMBER RASKIN'S OPENING STATEMENT AT HEARING ON THE FIRST AMENDMENT AND CENSORSHIP
## 2080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RANKING MEMBER RASKIN'S STATEMENT ON DONALD TRUMP'S BASELESS SCAPEGOATING AFTER TRAGIC PLANE CRASH
## 2081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         RANKING MEMBERS SHAHEEN, SCHATZ, MEEKS, FRANKEL: WE CANNOT AFFORD TO TAKE A TIMEOUT FROM USAID PROGRAMS
## 2082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        REASSESSING INCLUSIVE HIRING: ACCESS OVER IDENTITY IN TALENT RECRUITMENT
## 2083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             RECAP: REALITY CHECK OF PRESIDENT TRUMP'S WEEK 1 EXECUTIVE ORDERS, UNSAFE ACTIONS, AND PATH FORWARD
## 2084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  REGULATORY ALERT: PRESIDENT TRUMP TAKES SERIES OF EXECUTIVE ACTIONS ON DAY ONE
## 2085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         REGULATORY ALERT: WHITE HOUSE ISSUES ORDER TEMPORARILY PAUSING FEDERAL FINANCIAL ASSISTANCE; IMPACT ON AIRPORTS UNCLEAR
## 2086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           REMARKS BY PRESIDENT TRUMP AT EXECUTIVE ORDER SIGNING
## 2087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              REP LIEU, RANKING MEMBER MEEKS AND FOREIGN AFFAIRS DEMS URGE SECRETARY RUBIO TO PROTECT STATE DEPARTMENT WORKFORCE
## 2088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     REP. COURTNEY ON NBC CT : ELON MUSK, FUNDING FREEZE, TOP COAST GUARD FIRING
## 2089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  REP. FRANKEL JOINS CONGRESSIONAL COLLEAGUES DEMANDING IMMEDIATE ACTION TO ADDRESS TRUMP ADMINISTRATION EFFORTS TO UNDERMINE AMERICAN DIPLOMACY
## 2090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          REP. GREGORY W. MEEKS STATEMENT ON BLACK HISTORY MONTH
## 2091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         REP. KELLY: 'TRUMP'S ACTIONS AND WORDS ARE DANGEROUS, RACIST, IGNORANT'
## 2092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            REP. OGLES PROPOSES AMENDING THE 22ND AMENDMENT TO ALLOW TRUMP TO SERVE A THIRD TERM
## 2093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 REP. OGLES' STATEMENT ON TRAGIC DCA PLANE CRASH
## 2094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     REP. ROGERS APPLAUDS TRUMP ACTION TO RESTORE FOCUS OF MILITARY ON LETHALITY
## 2095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             REP. ROY, GREENE INTRODUCE LEGISLATION TO PERMANENTLY ABOLISH USAID
## 2096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               REP. SEWELL STATEMENT ON REINSTATEMENT OF TUSKEGEE AIRMEN IN AIR FORCE CURRICULUM
## 2097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      REP. SMITH STATEMENT ON TRUMP INAUGURATION
## 2098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              REP. SMITH STATEMENT ON TRUMP'S APPALLING RESPONSE TO AIR DISASTER
## 2099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       REV. SHARPTON CLARIFIES NAN-AUTHORIZED BOYCOTT TO BE ANNOUNCED IN APRIL AT NAN CONVENTION
## 2100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            REV. SHARPTON SLAMS TRUMP FOR BLAMING DEI, BIDEN, AND OBAMA FOR TRAGIC PLANE CRASH IN WASHINGTON, DC
## 2101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              REVEALED: Elon Musk and DOGE's final goal as it launches blitzkrieg through the federal government
## 2102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      RICHARD LITTLEJOHN: Trump has shocked the world by doing exactly what he promised. If only evasive, petulant Starmer would put Britain first for once, too
## 2103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RISCH, SCHMITT INTRODUCE THE DISMANTLE DEI ACT
## 2104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ROLLING BACK DEI REWARDS BLACK AMERICANS INSTEAD OF CRIPPLING THEM
## 2105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ROOKE: Hidden Deep Inside New Polling Is A Major Warning For Democrats
## 2106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ROOKE: Nation's Report Card Just Came Out Revealing Shocking Truth Parents Need To Know
## 2107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ROOKE: The Nerds Are Unknowingly Creating Perfect Storm Targeting Americans
## 2108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ROOKE: Trump Struck A Killing Blow To Heart Of Democrat Deep State Machine
## 2109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        RUNESTAD DEMANDS WHITMER PUT AN END TO WASTEFUL DEI SPENDING IN MICHIGAN
## 2110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        RUSSEL VOUGHT, PROJECT 2025 CO-AUTHOR, CONFIRMED AS FEDERAL BUDGET CHIEF
## 2111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Race and place can contribute to shorter lives, research suggests
## 2112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Rachel Maddow and other anchors lambast MSNBC's decision to cancel Joy Reid and Alex Wagner's shows
## 2113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Raging Morning Joe star takes aim at Democrats as liberal circular firing squad escalates
## 2114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Rainbows at Goucher
## 2115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ranked: Subway stations near NYU - Washington Square News
## 2116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ranking Member Maxine Waters to Chair Powell: "You Must Stand Firm in Defending the Fed's Independence, Reject Any Attempt by Elon Musk and His DOGE Minions to Gain Access to the Fed, Its Systems and Data."
## 2117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ranking Member Meeks, HFAC Dems Call on Secretary Rubio to Reverse Purge of State & USAID Workforce, U.S. Foreign Assistance and DEIA Initiatives
## 2118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ranking Member Takano's Opening Statement at Legislative Presentation of The American Legion & Multi VSOs
## 2119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ranking Members Larsen, Cohen Statements on Trump's Dangerous Freeze of Air Traffic Control Hiring
## 2120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Reactions: Which alum would you nominate for the Woodrow Wilson award?
## 2121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Recap of Trump's controversial first month of executive action - IWU Argus
## 2122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Recent Polls on Trump's Second Term; Rep. Katherine Clark (D- MA ) is interviewed about Deadline Government Workers; Associated Press Sues Trump; Trump's Vision of Energy Independence. Aired 8:30-9a ET
## 2123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Recognition of Black History Month is Essential - The Villanovan
## 2124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Recognizing and celebrating Black History Month is as important as ever, despite the erasure of many cultural observances
## 2125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Recovery And Investigation Underway In Deadly Aircraft Collision Over D.C. ; President Trump Talks Deadly Plane Crash, Tariffs; White House Still Claiming DEI Policies May Have Played Part In D.C. Plane Crash; NTSB Officials Give Update On Deadly D.C. Plane Crash. Aired 5-6p ET
## 2126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Recovery Crews Search Icy Waters For 67, All Presumed Dead; Inside Flight Simulator; Figure Skating Victims. Aired 7-8p ET
## 2127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Recovery Effort Under Way In Deadly In-flight Collision; Without Evidence, Trump Blames DEI For Deadly Collision; Source Says One Air Traffic Controller Was Working Two Different Tower Positions At Time Of Collision. Aired 5-6:00p ET
## 2128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Recovery Effort Unfolds For 67 Victims of Passenger Jet-Chopper Crash; Defense Secretary: "Mistake Was Made" During Routine Army Training Flight; Trump Lashes Out at DEI, Democrats Amid Crash Recovery Effort. Aired 2-2:30p ET
## 2129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Recovery Underway After Deadly Midair Collision; No Survivors in Midair Collision; Trump Blames Democrats and DEI for Collision; Israel - Hamas' Third Hostage-Prisoner Exchange; Figure Skaters Killed in Midair Crash; Three Confirmation Hearings in Capitol Hill. Aired 6-7p ET
## 2130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Recovery efforts continued in Washington after plane crash – as it happened
## 2131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Reddit Bans Liberal Community After Death Threats Pour In Against DOGE Workers
## 2132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Redlining's lingering public health legacy
## 2133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Reeves may use stealth taxes to fund defence, City warns
## 2134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Regent's Decision to Remove DEI Language Faces Pushback
## 2135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Regents working with universities to end federal DEI measures - The Daily Iowan
## 2136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Remaining Cautious, Fed Pauses Rate Cuts
## 2137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Rep. Adams' Statement on Trump Administration's "End DEI" Portal
## 2138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Rep. Ansari Efforts Keep Prisma Community Care Open
## 2139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Rep. Cisneros Condemns Elon Musk's Illegal Access to Government Agency Data
## 2140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Rep. Cisneros Statement on President Placing All Federal DEI Employees on Leave
## 2141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Rep. Cloud and Sen. Schmitt Introduce Bill to Codify Into Law Trump's Agenda Ending DEI in Federal Government
## 2142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Rep. Comer Applauds President Trump's Executive Orders to Bring Accountability, Reform to the Federal Workforce
## 2143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Rep. Cory Mills Introduces the DEI to DIE Act
## 2144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Rep. Estes Publishes Op-ed Applauding Efforts to Excise Wasteful Federal Spending
## 2145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Rep. Frederica Wilson's Statement on President Trump's Comments Regarding the Aircraft Crash Over the Potomac River
## 2146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Rep. Garamendi Statement on Trump's Reaction to DCA Aviation Crash
## 2147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Rep. Jesus G. "Chuy" Garcia (D- IL ) Is Interviewed About Midair Collision Investigation Intensifying; Deadly Air Crash Devastates Figure Skating Community. Aired 11-11:30a ET
## 2148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Rep. Kennedy to Federal Employees in WNY: "Buyout Beware"
## 2149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Rep. Leigh Finke (D- MN ), Is Interviewed About Trump Expected To Sign Exec. Order Banning Transgender Service Members; Surprise Chinese A.I. Advancement Shocks Nasdaq, Down Almost 600 Pts; Rep. Carlos Gimenez (R- FL ), Is Interviewed About Colombia Sending Govt. Planes To Pick Up Migrants In The U.S. Aired 11-11:30a ET
## 2150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Rep. Mark Harris Leads NC Lawmakers in Demanding a "complete and Total Overhaul" of FEMA
## 2151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Rep. Melanie Stansbury (D- NM ) is Interviewed about DOGE; Senators Vote on Hegseth Today; Michael Smerconish is Interviewed about Trump's First Week. Aired 6:30-7a ET
## 2152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Rep. Nancy Mace trolled for being a 'DEI admission' after bragging about her military academy graduation
## 2153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Rep. Olszewski, HFAC Dems Call on Secretary Rubio to Reverse Purge of State & USAID Workforce, U.S. Foreign Assistance and DEIA Initiatives
## 2154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Rep. Omar's Statement on Trump Revoking the Equal Employment Opportunity Executive Order of 1965 and Plan to Dismiss DEI Federal Employees
## 2155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Rep. Owens Joins Bill to Eliminate DEI
## 2156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Rep. Roy Re-Introduces Legislation Aimed at Eliminating DEI Positions at the Department of Defense
## 2157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Rep. Ryan Zinke (R- MT ) Speaks With CNN Following Protests Outside Office; CEO Warns Aluminum Tariffs Could Cost 100,000 American Jobs; Sen. Tim Kaine (D- VA ) On Senate Vote To End President Trump's National Energy Emergency. Aired 7:30-8a ET
## 2158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Rep. Sewell Statement on Removal of Tuskegee Airmen from Air Force Curriculum
## 2159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Rep. Smith Issues Statement on Trump Inauguration
## 2160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Rep. Sylvester Turner to Host Press Conference on President Trump's Recent Executive Orders
## 2161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Rep. Takano Joins CAPAC Leadership in Condemning President Trump's Attempt to Blame DEI Policies on Aviation Tragedy
## 2162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Rep. Tiffany Reintroduces Bill to Ban DEI in the Federal Government
## 2163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Report: Trump fires Coast Guard leader over border and DEI
## 2164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Reps. Hirono, Tokuda Condemn Trump's Federal Funding Freeze
## 2165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Republican Sues Starbucks Over DEI Policies
## 2166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Republican Warns People To Go 'Slower' on DEI Theories in DC Plane Crash
## 2167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Republican attorneys general pressure Costco to drop DEI policies
## 2168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Republican senator tells DOGE to slash two sides off the Pentagon and make it a 'Trigon' to save money
## 2169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Republican-led states call on Costco to drop DEI
## 2170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Republicans Are Floating Plans To Raise the Endowment Tax. Here's What You Need To Know.
## 2171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Republicans Buck Trump Over Whether DEI Was Responsible For DC Plane Crash
## 2172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Republicans labeled BlackRock as 'woke.' Here's a brief history of how the firm has tried to shed that description.
## 2173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Republicans skeptical of major gains on Trump orders in shutdown fight
## 2174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Research arm of Education Department sees cuts after DOGE review
## 2175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Researchers, Educators Rally in Downtown Boston To Protest Trump's Research Funding Cuts
## 2176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Researching Trump’s statements about DEI, past administrations after DC crash | In context
## 2177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Revealed: how a shadowy group of far-right donors is funding federal employee watchlists
## 2178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Reverse discrimination' case comes to Supreme Court as DEI is under siege
## 2179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Review: 'I Am Because We Are' is a mesmerizing celebration of womanhood and identity - Washington Square News
## 2180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Review: 'Mo' season 2 is a comedic comfort in Trump's America - Washington Square News
## 2181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Review: Drake and PARTYNEXTDOOR reunite on '$ome $exy $ongs 4 U' - Washington Square News
## 2182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Review: Ethel Cain is back, and you should be afraid - Washington Square News
## 2183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Review: Exhibition at La Maison Française challenges the definition of art - Washington Square News
## 2184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Reviewing Trump's Executive Orders - Nubian Message
## 2185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Revolution is in the air as Trump arrives with a bang – but can he follow through?
## 2186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ridiculous' to believe calls help Chiefs - Goodell
## 2187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Right-Leaning Activist Groups Reportedly Putting Heat On Big Banks To Ditch DEI Policies
## 2188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Right-Wing Commentator Named FBI Deputy Director; Pope In Critical Condition; Health Agencies Reel From Thousands Of Job Cuts While Critical Research Grants Remain On Hold. Aired 7:30-8a ET
## 2189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Right-wing priest loses license after 'salute' at pro-life summit
## 2190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Riley Gaines stunned as trans activist claims Paralympians should compete against Olympians in gender neutral competition
## 2191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Rip up diversity rules ‘that will only create jobs in HR’, bosses demand
## 2192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Roberta Flack Dies; Does DOGE Risk Exposing National Security Secrets?; Interview With Rep. Pete Sessions (R- TX ). Aired 11:30a-12p ET
## 2193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Roger Goodell Goes Against Donald Trump, Announces NFL Will Continue DEI Support
## 2194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Roger Goodell Speaks Out Against Chiefs Referee Controversies
## 2195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Roger Goodell brushes aside 'ridiculous theory' that NFL officiating favors Chiefs
## 2196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Rollback on diversity policies ‘risks undoing decades of progress’, says Co-op
## 2197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ron DeSantis Launches DOGE Task Force for Florida
## 2198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Roseanne Barr digs at Trump's 'Special Envoy' stars... after claiming she was frozen out by MAGA inner circle
## 2199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Rubio accuses South Africa of ‘anti-Americanism’ and snubs G20 meeting
## 2200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Rubio exempting ‘life-saving humanitarian assistance’ from foreign aid restrictions
## 2201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Rubio skipping G20 summit amid tensions with South Africa
## 2202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Rubio to shun South African G20 meeting over drive for 'equality' Boycott
## 2203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Rubio will skip a G20 meeting after calling host South Africa 's policies anti- American
## 2204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          S Africa pledges to pursue Israel over Gaza International Court of Justice Foreign minister insists on genocide case continuing despite Trump pressure
## 2205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SACUA discusses challenges in higher education and University policy
## 2206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           SALSC plans "Fruit with Faculty" event to facilitate discussion - The Scarlet & Black
## 2207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SBA ADMINISTRATOR LOEFFLER ISSUES MEMO ON DAY ONE PRIORITIES
## 2208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SCOTT JENNINGS: America 's 'Worst Pundit' predicts Trump will collapse within 30 days... here's the glaring truth that utterly destroys his case
## 2209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       SEC Chair Uyeda: Remarks at the Florida Bar's 41st Annual Federal Securities Institute and M&A Conference
## 2210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SECRETARY ROLLINS DELIVERS OPENING REMARKS AT USDA HEADQUARTERS
## 2211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SECRETARY ROLLINS TAKES BOLD ACTION ON DAY ONE
## 2212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       SEN. RICK SCOTT LEADS LEGISLATION TO RESTORE MERIT-BASED HIRING IN THE FEDERAL GOVERNMENT
## 2213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             SEN. STEVE DAINES: UNDER PRESIDENT TRUMP, IT'S A NEW DAY IN AMERICA
## 2214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SENATE QUESTIONS MCMAHON ON THE FUTURE OF THE EDUCATION DEPARTMENT, DEI, AND STUDENT AID IN CONFIRMATION HEARING
## 2215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           SENATE SHOULD REJECT THE NOMINATION OF PETE HEGSETH FOR DEFENSE CHIEF
## 2216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               SENATE UPDATE: THE GREAT BETRAYAL
## 2217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SENATOR SCHMITT APPLAUDS TRUMP FOR SWIFT ACTION ON PRESSING ISSUES LIKE BORDER, ENERGY, ADMINISTRATIVE STATE
## 2218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           SGA discusses removal of chairperson, decision tabled - Northern Star
## 2219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SHOCK AND AWE WEEK 2
## 2220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SHOULD BUSINESSES STILL RECOGNIZE OBSERVANCE MONTHS?
## 2221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SHRM'S BEAM FRAMEWORK FOR INCLUSION: ALIGNING MERIT WITH ORGANIZATIONAL EXCELLENCE
## 2222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SIA GOVERNMENT RELATIONS UPDATE: WHAT THE FEDERAL GRANTS PAUSE MEANS FOR THE SECURITY INDUSTRY
## 2223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               SIU board remains committed to DEI, hints at Carbondale's imminent R1 status - The Daily Egyptian
## 2224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SIUE affirms commitment to LGBTQ+ community in wake of election
## 2225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SJP proposed referendum results show student support for University endowment divestment
## 2226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SNL mocks return of 'King Trump' as host Timothee Chalamet delivers an off-color joke about Jimmy Carter
## 2227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          STANTON, HOUSE FOREIGN AFFAIRS COMMITTEE DEMOCRATS CALL ON SECRETARY RUBIO TO REVERSE PURGE OF STATE AND USAID WORKFORCE, U.S. FOREIGN ASSISTANCE AND DEIA INITIATIVES
## 2228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      STATE OF THE CITY 2025 SEATTLE ON THE RISE
## 2229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                STATEMENT AT THE OPENING SESSION OF THE UN WOMEN EXECUTIVE BOARD
## 2230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                STATEMENT BY COMMISSIONER SID MILLER ON GOVERNOR ABBOTT'S LEGISLATIVE PRIORITIES
## 2231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            STATEMENT BY PERFORMING THE DUTIES OF DEPUTY SECRETARY OF DEFENSE ROBERT G. SALESSES
## 2232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               STATEMENT FROM CONGRESSMAN ROGERS
## 2233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  STEFAN PADFIELD: IS APPLE'S DEI PROGRAM ONE OF THE NINE WORST?
## 2234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 STEM majors gather outside Hayden Library in protest of federal funding freezes
## 2235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    STOPPING ILLEGAL IMMIGRATION
## 2236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       STUDENTS FROM COUP-HIT MYANMAR LAMENT LOSS OF CANCELED 'DEI' SCHOLARSHIPS
## 2237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SU holds 37th annual Dr. Martin Luther King Jr. March for Humanity
## 2238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SULLIVAN STATEMENT ON FEDERAL FUNDING PAUSE AND REVIEW
## 2239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Sabrina Singh is Interviewed about the Pentagon Shakeup; W. Kamau Bell is Interviewed about Performing at the Kennedy Center; SAG Awards Balance Jokes with Heaviness. Aired 9:30-10a ET
## 2240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Salazar Denounces Wasteful DEI Spending at Biden-Harris USAID
## 2241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Salesforce chief predicts today's CEOs will be the last with all-human workforces
## 2242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 San Diego Unified lost funding for teacher training as feds say it promotes DEI
## 2243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Santa Ono sits down with The Daily to talk Campus Plan 2050, DEI in higher education and campus tensions
## 2244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Sassy Cassie: DEI is vital in higher education
## 2245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Sassy Cassie: Trump's first two weeks do more harm than good
## 2246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Saturday Night Live slammed after controversial comedy segment about the Trump assassination attempt
## 2247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Saturday Night Live's Legacy: Why SNL still matters - The Voice
## 2248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Saturday Night Live: Timothée Chalamet hosts and sings in a decent episode
## 2249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Saying 'yes' to DOGE: One federal worker explains why he accepted the 'fork in the road' offer
## 2250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Saying ‘women’ is not allowed, but ‘men’ and ‘white’ are OK? I’m (not) shocked
## 2251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Schoolchildren walk out of Pete Hegseth’s speech in DEI protest
## 2252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Schools serving military service members' kids are pulling books on civil rights history after Trump's DEI threats
## 2253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Schools, colleges receive 'dear colleague' letter from Department of Education threatening to withhold federal funds over DEI programs - City Times
## 2254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Schumer hits Trump over funding freeze memo reversal: ‘Americans made their voices heard’
## 2255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Schumer knocks Trump’s ‘idle speculation’ on DC plane crash: ‘It just turns your stomach’
## 2256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Science is non-partisan': Pitt researchers face NIH funding freeze - The Pitt News
## 2257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Scoop: ICE returns to calling immigrants "aliens"
## 2258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Scottsdale council looks to emulate Trump policies on DEI and return-to-work
## 2259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Scream Night' At DNC: Dems Double Down On Election Losers In Chaotic Forum Repeatedly Disrupted By Climate Extremists
## 2260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Sean Duffy : What to know about newly appointed Department of Transportation secretary
## 2261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sean Duffy is confirmed by the Senate to lead the Transportation Department
## 2262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Seasoned pilot Lauren Sanchez blasts racist, sexist rage-baiting as Trump blames DEI for aviation disaster
## 2263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Second American Revolution': The team behind DOGE's government overhaul
## 2264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Second Trump administration threatens free speech
## 2265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Secret Government Sex Chats?; President Trump Takes Questions at White House; Interview With White House A.I. and Crypto Czar David Sacks; Interview With Rep. Brandon Gill (R- TX ); Cartel Turf Wars
## 2266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Secretary of Defense Pete Hegseth Town Hall at the Pentagon
## 2267                                                                                                                                                                                                       Secretary of State Marco Rubio Interviewed on Trump Administration Proposal to Fold USAID into State Department and Possibly Renewal of Maximum Pressure Campaign against Iran to Prevent Their Production of Nuclear Weapons; Ivanpah Solar Plant in California Shutting Down after 11 Years in Operation; Trump Administration Delays Imposition of Tariffs on Canada and Mexico . Donald Trump Delays Tariffs On Mexico And Canada; Democrats Criticize Donald Trump Policy And Elon Musk Connection; Federal Agencies Brace For Potential Overhaul; Donald Trump And Justin Trudeau Push Pause On Tariff Dispute; Trump And Trudeau Push Pause On Tariff Dispute; United States And Canada Announce Joint Strike Force; Rae Denounced Trump During First Term; Search Continues For Additional Remains To Potomac ; Data Records Reveal New Details Moments Before Crash; Investigation Into Philadelphia Plane Crash
## 2268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Sen. Bernie Sanders: U.S. Moving Toward Oligarchy; Officer Hodges: Rioters Attacked Me, They Don't Deserve A Pardon; Denver Mayor Says City Will Work With ICE On Deporting Criminals, But Won't Allow Arrests At Schools & Churches. Aired 9-10p ET
## 2269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sen. Cruz-Led Investigation Labels $18M in Cornell Research Grants as Promoting DEI, 'Neo-Marxist Class Warfare Propaganda'
## 2270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sen. Jim Banks at CPAC: "The Golden Age of America Means the Death Of DEI"
## 2271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Sen. Jim Banks: Trump Leading America Into New Golden Age | Opinion
## 2272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Sen. Kelly says Trump’s DEI remarks on plane crash reflect ‘poor leadership’
## 2273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sen. Peter Welch (D- VT ) is Interviewed about Kash Patel; Trump Links Diversity to Collision; Controversial Cabinet Picks Face Senators. Aired 6:30-7a ET
## 2274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Sen. Tim Kaine (D- VA ) Discusses Plane-Chopper Midair Collion, Trump Lashing Out at DEI, Democrats; Soon: NTSB Press Conference On Deadly Plane Collision; New Details On Victims Aboard Aircraft; NTSB Gives Update On Investigation Into Deadly Midair Collision. Aired 2:30-3p ET
## 2275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Sen. Warren Grills RFK Jr. On Money From Vaccine Lawsuits: "Kids Might Die, But Robert Kennedy Can Keep Cashing In"; WH Backpedals On Chaotic Funding Freeze Hours After Announcing It; FAA: Passenger Jet Collided In Midair With Black Hawk Helicopter. Aired 9- 10p ET
## 2276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Senate Assembly discusses elections and future of research funding
## 2277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Senate Committee Targets $3 Million in Harvard NSF Research Grants for 'Far-Left Ideology'
## 2278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Senate Democrat: Trump DEI remarks in wake of DC plane crash ‘stomach-turning’
## 2279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Senate Democrats Launch Whistleblower Portal To Make It Easier For Officials To Fight Trump Admin From Within
## 2280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Senate Democrats pledge to hold floor all night in protest against Trump’s budget pick – live
## 2281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Senate Passes Budget Plan After Vote-A-Rama; Bodies Of Bibas Children Returned Without Mother; Trump Clashes With Maine Governor Over Trans-Athletes
## 2282                                                                                                                                                                                                                                                                                                                                                               Senate Votes To Confirm Noem As Homeland Security Secretary; Pete Hegseth Sworn In As Secretary Of Defense After Vance Casts Tie- Breaking Vote; Trump To Meet With Supporters Today In Las Vegas ; Hospital Says All 4 Released Hostages Are In Stable Condition; Trump, Bass Clash On Rebuilding Efforts During Wildfire Roundtable; White House Begins Deportations On Military Aircraft; U.S. Military Increased At U.S. - Mexico Border; Source: Deportation Operations Could Target Over 2 Dozen Cities; Undocumented Immigrants Fear Going Out Amid Crackdown; Some North Carolina Residents Displaced By Storm Slam FEMA; Rep. Chuck Edwards (R- NC ) Discusses Trump Tour Of Hurricane Helene Damage, Trump Saying He May Get Rid Of FEMA. Aired 1-2p ET
## 2283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Senate alleges $4.9 million in Vanderbilt and VUMC NSF-funded research as promoting 'far-left ideology' - The Vanderbilt Hustler
## 2284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Senate bill seeks to financially penalize state agencies with mandatory DEI programs
## 2285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Senate committee advances ex-wrestling CEO Linda McMahon as Trump's nominee for education secretary
## 2286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Senate confirms Doug Collins as VA secretary
## 2287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Senate confirms Pete Hegseth as next defense secretary - Indiana University Student Television
## 2288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Senate investigation led by Ted Cruz '92 targets $2.4 million in Princeton research grants
## 2289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Senator Murray Slams Trump & Elon Threatening to Rip Away Federal Funding for Public Schools & Colleges Over Political Crusade: "Do Not Be Intimidated"
## 2290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Senator Schmitt, Congressman Cloud Introduce the Dismantle DEI Act
## 2291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Senator accuses Trump of executive order 'blitzkrieg' to 'collapse our democracy'
## 2292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Senators Rick Scott and Eric Schmitt Introduce Dismantle DEI Act
## 2293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Senior Pentagon official acknowledges budget cuts under consideration
## 2294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Service members reveal how Trump can 'rejuvenate' the military after COVID purge and DEI 'demoralization'
## 2295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Seth Meyers on Elon Musk’s US takeover: ‘A billionaire coup’
## 2296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Seth Meyers on Trump: ‘Dismantling the government like he’s hacking away at a stolen Benz in a chop shop’
## 2297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shame On You': Sean Spicer Verbally Jousts With Dem Contrib Who Suggests DOGE Not Cutting 'Fraud, Waste And Abuse'
## 2298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sharpton announces boycott of companies ending DEI
## 2299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Sheinbaum offers condolences after 6 Mexican nationals killed in Philadelphia plane crash
## 2300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sheriff's Office withdraws from federal grant funding immigrant inmate records - The Badger Herald
## 2301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Sheryl Crow says goodbye to her Tesla and donates to NPR : 'You have to decide who you are willing to align with'
## 2302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shock and Awe: Trump's First Two Weeks - The Spire
## 2303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shock and awe' coming with immediate actions From mass deportations to ending EV mandate, second term starts with a bang
## 2304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shoppers are avoiding certain brands over politics: poll
## 2305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shopping blackout aims to put Trump back in his box As today's boycott evolves into a day of consumer action against the US president, Chris Blackhurst looks at whether deleting Amazon and other apps will really make a difference
## 2306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Should You Boycott Target Over DEI Cuts? Internet Divided
## 2307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sky owner faces Trump investigation over diversity policies
## 2308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sky owner faces investigation in US over diversity policies
## 2309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Skyline Chili, Graeter's release a sweet and savory "Skyline Spice" ice cream
## 2310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Small businesses, Black-owned brands and Latinx-run companies to support
## 2311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Snoop Dogg went back on his word with Trump performance. He deserves the backlash. | Opinion
## 2312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So...what has Trump done well? - The Carletonian
## 2313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Social Security Announces Changes After Trump Executive Order
## 2314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Some USF students reconsider their careers after Trump's DEI cuts
## 2315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Some call DEI backlash 'kick in the teeth' Federal employees with disabilities, many of them veterans, feel targeted
## 2316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Some consumers are not spending money for today's economic blackout. Here's what to know.
## 2317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sonoma State slashes departments that reflect Trump's executive orders - Sonoma State Star
## 2318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Soon: Trump Holds Event Marking Black History Month; Sources: Defense Secy. Could Soon Fire Top Generals, Admirals; Sen. Richard Blumenthal (D- CT ) Discusses About Hegseth's Firing of Generals; Sen. Blumenthal Urges Trump Admin. to Reverse Terminations at FAA; Zelensky Calls Meeting with U.S. Envoy Kellogg "Productive". Aired 3-3:30p ET
## 2319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Source: Donald Trump Had A Call With Vladimir Putin; U.S. Senate Confirms Tulsi Gabbard As Intelligence Chief; Trump Hosts Jordan 's King, Reiterates Gaza Takeover Plan; Musk, Trump Defend Sweeping Efforts To Reshape Federal Government; White House Bars "AP" Reporters Over "Gulf Of America" Spat; Wave Of Severe Storms Crossing The U.S. ; Donald Trump And Volodymyr Zelenskyy Spoke By Phone. Aired 12-1p ET
## 2320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Sources Say, Trump Expected To Get Back Classified Documents Taken By FBI; Former USAID Leaders Condemn Trump's Attempts To Dismantle Agency; Trump Admin Tries To Walk Back His Gaza Comments Amid Global Outrage; Police: 100,000 Eggs Stolen From PA Distribution Center As Supply Crunch Sends Prices Soaring; Wolf Blitzer Honored For Excellence In Journalism. Aired 6-7p ET
## 2321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sources: Trump Admin Moves To Begin Dismantling Dept. Of Education; Sources: Trump Admin. Drafting Executive Order To Start Process Of Eliminating Education Dept.; Trump's Actions Echo Project 2025 Despite His Previous Denials; Trump Signs Executive Orders At White House; Trump Signs Order Withdrawing U.S. From UN Human Rights Council. Aired 3-3:30p ET
## 2322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Sources: Trump May Invite Some Jan. 6 Rioters On White House; Trump , Republicans In Congress Defend Jan. 6 Pardons; Trump Dismantles Federal DEI Offices, Puts Staffers On Leave. Aired 12-12:30p ET
## 2323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        South Africa has been blindsided by Trump GLOBAL AFFAIRS
## 2324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         South Africa vows to pursue Israel genocide case despite Trump pressure
## 2325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Southern Indiana residents react to DEI initiatives elimination
## 2326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Spanish PM is Europe’s most outspoken Trump critic – with an ulterior motive
## 2327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Speak On It: NAACP President discusses hardships at Texas State
## 2328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Speaker Johnson Announces New January 6 Subcommittee; Sources: White House In Talks For January 6 Convicts To Meet With Trump; Mandatory Evacuation Orders As New Fire Breaks Out Near L.A.; U.S. Military Orders Thousands More Troops To Southern Border; UK Tabloid Settles With Prince Harry, Apologizes For Phone Hacking; Trump Threatens Sanctions On Russia If Fighting Doesn't End. Aired 4-5p ET
## 2329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Speaker Johnson on President Trump's First Two Weeks: Win After Win After Win
## 2330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Speaker Johnson: President Trump Has Done More for the American People in 48 Hours than Joe Biden Did in Four Years
## 2331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Speeches rule the night at the 67th Grammys - The Pace Press
## 2332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Spells Trouble': Dem Strategist Warns His Party Is Out Of Touch With Major Issue Confronting Americans
## 2333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Squad' member Ilhan Omar has very choice words for Dems who attended Trump 's swearing in
## 2334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Stacey Abrams Somehow Concludes That JD Vance Is 'DEI Graduate' During Meandering Rant
## 2335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Staff Editorial: AU can't stay silent in the face of the Trump administration's policies - The Eagle
## 2336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Staff Editorial: WashU administration, please speak up against bigotry
## 2337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Staff Recs: For the Valentine's Day haters - Washington Square News
## 2338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Staff Recs: Self-care - Washington Square News
## 2339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Staggering bonuses given to Costco executives for hitting DEI targets
## 2340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Starmer plays royal card as he tiptoes around the madness of King Donald
## 2341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Starmer urged to follow Trump's diversity cull NEWS BULLETIN
## 2342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Starmer-Trump meeting live: PM flies to US for crunch talks ahead of Zelensky visit to UK
## 2343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Start your week smart: Hegseth confirmed, hostages released, South Korean president, FEMA's future, religious charter schools
## 2344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Startups are showering employees with wild perks, from MRIs to 'pawternity leave'
## 2345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  State Department told to 'downplay' Black History Month to back Trump's anti-DEI order: report
## 2346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              States Urged to Shield Public Pensions From Federal Anti-ESG Assault, Report Finds
## 2347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Steinhardt USG becomes first school-specific student gov't to offer stipends - Washington Square News
## 2348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Stephen A. Smith Says Hold Off On Judging Musk's Efforts, Says Don't Stand In His Way Of Exposing Hidden Agendas
## 2349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Stephen A. Smith sends Democrats a message over trans issues after landing on 2028 President poll
## 2350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Stephen A. Smith shocks Sean Hannity with brutal verdict on his former Fox colleague Pete Hegseth
## 2351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Stephen A. Smith throws Hannity's DEI rant back in his face with Hegseth dig
## 2352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Stephen Miller Gives Corporate Media 'Civics Lesson' During White House Briefing
## 2353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Stern MBA program launches at Abu Dhabi campus - Washington Square News
## 2354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Stokes announces UNM rapid response teams after Trump administration actions - The Daily Lobo
## 2355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Stonewall National Museum says anti-LGBTQ policies have hurt funding
## 2356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Stop deregulation - The Maine Campus
## 2357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Straight woman lost two jobs to gay colleagues. Supreme Court will decide if she can sue.
## 2358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Straight woman's 'reverse discrimination' case could upend decades of equality safeguards
## 2359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Streeting attacks Nigel Farage as ‘miserablist declinist’
## 2360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Stress impacts academic as students struggle to balance school, work - PNW Pioneer
## 2361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Strike averted at Costco as Teamsters reach a tentative deal
## 2362                                                                                                                                                                                                                                                                                                                                                                           Strong Winds Fuel New Wildfires In Southern California ; Trump Brushes Off January 6 Rioters Beating Cops: Minor Incidents; Trump Curtails Protections Around Diversity, LGBTQ Rights; Trump Grants Temporary Security Clearances To Officials Who Have Not Been Fully Vetted; Trump Threatens Putin With Taxes, Tariffs And Sanctions Over Ukraine War; Strong Winds Fuel New Wildfire Near Los Angeles; Funerals Held for Victims of Deadly Fire at Ski Resort; White House Threatens Sanctuary Cities; Same-Sex Marriage Law Takes Effect, Hundreds Tie the Knot; Bouncing Back from the Brink of Extinction; Bytedance Board Member: Deal in the Works to Save TikTok; Prince Harry Settles Legal Claims against Tabloid Publisher. Aired 1-2a ET
## 2363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Strongman Trump erodes US liberal instincts President's vengefulness was never in doubt but the institutional willingness to restrain him appears to be fading
## 2364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Student leaders fear decreased minority enrollment, employment opportunities after Trump DEI rollback
## 2365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Student leaders react to Trump administration's returns to 2020 Title IX ruling
## 2366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Student protest demands WSU protects undocumented students, DEI - The Daily Evergreen
## 2367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Student protest held on campus in support of DEI initiatives - The Daily Wildcat
## 2368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Student-led town hall addresses Trump Administration policies, reaffirms student solidarity
## 2369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Students 'March for Justice' against Trump's latest executive orders - Kentucky Kernel
## 2370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Students Band Together to Form Trinity s First Campus Town Hall
## 2371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Students Express Fear for Affinity Groups Under Trump at Town Hall
## 2372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Students Support Seattle Children's Hospital with Pie-a-President Event - The Spectator
## 2373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Students Will Be Better Off': Former Education Secretary Pitches Plan To Completely Dismantle Her Old Agency
## 2374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Students and faculty speak up against anti-DEI initiatives - The Daily Evergreen
## 2375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Students do not want political statements, survey says - The Minnesota Daily
## 2376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Students frustrated by limited access to high priced tech needed for studies - PNW Pioneer
## 2377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Students protest NYU investments outside trustees' finance meeting - Washington Square News
## 2378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Students react to Trump administration's ICE raids and DEI dissolution
## 2379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Students react to Trump's executive orders
## 2380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Students respond to rollback on Diversity, Equity, and Inclusion initiatives - The Maroon
## 2381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Students seek clarity about future of DEI
## 2382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Students urge University leaders to resist Trump's executive orders Login or create an account
## 2383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Students voice concerns over Trump's executive orders
## 2384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Students want Trump to tackle real problems, not global expansion - PNW Pioneer
## 2385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Students, Olympic skaters, families and more. A tribute to lives lost in the DC plane crash
## 2386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Students, community call on CSU administration to support DEIA, CRCs - The Rocky Mountain Collegian
## 2387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Sudden removal of DEI in UNCA curriculum causes concerns among staff and students - The Blue Banner
## 2388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Sunny Hostin claims Trump is an unqualified 'DEI' hire in apoplectic rant
## 2389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Sunrise on Trump Executive Orders: 'An Unprecedented Handout to Billionaires; Democrats Need to Take the Gloves Off'
## 2390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Super Bowl sign language performers already had low screen time before attacks on DEI
## 2391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Super Bowl: Kendrick Lamar, the ads, Taylor Swift and everything but the football – as it happened
## 2392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Super Sick Monday  Sees 22.6 Million Miss Work
## 2393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Support for ESG proposals at record low driven by US investors, report shows
## 2394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Support international and undocumented students
## 2395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Supreme Court Hears Discrimination Case; Elon Musk Attends First Trump Cabinet Meeting. Aired 11:30a-12p ET
## 2396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Supreme Court Just Dealt Donald Trump 'Unexpected' Loss—Legal Analyst
## 2397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Supreme Court appears sympathetic toward straight woman’s ‘reverse discrimination’ case
## 2398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Supreme Court could lower bar for white workers to sue for racial bias
## 2399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Supreme Court seems likely to rule for Ohio woman claiming job bias because she's straight
## 2400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Swift justice for influencer who filmed herself calling for Elon Musk's murder and boasted about not paying tax
## 2401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Swimming and wrestling dominate the UAA, track & field shatters records and other news - Washington Square News
## 2402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   TEXAS AGRICULTURE COMMISSIONER SID MILLER DECLARES WAR ON DEI
## 2403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 TEXAS INTRODUCES LANDMARK BILL TO END DEI INDOCTRINATION IN PUBLIC UNIVERSITIES
## 2404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          THE FIRST 100 HOURS: HISTORIC ACTION TO KICK OFF AMERICA 'S GOLDEN AGE
## 2405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      THE INFRASTRUCTURE OF RACIAL JUSTICE IS UNDER ATTACK. WE MUST FIGHT FOR IT
## 2406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             THE ROLE OF THE DEPARTMENT OF GOVERNMENT EFFICIENCY
## 2407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        THIS SUNDAY: NINA TURNER ON HOW WE DEFEAT TRUMP'S RACIST BACKLASH AGAINST DEI. RSVP NOW!
## 2408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      THREE WEEKS IN: IMPACTS OF THE NEW ADMINISTRATION'S ACTIONS ON SAFE ROUTES
## 2409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TITLE VII REFRESHER IN LIGHT OF POSSIBLE CRIMINAL INVESTIGATIONS
## 2410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           TRUMP "DAY ONE" EXECUTIVE ORDER RECAP
## 2411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TRUMP ADMINISTRATION STRIPS FDA DEI HEALTH INITIATIVES, HARMING CLINICAL RESEARCH AND PATIENT CARE
## 2412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           TRUMP EXECUTIVE ORDER ENDS AFFIRMATIVE ACTION FOR FEDERAL CONTRACTORS
## 2413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             TRUMP SETS THE TONE FOR SECOND TERM
## 2414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   TRUMP TERMINATES FIRST WOMAN TO LEAD A BRANCH OF THE MILITARY
## 2415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      TRUMP WHITE HOUSE ACTIONS TO DATE: MSU EXPERTS CAN COMMENT
## 2416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         TRUMP'S ANTI-DEI POLICY AND PRIVATE-SECTOR DICTATORSHIP
## 2417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TRUMP'S DEI EXECUTIVE ORDERS DO NOT CHANGE TITLE VII
## 2418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               TRUMP'S EXECUTIVE ORDERS ARE ONLY THE FIRST STEP IN DEFEATING DEI
## 2419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TRUMP'S EXECUTIVE ORDERS ROLLING BACK DEI AND ACCESSIBILITY EFFORTS, EXPLAINED
## 2420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       TRUMP'S EXECUTIVE ORDERS SHIFT HIGHER EDUCATION LANDSCAPE
## 2421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         TUBERVILLE GETS GAVEL FOR HELP SUBCOMMITTEE ON EDUCATION AND THE AMERICAN FAMILY COACH TOMMY TUBERVILLE
## 2422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         TUBERVILLE, SCOTT LEAD LEGISLATION TO RESTORE MERIT-BASED HIRING COACH TOMMY TUBERVILLE
## 2423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     TYLER O'NEIL: What's Really Behind The Left's Freakout As Trump Dismantles 'Environmental Justice' Offices?
## 2424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Takano: Trump Must Pledge to Stay Out of NTSB's Investigation into DC Crash
## 2425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Talking Money And Taxes At Work
## 2426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Target Boycott March 5: 40-Day Fast Explained
## 2427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Target Drops Diversity Initiatives After It Previously Caved To Pressure From Pride Month Collection
## 2428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Target Post Flooded With Negative Comments After DEI Move
## 2429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Target Sued Over DEI
## 2430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Target becomes latest big US company to end diversity initiatives
## 2431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Target ditches all DEI programmes after Trump inauguration
## 2432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Target hit by consumer anger at its retreat from diversity policies
## 2433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Target is banned from Pride parade as revenge for axing DEI policies
## 2434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Target is ending its diversity goals as a strong DEI opponent occupies the White House
## 2435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Target is getting hit from all sides on DEI
## 2436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Target is the latest company to roll back some DEI programs
## 2437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Target latest company to roll back DEI programs
## 2438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Target pulling back DEI initiatives, shares "Belonging at the Bullseye" strategy
## 2439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Target restructures DEI initiatives: what this means for minority-owned businesses
## 2440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Target was one of the most outspoken supporters of DEI. It's changed its tune
## 2441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Target's DEI rollback raises questions about the retail giant's philanthropic commitments
## 2442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Target's DEI rollbacks spark debate on whether boycotts effectively show support for minority-owned businesses
## 2443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Tariff Debate Rages In Davos As Trump Makes New Threats; Jamie Dimon On Tariffs: Get Over It; Finnish President: The World Order Is Changing; U.S. Government Puts DEI Workers On Administrative Leave; Interview With Richard Edelman On Sense Of Grievance; Hughes Fires Grow Rapidly In Los Angeles County ; Dutch PM Says Europe Needs To Have A Backbone Against Trump. Aired 4-5p ET
## 2444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Tax Breaks: The Disappearing IRS Tax Documents Edition
## 2445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Tax refund 2025: What to know about IRS' tax season, filing taxes and more
## 2446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Teacher tells ICE to visit high school where many students 'don't even speak English'
## 2447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Teachers union sues over Trump admin’s DEI warning to schools
## 2448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Tech CEOs Talk About U.S. Stargate Investment; Now: President Trump Takes Questions
## 2449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Tech bros Mark Zuckerberg, Jeff Bezos and Tim Cook sit together in church as Trump inauguration begins
## 2450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Tech execs send signals about where their companies are headed
## 2451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Tech titans stand with Donald Trump to kill off activism in Silicon Valley
## 2452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Tech titans stand with Trump while liberal Silicon Valley staff stay quiet Employees in 'velvet handcuffs' have done little to protest against rightward shift of their leaders
## 2453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ted Cruz names IU Trustees in list of 'woke' DEI grants from National Science Foundation - Indiana Daily Student
## 2454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ted Cruz takes on 'woke DEI propagandist' government consultants raking in thousands
## 2455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Tell us what free speech means to you at a time when that's up for debate | Opinion
## 2456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ten things Americans think about Trump’s first month in office
## 2457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Tensions High Between Officers, Judges, Rioters Over Pardons; Trump Orders Thousands Of Troops To Southern Border; Trump Already Sued Over Threat To Birthright Citizenship; An Executive Order May Cause Thousands Of Federal Government Workers To Be Displaced; New Wildfire Burns Thousands Of Acres In Los Angeles. Aired 10-11p ET
## 2458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Terrified staff left hysterical as 'well drilled' DOGE nerds storm hyper 'woke' Department of Education
## 2459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Terror Attack in Israel as Three Buses Explode Near Tel Aviv; Body Returned by Hamas Not of Shiri Bibas; President Trump Frustrated with Zelenskyy's Rejection; Germany to Elect New Government; Pope Francis Improving Slightly; U.S. Senate Confirms Kash Patel as FBI Director; Judge Says White House Violating Order To Resume Foreign Aid; Hegseth Orders Military To Prepare For Major Budget Cuts. Aired 2-2:45a ET
## 2460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Texas Gov. Abbott Issues 'Color-Blind' Order in Blow to Diversity Policies
## 2461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Texas teacher calls for ICE to come to their school over students 'who don't even speak English'
## 2462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That Is A Lot Of Fraud': Karoline Leavitt Sniffs Out NBC News Reporter's Attempt To Trip Her Up Over DOGE Cuts
## 2463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The American farmers at the heart of Trump's war with USAID who are struggling to survive
## 2464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Army is BACK! Military releases new high-octane Trump-era ad... and it's a huge split from woke Biden one
## 2465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The BBC's Trump problem ESTABLISHED 1855
## 2466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The BBC’s Trump problem
## 2467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Beginning of the End for the 'Trump Era'  | The Daily Campus Centered Divider Line
## 2468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Case for Woke  - THE CAROLINIAN
## 2469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Cold Civil War Is Over. We Won. | Opinion
## 2470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Cruelty of Colorblindness: Trump's War on DEI
## 2471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The DEI backlash: employers ‘reframing not retreating’
## 2472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The DEI debate: Campus inclusion or a step too far?
## 2473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The DEI divide I don't check the boxes
## 2474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The DNA Of Our Foreign Policy': How USAID Hid Behind Humanitarianism To Export Radical Left-Wing Priorities Abroad
## 2475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Daily Money: Can Trump fix inflation?
## 2476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Daily Money: Going shopping on Friday?
## 2477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Daily Money: Tariffs affect home prices, too
## 2478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Daily Money: Trump takes aim at DEI
## 2479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Daily Money: Will Trump keep his tax pledges?
## 2480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Dangers of Trump's Executive Orders - The Villanovan
## 2481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Democratic Party Supports Every Inch Of The Bureaucracy And Every Penny of Fraud, Waste And Abuse; Interview With Rep. Mike Johnson (R- LA ); Democrats Nullifying Federal Law
## 2482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Department of Education may be on its way out. Is Duke prepared?
## 2483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Digest
## 2484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Entire City Is On Edge': Jonathan Turley Says Trump's Proactive Approach 'Has Everyone Reeling'
## 2485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Fed Holds Rates Steady, Hitting Pause After a Series of Cuts
## 2486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The First Week In Office: All the Orders and Actions That Took Place In President Trump 's First Week in Office
## 2487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Forty Seventh's First Week
## 2488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Future Of Legacy Media In Trump's America - The Spectator
## 2489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Future of American Schools
## 2490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Gatepost Editorial: DEI is not discrimination
## 2491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Gatepost Editorial: Support Black businesses
## 2492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Gavel: Courts become Trump’s only backstop
## 2493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Grammys had a few surprises up their sleeves. Here are some key moments from the show
## 2494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Grammys: Music's biggest night, with even bigger moments
## 2495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Griffin Editorial: Why I didn't watch the inauguration
## 2496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Guardian view on Donald Trump’s power grab: a coup veiled by chaos
## 2497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The Inauguration Of Donald Trump. Aired 7-8p ET
## 2498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The Latest: 21 employees resign from DOGE, refusing to ‘dismantle critical public services’
## 2499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The Latest: Collision between passenger jet and Army helicopter near DC leaves no survivors
## 2500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Latest: Congress passes immigrant detention bill, sending Trump the first law he can sign
## 2501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Latest: EPA wants to repeal a landmark environmental finding, jeopardizing climate regulations
## 2502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Latest: Federal workers face mass layoffs
## 2503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Latest: Hegseth confirmed as defense secretary in victory for Trump
## 2504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Latest: House GOP pushes budget resolution to passage
## 2505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Latest: Judge declines to block Musk and DOGE from accessing federal data or laying off workers
## 2506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Latest: Judge temporarily blocks Trump plan offering incentives for federal workers to resign
## 2507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Latest: Justice Department official urges quick dismissal of criminal case against NYC mayor
## 2508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Latest: Trump administration directs all federal DEI staff to be put on leave
## 2509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Latest: Trump greets Newsom in Los Angeles before touring wildfire damage
## 2510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Latest: Trump meets with UK’s prime minister about drifting US support for Ukraine
## 2511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Latest: Trump says he and Putin have agreed to begin negotiations on ending war in Ukraine
## 2512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Latest: Trump says he will declassify the JFK, RFK and MLK Jr. records
## 2513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Latest: Trump signals he’s open to multiple budget bills instead of just one
## 2514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Latest: White House to pause federal grants and loans starting on Tuesday
## 2515                                                                                                                                                                                                                 The Left Battles To Save Waste And Abuse; Trump Is Righting The Wrongs Of Congress ; No Agency Is Safe From DOGE; Interview With Sen. Markwayne Mullin (R- OK ); Trump Fires Chairman Of Joint Chiefs; Trump Nominates Lieutenant General Dan Caine; Democrats Root For Canada And Mexico ; Democrats Claw At Each Other's Throats; Kash Is Living The American Dream; Trump To Release Bombshell Report; Bondi Has Epstein's Client List On Her Desk; Hegseth Factchecks The Factcheckers; Trump Body Slams Governor Over Trans Law; Noem Lists Migrant Criminals She Deported; 177 Migrant Criminals Land In Venezuela ; Border Patrol Chief Sends Illegals A Warning; Trump Cabinet Is Transparent And Effective; Border Crossings Down 94 Percent; Acting ICE Director Reassigned; Cartels Use Boats To Smuggle Drugs; Trump Puts Cartels Out Of Business; Wanda The Stuffer Turns Herself In; Sink Or Swim
## 2516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Left is privately bracing for a Trump-style DEI apocalypse if Dutton wins. These programs will be first on the chopping block - and you won't believe some of them existed in the first place, writes STEPHEN JOHNSON
## 2517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Long Wave: Fear, loathing and Black resistance under Trump 2.0
## 2518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The Maga vision of corporate life will struggle
## 2519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Memo: Trump goes full bore against DEI
## 2520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Memo: Washington flight disaster sparks political fights
## 2521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Philadelphia Eagles upset Trump in 2018. A petulant president can't let it go. | Opinion
## 2522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Prototype: Math Suggests The Eagles Will Go On Fourth Down During The Super Bowl
## 2523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Return Of Common Sense; Poll: Dems Have Only 31% Approval Rating; Trump To Send 30K Illegals To Gitmo; British women Pleads Guilty to Sending Videos of Herself Farting to Her Boyfriend's Ex to Make Her Uncomfortable; Whoopi Goldberg on "The View" Criticizes White House Press Secretary Karoline Leavitt; Chuck Schumer Lampooned for Using Word "Aroused" during Press Conference.
## 2524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Science of Racism — proof of prejudice
## 2525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Soapbox: Mafia crackdown in Italy , Sudan truce in UAE , cease-fire violation in occupied Palestine - Washington Square News
## 2526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Status Quo Hasn't Worked': Hegseth Breaks Down Why Pentagon Needs Major Shake Up
## 2527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The Three Great Conservative Constitutionalist Presidents In The Last Century Are Calvin Coolidge, Ronald Reagan, And Donald Trump; Interview with Rep. Jim Jordan (R- OH ); The Excitement Around The Election Of Donald Trump
## 2528                                                                             The Tide Is Turning In The US Under Donald Trump; Army Recruiting Hits Record High After Trump's Win; US Regaining Strength On World Stage; Canada's New Fentanyl Czar Will Be Appointed Soon; DOGE Plans To Slash Government Costs; Google Is Latest To Follow Trump's DEI Orders; NFL To Remove "End Racism" Message In End Zone; First Migrant Flight Lands At Gitmo; President Trump Attending Super Bowl Tomorrow; America Is Changing For The Better; Trump Bans Trans Athletes In Women's Sports; NCAA Changes Trans Policy After Trump Ban; Tom Brady On Intangibles You Can't Measure; Tom Brady Calls His First Super Bowl; Democrats Cannot Stand The Idea Of Elon Musk; Unhinged Democrats Take Aim At Elon Musk; Tony Robbins Spear- Heading California Wildfire Efforts; The Death Of DEI; Trump's War On DEI Sends The Left Into A Tailspin; The "60 Minutes" Transcripts Are Out; The Truth About Kamala's CBS Interview; The Question That Could Sink A Campaign; "The View" Loses It Over Trump And Musk; Conservatism Resurgence
## 2529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Times view on diversity policies: DEI Another Day
## 2530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Trump 50 per cent doctrine
## 2531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Trump White House Is In Full Gear
## 2532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The Trump administration causes even more chaos
## 2533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Trump administration returns to office
## 2534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The US is missing again as G20 finance chiefs meet in South Africa
## 2535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The View' Co-Host Appears To Upset Panelist As She States DEI 'Has Not Accomplished Things'
## 2536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The View's Joy Behar suggests Trump is abolishing the penny because he's 'jealous' of past presidents
## 2537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The ban of DEI: What does this mean for students? - BG Falcon Media
## 2538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The best trade in the market might be following everything Elon Musk touches
## 2539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The black business owners who say DEI has never worked and that it 'isn't for us'
## 2540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The brutal way Trump fired the highest-ranking woman in the military in his DEI purge
## 2541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The clash of meritocracy and DEI
## 2542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The corporate trend to boost creativity that is actually counter-productive
## 2543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cultural wars have arrived at your Google Calendar
## 2544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The current state of US politics
## 2545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The danger of censoring DEI conversations in education
## 2546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The eye-popping amount of money Elon Musk has already slashed from the Education Department as staff melt down
## 2547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The fear is real': As Trump administration targets DEI, professionals worry about the future of their industry
## 2548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The fight Peter Dutton and others like him want to have about diversity is a distraction
## 2549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The fight for academia
## 2550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The four banned words in Trump's overhauled CDC that are sending workers into meltdown
## 2551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The future of DEI at GRCC remains unclear as Trump administration continues policy overhaul
## 2552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The future of DEI: UA community addresses the shifts in diversity, equity and inclusion efforts
## 2553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The future of diversity, equity, and inclusion at Illinois Tech
## 2554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The future of student aid under Trump - Massachusetts Daily Collegian
## 2555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The gun-toting, anti-woke influencer who says she’s had Elon Musk’s 13th child
## 2556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The history of Penn State Black Caucus through Collegian archives
## 2557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The inauguration, brought to you by Tesla and Amazon Prime
## 2558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The key executive orders Trump has signed in the last 24 hours
## 2559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The legacy and history of Latino protest at UI - The Daily Iowan
## 2560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The legal war on DEI begins: Missouri sues Starbucks over its diversity programs
## 2561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The list of CEOs voicing support for their companies' DEI initiatives is growing
## 2562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The low keep getting lower, as shown by Trump’s response to the DC plane crash
## 2563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The most significant executive orders Trump signed on day one of his second US presidency term
## 2564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The next 10 government agencies in DOGE's line of fire that ballooned under Biden
## 2565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The perfect day in SoHo - Washington Square News
## 2566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The professors charting a new route for DEI Interview. Iris Bohnet and Siri Chilazi Research by the pair could guide companies grappling with the backlash against diversity, writes Andrew Hill
## 2567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The quiet exclusion: How the loss of diversity in diplomacy imperils the future Login or create an account
## 2568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The revolution': Trump and the changing landscape of political activism
## 2569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The rise and fall of DEI: How changing politics are reshaping corporate America
## 2570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The sciences are political
## 2571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The six biggest takeaways from Trump's first weeks in government... and what they tell us about the next four years
## 2572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The stars who rebuked Trump in their Grammy speeches
## 2573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The tragic air collision revealed Trump’s rancid, irredeemable character once again
## 2574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The truth behind Donald Trump's astounding claims Biden, Obama and DEI are to blame for crash
## 2575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The truth behind rumor DC crash Black Hawk co-pilot was transgender servicewoman Jo Ellis
## 2576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The underqualified Trump administration exemplifies the meritocracy myth - The Beacon
## 2577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The university's annual Campus Climate Survey - The Charger Bulletin
## 2578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The vibe shift and how to combat it
## 2579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The week woke died: Trump revels in status as ‘horrible human being’
## 2580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The world's most embarrassing inauguration was led by the Culture Wars President
## 2581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    There is a DEI dilemma taking place across Corporate America
## 2582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There is tremendous uncertainty': UMich researchers grapple with the effects of Trump's executive orders
## 2583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They're Exposing Themselves': Tulsi Gabbard Responds To CIA Agents Threatening To Sell Secrets To Enemies
## 2584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Things are pretty grim out there': Media censorship under the Trump administration - The Pitt News
## 2585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This Week In Politics: Zelenskyy, McConnell & DEI - The Villanovan
## 2586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This Week in Climate Action - February 14, 2025
## 2587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This Week in Politics - The Villanovan
## 2588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is not just a story of struggle, it's a call to action': Nancy Maxwell's film inspire community change - The Daily Egyptian
## 2589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This is our responsibility': Protesters gather at Capitol to oppose Trump, Project 2025
## 2590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This newsletter has gone to the dogs
## 2591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This will not stand': Air Force resumes teaching on first Black pilots after DEI review
## 2592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This year, the United States made history by electing Donald Trump: the first convicted felon to be sworn into the White House.
## 2593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thousands More U.S. Troops Head To Southern Border; Border Czar: Deportation Raids Already Underway; White House Orders Federal DEI Employees To Be Placed On Leave; Israel's "Operation Iron Wall: Underway In West Bank; Trump Signs Executive Order To Pull U.S. Out Of The Agreement; Texas Town Fears Trump's Mass Deportation Threats; Royal Unexpectedly Settles With Murdoch Tabloids; Aired 12-1p ET
## 2594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thousands Of USAID Employees Given Just 15 Minutes To Vacate Workstations; Trump To Meet With British PM Keir Starmer At The White House; Meta Apologizes, Americans With Disabilities Warn Protections Are Vanishing In Trump's DEI Rollback; Fixes Glitch That Caused Violent Video Recommendations On Reels. Aired 9:30-10a ET
## 2595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thousands Under Evacuation Due to the Hughes Fire Near Los Angeles ; Thais Tie Their Knots as Same-Sex Marriage Takes Effect; Trump Presses Russia to Make Peace with Ukraine ; Prince Harry Settled Lawsuit Against Murdoch-owned Tabloids. Aired 3-4a ET
## 2596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thousands protest Trump at Presidents' Day demonstration in Washington Square Park - Washington Square News
## 2597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Three weeks in: Reflecting on the second Trump Administration so far
## 2598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thune and Johnson vow to take DOGE spending cuts to the next level
## 2599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Tiger Woods Hears Chants at White House, Gets Mixed Reactions Online
## 2600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Tiger Woods fights back tears as Donald Trump reveals him as surprise guest at Black History Month event
## 2601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Tiny rural Pennsylvania town tears itself apart over politics and pronouns
## 2602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To the CEOs who’ve joined Trump’s fight against diversity, I say this: you’re making a big mistake
## 2603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To these Black retirees, the federal civil service now under attack was a path to the middle class
## 2604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Today's 'economic blackout' began from an unlikely source. But it's tapped into Americans' anger
## 2605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Tom Brady, TV’s No 1 jaw, oozed stagnant charisma in Fox’s Super Bowl broadcast
## 2606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Tom Hanks blasted for 'racist and disgusting' portrayal of MAGA supporter on star-studded SNL 50
## 2607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Tonight: Deadline For Federal Workers To Accept "Buyout" Offer; Musk's Team Expands Its Influence Throughout Government; Ex-Trump WH lawyer: "It's A Naked Power Grab....To Flood The Zone"; Democrats Target "Unelected, Unaccountable Billionaire" Elon Musk; Now: House GOP Leaders Meet With Trump At White House; Trump Plots Out Legislative Strategy With House GOP Leaders. Aired 12-12:30p ET
## 2608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Tonight: Freed American Hostage Meets With Trump At The White House
## 2609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Top General Ousted As Trump Admin. Wages "War On Woke"; Legal Challenges Over Anti-DEI Orders Get First Results; Judge Temporarily Blocks Certain Trump Anti-DEI Directives. Target Is Getting Hit From All Sides On DEI; On Set With Starts Of New Soap Opera Centered On Black Family; "Liberated Muse" Takes Stage At Kennedy Center Amid Trump Takeover. Aired 8-9a ET
## 2610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Top Trump Officials Meet With Russians In Saudi Arabia ; Department Of Education Letter Threatens Federal Funding; At Least 9 Dead As Storms Slam Kentucky , Georgia , Tennessee And Virginia ; Experts Worry Russian Aggression Could Go Beyond Ukraine ; Measles Outbreak In West Texas Doubles To 48 Cases; Trump Disputes Rift With Elon Musk; New Mini-Tournament Format For All-Star Game. Aired 6-7p ET
## 2611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Top spy Gabbard says she fired 100+ intel officers for 'really horrific' chat messages
## 2612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Tories express alarm at report saying cost of Chagos Islands deal has risen far beyond £9bn, saying it’s ‘madness’ – as it happened
## 2613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Tracking Trump – updates on the presidency’s first 100 days
## 2614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Tracking Trump's executive actions by category
## 2615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Tracking Trump's executive orders on higher education
## 2616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trans Black Hawk pilot forced to respond after she's falsely identified as D.C. crash captain
## 2617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trans extremists corrupting DEI, say gay rights groups
## 2618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trans extremists have corrupted DEI, says gay rights group
## 2619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trans troops, Hunter's helpers, DEI fanatics: Wokest heads to roll as Trump vows to fire MORE in bloodbath
## 2620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Transcript: Mayor Adams Appears on NY1's "In Focus With Cheryl Wills"
## 2621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Transcript: Unilever’s CEO gets the boot
## 2622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Transcript: ‘ America is now an adversary’
## 2623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Transportation Sec. Sean Duffy vows it's safe to fly after shocking crashes, echoes Trump's DEI criticism
## 2624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Treasury Sued Over Giving Musk's DOGE Access to Payment Data; Interview with Sen. Tammy Duckworth (D- IL ); Deconstruction Project; Senior FBI Leaders Ordered To Retire, Resign Or Be Fired; DOJ Orders FBI To Hand Over Names Of All Officials Who Worked On Jan. 6 Riot Cases By Tomorrow; Recovery Begins Of Plane Wreckage From Potomac River . Aired 8-9p ET
## 2625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trevor Noah leads anti-Trump roast at the Grammys as Hollywood targets tariffs, celebrates DEI and trans rights
## 2626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trouble for Research Funding? - The George-Anne Media Group
## 2627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump & Musk Consider DOGE Dividend Checks; Santos: Nadler "Smelliest in Congress ", Former Transportation Secretary Pete Buttigieg Criticizes Democrats' Approach to Promoting Diversity; Scientists Reportedly Improve Existing Brain Decoder Using A.I. to Turn Thoughts into Text; NASA States Asteroid Has 3.1 Percent Chance of Hitting Earth in 2032.
## 2628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump 'gender ideology' executive orders seek to deny existence of trans people and end DEI
## 2629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump 's Executive Orders: A Drastic Reversal of Biden-Era Policies
## 2630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump 's inauguration: A hypocritical and frightening beginning - The Pace Press
## 2631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump 2.0 could spell end of pronouns on email signatures
## 2632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Acknowledges Black History Month After Weeks Of Attacking Diversity
## 2633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Acknowledges He Doesn't Have Evidence DEI Caused D.C. Plane Crash
## 2634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Admin Axes FEMA Employees Behind $59 Million Scheme To Fund 'Luxury' Hotel Stays For Migrants
## 2635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Admin Defends Agenda As CNN Poll Shows Rising Pessimism; White House: Trump "Very Frustrated" With Zelenskyy Right Now; Senate Confirms Kash Patel To Lead FBI In 51-49 Vote; Trump Economist: DOGE Checks To Americans Wouldn't Drive Inflation; Hamas Releases Remains Of Four Israeli Hostages. Aired 4-5p ET
## 2636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Admin Directs Agencies to Prepare for Large-scale Firings; Trump Says U.S. To Sell $5 Million 'Gold Card' That Offers Path to Citizenship; Johnson, Trump Pull Off Last-minute Win as House Passes Budget Plan; Sexually Explicit Messages Found on NSA Chat Rooms; Pope Remains in Critical but Stable Condition; National Parks Litter Turned to Art; Zelenskyy Says Security Guarantees by U.S. Could Be a Step Toward Peace; U.S. Votes Against U.N. Resolution Condemning Russia 's War on Ukraine . Aired 8:30-9a ET
## 2637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump Admin Dismantles Federal DEI Offices, Puts Staffers on Leave; At Least Nine Dead as Once-in-a-Generation Storm Slams South; Prince Harry Settles Legal Claim Against The Sun Publisher. Aired 7- 7:30a ET
## 2638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Admin Offering Millions Of Gov't Workers 'Payout' If They Would Rather Step Aside Than Return To Work
## 2639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Admin Orders All Federal DEI Office Staff to be on Paid Leave
## 2640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Admin Ousts Left-Wing Biden Appointee Stacey Dixon From Key Intel Position Ahead Of Gabbard Hearings
## 2641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Admin Reportedly Set To Can Notorious Liberal General
## 2642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Admin Resists " Russian Aggression" Phrase In G7 Document; Elon Musk's Chainsaw; "Inflation Is Back"; Surgeon: Insurance Is Taking The "Humanity" Out Of Health Care. Aired 7-8p ET
## 2643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump Admin. Tries To Clarify Remarks On Taking Over Gaza; Trump Orders Ban On Transgender Women In Women's Sports; CIA Offer "Buyouts" To Workforce; Doubts Over Trump's Immigration Policy In Red Nebraska ; U.S. Postal Service Briefly Pausing Package Deliveries From China. Aired 6-7p ET
## 2644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump Administration And Colombia Reach Agreement On Migrant Flights; Navajo Officials: 15 Indigenous People Questioned Since Wednesday; Super Bowl LIX: Chiefs Vs. Eagles. Aired 5:30-6a ET
## 2645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Administration Eliminates Diversity, Equity, and Inclusion Initiatives, Affecting College Landscapes Across the Nation - The New Hampshire
## 2646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump Administration Gives Update on Black History Month After Anti-DEI Order
## 2647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Administration Puts Dozens Of USAID Senior Officials On Paid Leave; White House Pauses All Federal Grants And Loans; Lawsuit: Electric Sparking Caught On Video Started Eaton Fire. Aired 7:30-8a ET
## 2648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Administration Rescinds Grant Freeze Memo Here s Everything We Know
## 2649                                                                                                                                                                            Trump Administration Sending 1,500 Troops To Border; Prosecutors Ordered To Follow Immigration Agenda; Senate Scheduled Hearings For Nominees; Democrats Invoking 30-Hour Debate Rule On Donald Trump Pick; Massive Blaze In Northern Los Angeles County; European Concern About Trump Tariff Threats; Trump Policy Pronouncements Unveiled At Frenetic Pace; Rubio Signals Changes To State Department Priorities; Secretary of State Marco Rubio Sends Cable to State Department Employees Detailing President Trump's Foreign Policy Overhaul; Panamanian Government Submit Letter of Complaint to U.N. Security Council Rejecting President Trump's Claims To Panama Canal; History Of Sanctuary Cities Beginning With Berkeley , California , Examined; Democrats Delaying Senate Confirmation Votes On Some Trump Cabinet Nominees; Justice Department Instructed To Investigate State Or Local Officials Who Obstruct Immigration Enforcement
## 2650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Administration Targeting Generals and Admirals?; IRS Layoffs Expected; Senate Set to Approve Kash Patel; Ukraine - U.S. Relationship Falling Apart?. Aired 1-1:30p ET
## 2651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Administration Tells Agencies To Carry Out Widespread Layoffs; Vance To WSJ: Sending U.S. Troops To Ukraine Is "On The Table"; Jets Moving On From Rodgers. Aired 5:30-6a ET
## 2652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Administration Will 'Collapse' in 30 Days, Says James Carville
## 2653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Administration demands schools dismantle DEI programs or risk federal funding
## 2654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Administration orders DEI program cuts, sparking widespread concern
## 2655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Administration's Anti-DEI Letter Causes Confusion, Anxiety
## 2656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Administration's Legal Strategy Raises Constitutional Concerns - Chicago Maroon
## 2657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Administration's new DEI orders and directives raise uncertainties at Hopkins
## 2658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Administration: Follow the Law
## 2659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Aides Defend Gaza Takeover Proposal; Critics Raise Concerns About Elon Musk's Role In Government; Trump Targets Federal Workers For Mass Layoffs; Sweden Mourns Worst Mass Shooting In Country's History; Palestinians Push Back Against Gaza Takeover Idea; Trump Proposal To Remove Palestinians From Gaza Called A Crime Against Humanity; Syria Sees Long Road Ahead As It Starts To Rebuild. Aired 12-12:45a ET
## 2660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Announces Statues Of Several Legendary Athletes Will Be Placed In National Garden Of American Heroes
## 2661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump Announces Sweeping Tariffs On China, Canada, Mexico ; One- On-One With Former Treasury Secretary Larry Summers. Democrats Pick Minnesota 's Ken Martin as New DNC Chair; Trump Nominees Clean Up Past Comments Before Senate; Can Democrats Retake the House Majority Next November? Aired 8-9a ET
## 2662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Approval At 47 Percent, Higher Than Any Point In First Term; Americans Weigh In On Trump's First Month In Office; 62 Percent Say Trump Not Doing Enough To Bring Down Prices; Source: DOGE Firings Amount To "Indiscriminate Madness"; McConnell Announces He Won't Run For Reelection; Senate On Track To Confirm Patel As FBI Director This Afternoon; One Month In: Much Of Project 2025 Agenda May Be Still To Come. Aired 12-12:30p ET
## 2663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Approval Dips, Still Above Any Point in His First Term; Hamas Hands Bodies of Four Israeli Hostages to Red Cross; Trump Holds Event Marking Black History Month. Aired 3:30-4p ET
## 2664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Baselessly Appears To Blame FAA "Diversity Push" For Collision; 67 Presumed Dead In Mid-Air Collision Over Potomac River ; Kash Patel, Tulsi Gabbard Face Confirmation Hearings; Sources: FBI Agents Association Officials Urged Patel To Protect Agents Who Investigated Jan. 6 Violent Crime. Aired 12:30-1p ET
## 2665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Border Agenda Moves At Full Throttle; ICE Arrests 1,200 Illegal Immigrants In One Day; Kristi Noem Oversees First NYC ICE Raids; New York Magazine Defends "Cropped" Image On Cover; Conservative Group Creates DEI Watchlist; Philanthropist Cuts Through Red Tape To Help Victims; Gen Z TikToker Helps RFK Jr. Reach Young Voters
## 2666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Brings Receipts On DC Waste; Miller Schools CNN On DOGE; Democrats Cry About DOGE's Reign Of Terror; Elon Gets A Dose Of TDS; DOGE Exposes Insane Government Waste; Former Democrat Voters Love The Pace Of Change; Mexico Threatens To Sue Google Over Map; Trump Boots AP Over Gulf Of America Snub; Trump Airstrikes al-Qaeda Leader; Carville: Sit This One Out, Democrats; Democrats Are In Shambles; Biden Chocked Projects With Woke Red Tape;
## 2667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Cabinet Picks Face Senate Scrutiny; President Trump Takes Questions at White House; Secretary of State Marco Rubio Heading to Panama ; Midair Collision Investigation Continues
## 2668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Calls For Federal Emergency Response Reform; Trump Meets Newsom In Los Angeles Before Damage Tour; Donald Trump Meets Gavin Newsom In Los Angeles Before Damage Tour; Senate To Hold Confirmation Vote On Pete Hegseth; New Administration Addresses March For Life Rally; President Trump Issues Executive Order Directing Justice Department To Investigate Diversity, Equity, And Inclusion Hiring And Training Practices Of Publicly Traded Corporations; President Trump Orders Review And Potential Overhaul Of Federal Emergency Management Agency Department
## 2669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Continuing to Blame DEI For Midair Collision; White House Holds Press Briefing; Midair Collision Investigation. Aired 1-1:30p ET
## 2670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Could Host Jan. 6 Rioters After Pardons; Trump's War On DEI; At Least Two Injured In Nashville School Shooting. Aired 2-2:30p ET
## 2671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Dealt Double Down Blow Amid Effort To Gut U.S. Government; Musk Deputy Out; "Most Dangerous Nominee?"; Report: Russia Falls For Spoof Report On China's DeepSeek. Aired 7-8p ET
## 2672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Declassifies, JFK, RFK and MLK Files; America Becomes the Crypto Capital; Trump to Davos : America is Back, Get Used to It; Trump Lifts Freeze on Natural Gas Exports; Trump Puts the Elite in their Place; Trump Signs Flurry of Executive Orders; America is Back and Open for Business; Democrats Descend Into Civil War; Carville: No One Wants to Hear from Biden Again; Democrats and Media are Falling Apart; Democrats are Desperate for New Leaders; Chris Hansen Takes Down a Naked Predator; ICE Agents Take Down Criminal Aliens;
## 2673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Delays TikTok Ban as He Looks for Options to Save It; Blue-collar Trump Voters Want Quick Proof Promises Will Be Kept; Trump Shares Letter From Biden Left in Resolute Desk With Fox News. Aired 12:30-1p ET
## 2674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Delivers Fresh Tariff Threats Against EU And China; U.S. Military Sends More Troops To U.S. - Mexico Border Amid Trump Immigration Crackdown; U.N. Official Says More Than 2,400 Aid Trucks Enter Gaza Under Ceasefire; DOJ Issues Memo Threatening Officials Who Resist Immigration Crackdown; Mexico Foreign Minister Spoke With U.S. Secretary Of State Rubio; Record Snowfall Across Southern U.S. Aired 2-3p ET
## 2675                                                                                                                                                                                                                                                                                                                                            Trump Does Laps At Daytona 500; Canadians Boo US National Anthem; Miller Exposes Massive Tax Fraud; Hegseth Says Biden's IRS Audited Him; Elon Is Ready To Audit The Auditors; DOGE To Look Into Fort Knox Gold Reserve; America Wasters Millions On Foreign Pet Projects; Democrats Believe They Own The Government; Media Defends Bloated Government; CBS Thinks Free Speech Caused The Holocaust; Trump's Border Policies Are Working; Homan: All Criminal Migrants Must Be Deported; Border Crossings Reach Historic Lows; Kamala Gives Lame Pep Talk On Broadway; Psaki Rips Kamala For Campaigning With Cheney; Resistance Sings Away Its Pain; Protesters Drags Trump Effigy with Noose; Historians Want To Cancel Presidents' Day; "The Unbreakable Boy" Comes Out On Friday
## 2676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Doubles Down On Attacking DEI After Fatal DC Plane Crash But FAA s Diversity Hiring Policies Existed For Years
## 2677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Expected To Lay Out Plans To Make Tip Tax-Exempt; Pete Hegseth Sworn In As Defense Secretary; Guatemalan Officials On U.S. Deportation Actions; 4 Israeli Soldiers Freed In Latest Round Of Hamas Hostage Release; Putin Claims " Ukraine Crisis" May Have Been Prevented If Trump Was In Power; U.S. Cancer Rates Rising Among Younger Women. Aired 3-4p ET
## 2678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Expected To Sign Executive Orders Banning DEI, Transgender Service Members From Military
## 2679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Expected to Reshape Military With New Executive Orders; Trump Expected to Sign Order Banning Transgender Service Members; Trump Admin Launches Immigration Crackdown in Chicago. Aired 2-2:30p ET
## 2680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump Fires Board Members of the Kennedy Center, Appoints Himself as Chairman
## 2681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Fires Chairman Of The Joint Chiefs Of Staff; Judge Blocks Trump's Order Targeting DEI Programs; Supreme Court Says, Watchdog Fired By Trump Can Stay on Job; Maine Governor Takes A Stand Against Trump's Policy On Transgender Athletes; Actor George Clooney Explains Why Donald Trump Won And Why Joe Biden Clung To Hope That He Could Win. Aired 10-11p ET
## 2682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump Fires Inspectors General From Over A Dozen Federal Agencies; Trump Suggests Plan For Gaza Is To "Clean Out The Whole Thing"; NIH Told It Can Continue Purchasing Supplies For Studies. Aired 7:30-8a ET
## 2683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Fires Justice Department Officials Who Prosecuted Him; Trump Plots Strategy With House GOP as He Readies New Orders; Chinese A.I. Advancement Sends U.S. Tech Stocks Plunging. Displaced Palestinians Making Emotional Return To Gaza; Survivors Mark 80 Years Since Auschwitz Liberation. Aired 6-7p ET
## 2684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Fires Military's Top General
## 2685                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump Fires Top U.S. General, Calls Gen. Charles Brown A "Fine Gentleman"; Trump Falling Sort; Acting ICE Director Removed Amid Frustration Over Pace Of Arrests; Pentagon Announces It Plans To Fire 5-8 Percent Of Civilian Workforce; NY Times Columnist: Musk Is "Operating As What Cybersecurity Experts Call An Insider Threat"; Mine Workers Tell CNN Musk Claims Are False; Alleged Healthcare CEO Killer Appears In Court, Attracting Dozens Of Supporters, Observers; Los Angeles D.A. Urges Judge To Deny Menendez Brothers' Request For A New Trial; Second Body Said To Be That Of Israeli Hostage Shiri Bibas Handed Over By Hamas. Aired 8-9p ET
## 2686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Floats Gutting The IRS Moving Agents To The Border Armed With Guns; Biden Admin Quietly Spent $15 Mil To Distribute 'Contraceptives and Condoms' In Afghanistan ; CIA Now Says COVID-19 Is More Likely To Have Originated From A Lab Leak; Previous Comments Criticizing Lab Leak Theory For Origins Of COVID-19 Examined; Trump Administration's Education Department Throwing Out 11 Complaints Against Book Bans; During His Podcast Howie Mandel Introduces Possible Half-Brothers Bill Burr And Billy Corgan Without Burr's Knowledge.
## 2687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Funding Freeze Remains in "Full Force" Despite Rescinding Memo; Kennedy Confirmation Prospects Unclear After Combative Hearing; FBI Director Nominee Kash Patel In The Hot Seat; Defense Secretary Revokes Security Detail And Clearance For Trump Critic General Mark Milley; American Volunteer Fighters Killed And MIA In Ukraine . Aired 8-9p ET
## 2688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Had A Busy First 12 Hours In Office - Here Were His First Big Moves
## 2689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump Heads To L.A. To Survey The Fire Damage; Trump Suggests Eliminating FEMA; WH: Deportation Flights Have Begun; U.S. -North Korean Relations; Djokovic Withdraws from Australian Open. Aired 6-7p ET
## 2690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Hits Top Trading Partners Canada, Mexico , China With Tariffs; Secretary Duffy: We Are Going To "Surge" Air Traffic Controllers; NBA Trade Stunner: Doncic To Lakers And Davis To Mavericks. Aired 7:30-8a ET
## 2691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Hosts France's Macron At Crucial Moment For Ukraine ; Interview With Senator Mark Kelly (D- AZ ); MAGA Podcaster Dan Bongino Tapped To Be Next FBI Deputy Director; Former Proud Boys Leader Taunts Officers Who Protected; Political Conference In D.C. Interrupted By Death Threats Against Speakers Critical Of Trump; Colorado Trump Voters On The President's Tumultuous New Term; Clint Hill, Secret Service Agent Who Jumped Onto Limo After JFK Was Shot, Dies At 93. Aired 8-9p ET
## 2692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Hosts Japanese PM In Washington; Israel Receives Names Of Hostages To Be Released By Hamas Saturday; The Impact Of USAID Funding Cuts In Africa; Elon Musk Targets UK PM Starmer Over Abuse Scandal; Chiefs And Eagles Prep For Sunday's Big Game. Aired 3-4p ET
## 2693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Introducing Pfizer CEO Sparks Loud Booing Inside White House
## 2694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Issues Dire Warning To Iran
## 2695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Jump Starts Second Term With Stunning Slew of Executive Orders; Southern States Brace for Another Major Winter Storms; Trump Threatens 25 Percent Tariffs on Mexico and Canada on Feb. 1. Aired 7- 7:30a ET
## 2696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Kicks Off Second Week in Office with Raft of New Executive Orders
## 2697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Lashes Out At Jerome Powell After Fed Doesn t Cut Interest Rates
## 2698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Launched FAA Diversity Program to Hire People With Disabilities
## 2699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Lays Out Foreign Policy Plans; Fox News Embeds With Deportation Officers; Some Locals Are Appreciative Of ICE Making Arrests; "The Worst First" Deportations Underway; Trump Sends Strong Message To World Economic Forum; Trump Pardons Nearly 1,600 January 6th Defendants; Charges Dropped On Massaquoi Thanks To Trump Pardons; New Brush Fire Breaks Out In Ventura County ; L.A. Residents Want Answers From City Officials; Trump Set To Visit Los Angeles On Friday; Federal Agencies Accused Of Hiding DEI Programs
## 2700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Looks to Week Two; U.S. Cities Brace for Trump's Immigration Crackdown; Trump Picks Face Confirmation Hearings This Week; Netanyahu Arranging Meeting with Trump; U.S. Justice Dept. Wipes Jan. 6 Database; Los Angeles Looks to Rebuild; Israel Stops Palestinian from Returning to N. Gaza; Trump Says He'll Meet with Putin. Aired 4-5a ET
## 2701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Makes Demands, Threats in First Message to World; Trump on Musk Criticizing A.I. Announcement, He Hates Altman; Two GOP Senators Will Vote Against Pentagon Pick Hegseth. Federal Judge Blocks Trump's Executive Order Targeting 14th Amendment. Aired 10-11p ET
## 2702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Makes Unprecedented Shake-up At The Pentagon; CNN Presents " America Asks"; Fans Flock To See Alleged Killer Luigi Mangione In Court; Major Setback In Bid To Free The Menendez Brothers; Laura Coates Interviews Roy Wood Jr. Aired 11p-12a ET
## 2703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump Media set to launch its own financial investment brand
## 2704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Meeting Key GOP Leadership, Speaking Soon; Trump Signs Executive Orders, Says U.S. Decline Is Over; Trump Begins Immigration Crackdown On Day 1; Former AG Barr On Trump's Power To Secure Border; Hunter Laptop Letter Signees Stripped Of Clearance; Trump To Unveil AI Infrastructure Venture
## 2705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Officials Raise Concerns Over 'Antiquated' Air Traffic Tech
## 2706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump Order Issued and Rescinded, Leaving Students Confounded
## 2707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Orders Dash Myanmar Refugees' Dreams of Living in the U.S.
## 2708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Orders End Of Federal DEI Programs; Musk Casts Doubt On Trump's $500B AI Project; Trump Rebuffs Security Concerns Over Kids Using TikTok. Aired 6:30-7a ET
## 2709                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Orders Precision Airstrikes In Somalia ; Seven People Dead After Medical Jet Crashes In Philadelphia; Today: Trump To Impose Tariffs On Mexico , Canada And China; Defense Dept. Will Not Host Events To Recognize "Identity Months"; Media Spars With Trump Over DEI Assertions; Hamas Releases 3 Hostages From Gaza, Including Israeli - American ; 183 Palestinians Freed In Latest Round Of Hostage Releases. Investigators Could Give Initial Black Box Findings Today; First Responders Salute Remains Of Servicemembers; Today: Trump To Impose Tariffs On Mexico , Canada And China; "Super/Man: The Christopher Reeve Story" Airs Tomorrow At 8PM ET/PT. Aired 1-2p ET
## 2710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Orders Review of FAA Hiring Decisions During Biden Admin
## 2711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Pardons January 6th Rioters; Skye Perryman is Interviewed about a Lawsuit against DOGE; CNN Original Series on Kobe Bryant. Aired 9:30-10a ET
## 2712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Pardons Nearly All Charged With January 6 U.S. Capitol Riot; Trump Begins Slew Of Executive Actions On Immigration, Economy, Other Programs; Taliban Announce Release Of Two Americans Held In Afghanistan In A Prisoner Exchange; Trump Speaks Out On U.S. -China Ties, Potential Tariffs. Trump Speaks Out on U.S. -China Ties, Potential Tariffs; Trump Hails "Golden Age"; Trump Plans to Meet Putin, End Ukraine War Quickly; Trump Vows to Take Back Panama Canal; Prince Harry Suing Rupert Murdoch's Tabloids. Aired 1-2a ET
## 2713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump Pauses Federal Grants and Loans, Taking Effect Today: Live Updates
## 2714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Pauses Tariffs On Canada And Mexico For 30 Days; Netanyahu In Washington To Meet With President Trump; China Imposes Retaliatory Tariffs On U.S. Imports. Aired 5-5:30a ET
## 2715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Pauses Tariffs On Mexico And Canada; USAID Agency Workers Sent Home; Netanyahu Set To Meet With Trump On Tuesday; Israeli Operation In Jenin; Beyonce Wins Big At The Grammys. Aired 6-7p ET
## 2716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Picks Chiefs To Win Super Bowl And He s Clashed With The Eagles In The Past
## 2717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Places Freeze On Federal Credit Cards In Newest DOGE Executive Order
## 2718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump Plans About 100 Executive Orders & Actions On Day One; Freed Palestinians Greeted By Huge Crowds In West Bank; Trump Seeks Dialogue With China While Pushing Hardline Stance; Trump Plans about 100 Executive Orders and Actions on Day One; Trump Makes Big Promises But Can He Deliver. Aired 1-2a ET
## 2719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Plans To Own, Control, And Develop Gaza; Democrats Blast Elon Musk; CIA Offering Buyouts To Entire Workforce; New York Doctor Indicted In Louisiana For Sending Abortion Pills. Aired 11p-12a ET
## 2720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump Proposes U.S. Take Over Gaza To Be Riviera; Trump Not Ruling Out Sending Troops To Take Over Gaza; Speechless Democrats On Trump Wanting To Seize Gaza, Insane; CIA Offers Buyouts To Its Entire Workforce; Democrats Versus Elon Musk. Aired 10-11p ET
## 2721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Pushes for Radical Changes Across the Policy Spectrum
## 2722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Questions FEMA s Usefulness, Says He d  Rather See The States Take Care Of Their Own Problems
## 2723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump Reshapes America 's Government & Alliances; CNN Poll: 62 Percent Say Trump Has 'Not Gone Far Enough' to Reduce Prices; Arctic Blast Sets New Cold Records Across the Central U.S. Aired 6-6:30a ET
## 2724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Responds After Jet Crashes in Philadelphia: 'So Sad'
## 2725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump Says DOGE Could Give 20% of Savings Directly to Taxpayers: Live Updates
## 2726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump Says He Will Take on Paper Straws With Executive Order
## 2727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Says He'll Pause Tariffs On Mexico For One Month; Trump Admits Tariffs May Cause "A Little Pain" For Americans; Trump Says He'll Speak Again With Canadian PM This Afternoon; Musk Team Gains Access To System That Writes America 's Checks; Trump, Allies Pulling Levers Of Power That Few Knew Existed; Secretary Of State Rubio Says He Is Acting Director Of USAID. Aired 12-12:30p ET
## 2728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Says Musk Head Of DOGE, White House Says He's Not; Trump Dodges On Musk Decisions, Firings And Resignations; Steve Bannon Says, Elon Musk Is Parasitic Illegal Immigrant; MAGA Universe Says SNL Skit Reviled Them; Michigan Judge Sentences Shoplifters To Wash Cars For Free In A Walmart Parking Lot. Aired 10-11p ET
## 2729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Says Pausing Government Websites Not 'Bad Idea' Amid Outage Reports
## 2730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Says Putin Agreed To Start Talks On Ukraine ; U.S. Inflation Hits 3 Percent For First Time Since June; Trump Speaks With Reporters In The Oval Office. Aired 4-5p ET
## 2731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Scores Major Legal Win Against Pulitzer; More Public Hysteria From The Left
## 2732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Shows 'Leftist Idealogues' Entrenched In Military Academies The Exit
## 2733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Shuts Down Federal DEI Initiatives And Put Staffers On Leave
## 2734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Signs "No Men In Women's Sports" Exec Order; Bureaucrats Fume Over DOGE Spending Cuts; Democrats Protest USAID Funding Pause; Female Athletes React To Trump Executive Order; XX-XY Athletics Ad Goes Viral On Social Media; Delta And Japan Airlines Planes Collide In Seattle ; White House On Trump's Gaza Announcement; Former Ambassador Says Trump Is Aware Of Limitations
## 2735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Signs Order Banning Trans Athletes From Women's Sports; Texas Governor On Trump's Border Crackdown; Fired Agents Sue, Accusing DOJ Of Violating Constitution; Bondi Sworn In As Attorney General Amid DOJ Turmoil; Trump Expected To Get Mar-a-Lago Classified Docs Returned. Aired 5-5:59p ET
## 2736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Signs Order Targeting "Anti-Christian Bias"; Media Reaction To 'DOGE' And Executive Orders; CNN Anchor Compares Elon Musk To George Soros; Navarro: We Should "Hit The Streets" In Protest; Newsom Softens Tone About Trump Wildfires Response; Grenell Meets With Bass In Wildfire Aftermath; Homan Blames Leak For Failed Immigration Operation; RPT: Mexico Does Not Want Migrants Sent To Gitmo; Bondi Pauses Federal Funding For Sanctuary Cities; NCAA Updates Policy On Trans Athletes; All The Right Movie Times: Should Theaters Be Obligated To Show Actual Start Time?
## 2737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Speaks Ahead of Signing Laken Riley Act; Senators Grill RFK Jr. Aired 2:30-3p ET
## 2738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Speaks At CPAC Amid Major Purge At Pentagon; Dozens Line Up For Free Eggs in New York City ; Lawmakers Face Backlash At Town Halls Over DOGE Cuts; Former Employees, Lawmakers Express Concern Over CDC Layoffs; Elon Musk's Private Security Detail Deputized By U.S. Marshals; Crowds Gather To Support Suspect Luigi Mangione At Court Appearance. Aired 3-4p ET
## 2739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Suggests He s Considering  DOGE Dividend  Checks For Americans
## 2740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Tackles Workplace In First Executive Orders
## 2741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Takes Necessary Action To Eradicate DEI | Opinion
## 2742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Takes On The Media; "60 Minutes" Releases Unaired Kamala Footage; Trump Takes on Pulitzer Prize Board; NFL Swaps "End Racism" For "Choose Love" At Big Game;
## 2743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Talks Border At House GOP Retreat
## 2744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Talks Jan. 6 Pardons, Immigration, Biden in Oval Office Interview; Trump Targets Federal Workers Who Focus on DEI; Trump's Bid to End Birthright Citizenship Faces Legal Challenges; Fast-Spreading Hughes Fire Racing in Los Angeles County . Aired 9-9:30a ET
## 2745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Tells Federal Officials To Rein In DEI Programs at Universities
## 2746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump Threatens Diversity, Equity and Inclusion
## 2747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Threatens Funding Cuts For K-12 Schools That Teach Gender Ideology And Critical Race Theory
## 2748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Threatens Tariffs with Japanese Prime Minister; US Jobs Report: Employers Added 143K Jobs in January; Trump Expected to Slash 97 Percent of USAID Workforce; Trump: Europe Is Lagging Behind U.S. In Support For Ukraine ; Trump Uses Tariffs, Threats In Disputes With Other Countries; Baltic States Readying To Cut Ties To Russian Power Grid. Aired 4-5p ET
## 2749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Threatens to Cut Off Funding for Sanctuary Cities; Trump's Immigration Plans Bring Refugee Programs to a Halt; Scientists Sound the Alarm After Trump Administration Halts NIH Meetings; Elon Musk Bashes Trump's $500 Billion A.I. Project; Trump Criticizes FEMA, Questions if Disaster Agency is Needed. Aired 8:30-9a ET
## 2750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump To Make First Major Speech To Global Business, Political Leaders; Trump Targets Federal Employees Involved With DEI Practices; President Trump Announces Withdrawal From World Health Organization. Aired 7:30-8a ET
## 2751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump To Putin: End War Or Face Tariffs, Sanctions; Trump Pushes Ambitious Agenda In First 100 Days; Now, White Press Secretary On Trump's First Week In Office; Democrats Stalling Confirmation; Protesters Disrupt Class On Israel At Columbia; Bishop Defends Lecturing Trump On Migrants, LGBTQ; Deadline To End Government Diversity Programs
## 2752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump Tours States Hit By National Disasters; White House: US Using Military Planes To Deport Migrants; Hamas Names Four Hostages To Be Released Saturday; Trump Floats "Getting Rid Of FEMA"; Hamas Names Israeli Hostages Due For Release; Trump Heads To California To See Wildfire Damage. Aired 4-5p ET
## 2753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Unveils $500B Stargate AI Initiative with Tech Giants: Live Updates
## 2754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump Vs. Education Department: McMahon Says She ll Keep Pell Grants, Title I As Trump Pushes To Shutter DOE
## 2755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Wants Dept. Of Education To Be "Closed Immediately"; Trump Speaks With Russia 's Putin & Ukraine 's Zelenskyy; Democrats Bash Musk In First DOGE Subcommittee Hearing; Rep. Jasmine Crockett, (D- TX ), Is Interviewed About DOGE Subcommittee Hearing, Elon Musk; Trump Plan To Slash USAID Could Cost U.S. Farmers Billions. White House Bars Associated Press Over "Gulf Of America"; CNN Speaks With The Attorneys Who Managed Prisoner Swap; U.S. Hit By Most Intense Flu Season In 15 Years. Aired 5-6p ET
## 2756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Welcomes Freed American Prisoner; Moments Ago: Trump Greets Fogel At White House; Trump Threatens Hamas Over Release Of Hostages; Trump Calls Hamas "Bullies" As Deadline Looms; DHS Fires FEMA Employees Over NYC Migrant Hotels; Sama Altman Says Trump Is A "Breath Of Fresh Air; The Left's New Phrase Is "Constitutional Crisis"; Media Reaction To Trump's DOGE Executive Order; FBI Discovers Thousands Of JFK Assassination Files; Some L.A. Residents Frustrated Over C.A. Leadership; Grenell To Army Corps, Speed Up Debris Removal
## 2757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Welcomes Japanese Prime Minister To White House; World Leaders Watching Trump's Early Moves Closely; Panama Says State Department Claim About Canal Fees Are "Based on A Falsehood"; Project 2025 Co-Author Starts Job As Trump's Budget Chief; New Time Cover Depicts Musk Sitting Behind President's Desk. Aired 12-12:30p ET
## 2758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump White House Holds First Press Briefing. Aired 1-1:30p ET
## 2759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump White House Stirs New Confusion As It Tries To Clarify Status Of Frozen Federal Funds; RFK Jr. Grilled On Vaccines & Abortion In Confirmation Hearing; Israel : Three Israeli And Five Thai Hostages To Be Released Thursday. Aired 4-5p ET
## 2760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump White House marks Black History Month while Defense Department declares 'identity months dead'
## 2761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump Won't Call Putin A "Dictator": I Don't Use World "Lightly"; Musk: "Failure To Respond A Second Time" Will Result In Firing; Ex-Official: NASA Never Got Offer From Musk To Help Astronauts. Aired 7-8p ET
## 2762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump accuses Dems of delaying his nominees in late night Truth Social rant
## 2763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump accuses USAID of being 'corrupt'; implies the agency's days are numbered
## 2764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump acts to remove Federal Election Commission chair – as it happened
## 2765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump admin orders federal DEI staff to be placed on paid leave by Wednesday
## 2766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump admin removes commandant of Coast Guard, citing border failures and focus on DEI
## 2767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump admin tells agencies to start firing DEI staffers
## 2768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump administration bans non- US flags from being flown at embassies
## 2769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump administration briefing: top immigration official removed and judge clears way for USAid firings
## 2770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump administration directs all federal diversity, equity and inclusion staff be put on leave
## 2771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump administration fires top US general and Navy chief in unprecedented purge of military leadership
## 2772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump administration gives schools a deadline to end DEI programs or risk losing federal money
## 2773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump administration letter orders higher education DEI termination
## 2774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump administration looks to slash HUD workers tackling the housing crisis
## 2775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump administration offers buyouts to federal workers
## 2776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump administration pauses federal grants, impact for OSU's research unknown
## 2777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump administration warns universities of funding cuts over continued DEI efforts
## 2778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump aid freeze ‘may force Stonewall to cut up to half of staff’
## 2779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump amplifies attacks on 'activist' judges halting DOGE's work as Democrats fear MAGA will defy courts
## 2780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump amps up pressure on companies to roll back DEI
## 2781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump and Allies Propose Increased Taxes on Scholarships, Endowments - The Bi-College News
## 2782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump and GOP map out agenda
## 2783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump and MAGA Allies Celebrating Firings Despite Chaos, Loss; Sources Say, 50,000-Plus Pentagon Workers at Risk of Firing; Trump Marks Black History Month Amid His War on Diversity. President Trump Says He Should Not Be Blamed For New Warning Signs About the Economy; V.P. Vance Talks About Masculinity In An Interview. Aired 10-11p ET
## 2784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump and Musk are Gutting the Deep State; Media Happily Defends Fired Feds; Democrats Go Nuclear with Elon Derangement; Time to Defund the Deep State Piggy Bank; Bondi Sues Chicago Over Sanctuary Laws; Trump Promises Largest Tax Cut in History; Trump to Honor US Heroes at New National Park; Trump: Let's Bring God Back into Our Lives; Media Can't Catch Up with Trump; RFK, Jr. to Face Confirmation Vote; The Left Has Fallen on Hard Times; Fetterman: I'm Not Sure WE Can Win Back White Men; Democrats Keep Fighting Losing Battles
## 2785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump and Musk's DOGE fire team of lawyers trying to stop drunk pilots from flying
## 2786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump and Putin have no plans to discuss Washington DC plane crash despite Russians on board: Live
## 2787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump appoints FAA-veteran Chris Rocheleau to serve as agency’s acting administrator
## 2788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump approval rating slips after flurry of executive actions: Survey
## 2789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump asserts dominance as GOP senators come to heel
## 2790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump at the Super Bowl: how the NFL’s culture war ended in surrender
## 2791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump bans transgender service members from military, floats unprecedented punishment for 'repeat offenders': Live
## 2792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump baselessly blames D.C. plane crash that killed 67 on DEI and Biden
## 2793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump baselessly blames DEI and Democrats for Washington DC plane crash
## 2794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump bashes Fed after bank doesn’t cut rates
## 2795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump berates Black Hawk helicopter crew for DC plane crash after targeting DEI
## 2796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump blames 'no angel' Zelensky for Russian invasion ahead of Los Angeles visit to survey wildfire damage: Live
## 2797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump blames DC plane crash on DEI
## 2798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump blames DEI after tragic plane crash. This is our president. | Opinion
## 2799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump blames DEI for American Airlines crash that killed 67
## 2800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump blames DEI for plane crashes, Boston residents react
## 2801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump blames DEI for weakening FAA in aftermath of Reagan National plane crash
## 2802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump blames Democrats for fatal collision Mid-air crash President hits at diversity, equity and inclusion policies after deaths of 67
## 2803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump blames Obama and Biden for plane crash — as it happened
## 2804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump blames diversity hires for plane crash that killed 67
## 2805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump blames diversity hiring for Washington plane crash that killed 67
## 2806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump blames media for federal funding freeze chaos and reveals move has already uncovered millions in waste
## 2807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump blames others but Washington air crash comes amid upheaval in US aviation
## 2808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump cabinet flunkies hail wannabe Caesar and Elon, his oligarch pal
## 2809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump calls Ukraine 's Zelenskyy a 'dictator without elections' | The Excerpt
## 2810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump can't end the Department of Education without Congress but what programs can he curtail?
## 2811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump chairing a major arts institution would be laughable if it weren’t so deeply troubling
## 2812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump claims Musk has already found 'tens of billions' in savings. Even DOGE's social media accounts disagree
## 2813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump continues government purge by dismantling DEI from another agency
## 2814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump continues purge by dismantling DEI from another agency
## 2815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump could deport Prince Harry – this is how
## 2816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump criticizes FAA diversity efforts after deadly plane crash, even as he says he doesn't know the cause yet
## 2817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump culpa a la DEI y a Biden del accidente aéreo
## 2818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump cuts threaten a ‘generation of scientists’ as many weigh leaving US
## 2819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump declares transgender soldiers unfit for US military
## 2820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump defends pardons for rioters and suggests Proud Boys could have place in politics
## 2821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump defense chief reportedly orders Pentagon to plan for sweeping budget cuts – US politics live
## 2822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump demands apology from bishop for asking for mercy as latest executive orders target DEI: Live updates
## 2823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump despide al militar de más alto rango de EE. UU.
## 2824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump dismisses bishop’s call for mercy; ban on immigration raids in churches and schools scrapped – live
## 2825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump ditches script in Oval Office free-for-all At impromptu news conference, questions fly as fast as the executive orders are signed
## 2826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump divided America as a candidate. So far, he's doing the same as president
## 2827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump doles out security clearances to unvetted officials
## 2828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump doubles down on DEI attacks in wake of DCA crash
## 2829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump doubles down on DEI claims after DC plane crash
## 2830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump doubles down on blaming DEI for air tragedy as Fox host says diversity policies embolden 'dwarves': Live
## 2831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump drops European Union tariff bombshell as astonishing new front opens up in global trade war
## 2832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump eases on Colombia tariff threat after President Petro reluctantly accepts deported migrants: Live
## 2833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump ends DEI programs in the Federal Government
## 2834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump engaña al culpar a Biden y a las políticas de la DEI por el choque aéreo Verificación de datos
## 2835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump escalates attacks on Zelensky; administration moves to end New York 's congestion pricing tolls: Live
## 2836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump evicts highest-ranking woman in the military from her home on short notice after her ouster over obsession with DEI policies
## 2837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump executive order targets payments and travel after reporters barred from cabinet meeting – live
## 2838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump fans chant 'four more years' as president bathes in praise and hypes Elon Musk's DOGE at Black History Month event
## 2839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump fires Black joint chiefs chair Hegseth accused of promoting diversity
## 2840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump fires Charles Q. Brown as chairman of the Joint Chiefs of Staff
## 2841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump fires Democratic commissioners at civil rights enforcement agency
## 2842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump fires top-ranked US military officer as shake-ups spread
## 2843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump fires two Democratic commissioners of agency that enforces civil rights laws in the workplace
## 2844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump forces federal agencies to work with Musk as USAID inspector fired, ICE officials demoted: Live
## 2845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump freezes federal grant payments in surprise move
## 2846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump funding threat sends Mass. into red alert
## 2847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump gave schools 2 weeks to ban DEI. Lawyers say it's not that simple.
## 2848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump gets an early jump on his presidency - with Biden's help
## 2849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump gifts Elon Musk the Lincoln Bedroom at the White House after turning DOGE office into sleeping quarters
## 2850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump guts DEI, sending legal shockwaves across government, companies, schools
## 2851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump halts aid to South Africa citing new land law
## 2852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump has always been a white supremacist, and it has only gotten worse
## 2853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump has been president for nearly a month. How do you think he's doing? | Opinion
## 2854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump has brought much-needed attention to a site of great tragedy: the Gulf of Mexico
## 2855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump has declared war on DEI. What will change?
## 2856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump has fallen short with his war on DEI
## 2857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump has issued a freeze on grants and loans. Here's what it means for your bottom line
## 2858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump hit with suit by USAID workers union for slashing jobs as court blocks buyout offers: Live
## 2859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump holds Black History Month event as some agencies skip recognition after anti-DEI order
## 2860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump hosts Black History Month event despite diversity crackdown
## 2861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump huddles with House Republicans Agenda includes differences on tax cuts, spending
## 2862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump imposes 25% tariffs on steel and aluminum, threatens 'hell' for Hamas over hostages: Live
## 2863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump intensifies crackdown on diversity, immigration
## 2864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump introduces $5m 'gold card' visa alternative to green cards for 'high level people': Live updates
## 2865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump is Overwhelming the System; ICE Rounds Up Criminal Migrants; Homan: Illegal Immigration has Consequences; Homan Won't Apologize for Making us Safer; CNN Admits Americans are in Line with Donald Trump; The Military is Getting a Makeover; Secretary Hegseth Revamps the Military; Former Fed Worker Exposes Government Laziness; Trump Purges DEI from Government; Media Suddenly Interested in Grocery Prices;
## 2866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump is attacking DEI. Big businesses believe DEI is valuable
## 2867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump is back in office. Here's what it could mean for Carleton - The Carletonian
## 2868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump is holding the middle finger to Hopkins scientists and students
## 2869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump is humiliating his woke enemies – and it’s a joy to watch
## 2870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump is least popular newly-elected president for 80 years – for the second time
## 2871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump is not a cartoon villain; stop making him one
## 2872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump is set to sign a slew of executive orders on Day 1. What are his priorities?
## 2873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump is unleashing sadism upon the world. But we cannot get overwhelmed
## 2874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump isn't gutting medical research. He's cleaning up a corrupt system. | Opinion
## 2875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump issued a flurry of executive orders on Monday. Here are the most notable.
## 2876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump issues an ultimatum to senior FBI agents in his government purge after Kash Patel vowed to 'not go backward'
## 2877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump jumps right to the blame game over DC midair collision that left dozens dead
## 2878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump lashes out at CNN's Kaitlan Collins for asking if he's 'getting ahead of investigation' by blaming DC crash on DEI
## 2879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump launches White House faith office to protect Christians
## 2880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump leans into culture wars in first month in office
## 2881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump loyalist Peter Navarro steering trade war as White House says Elon Musk not in charge of DOGE: Live
## 2882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump makes bombshell decision on 'DOGE dividend' - here's how much every taxpayer could receive
## 2883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump makes dramatic pivot on stance towards the World Health Organization... days after ordering exit
## 2884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump message to corporate America : Stop 'illegal' DEI or face investigations
## 2885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump move to pause federal loans and grants rooted in Project 2025
## 2886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump moves swiftly on his agenda in a departure from his first-termstumbles
## 2887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump moves to slap tariffs on nearly every nation | The Excerpt
## 2888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump moves you might have missed this week
## 2889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump news in brief
## 2890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump no longer needs MAGA voters, so he's gutting Medicaid and laying off veterans | Opinion
## 2891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump nominates former fast-food CEO as ambassador to EU
## 2892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump obliterates DEI with new demand to place every federal diversity program employee on paid leave by 5 pm Wednesday
## 2893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump offering buyouts to all federal workers, source says
## 2894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump offers 2 million federal workers eight months' pay if they quit as funding freeze blocked by judge: Live
## 2895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump officials baselessly blame DEI in plane crash presser
## 2896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump order ending federal DEI programs leaves agencies and stakeholders on uncertain ground
## 2897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump order endsdiversity drive in US armed forces
## 2898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump order to turn Guantánamo Bay into migrant detention center prompts outcry – as it happened
## 2899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump orders FAA to terminate DEI hiring efforts
## 2900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump orders Treasury to stop 'producing new pennies' as he continues to target wasteful spending: 'literally cost us more than 2 cents'
## 2901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump orders all executive agencies to place DEI employees on leave: Updates
## 2902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump orders all federal employees to remove pronouns from their emails
## 2903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump orders end to remote work, hiring freeze for federal workers
## 2904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump orders end to ‘radical gender ideology’ in US military
## 2905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump orders purge of military academy visitor boards
## 2906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump orders reflect his promises to roll back transgender protections and end DEI programs
## 2907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump ousts top U.S. general Charles "CQ" Brown
## 2908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump pauses ALL federal grants, loans and other assistance, leaked memo reveals
## 2909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump pauses federal grants, impact for research universities unknown
## 2910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump picks right-wing podcaster as FBI deputy
## 2911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump plays golf with Tiger Woods before attending Super Bowl
## 2912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump pledges Iron Dome to shield US from hypersonic missiles
## 2913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump points finger at diversity ty drive under Biden and Obama
## 2914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump praises Elon Musk as pair repeat familiar criticisms of opponents – as it happened
## 2915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump predicts ‘billions’ of dollars of Pentagon fraud in Fox News interview
## 2916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump preparing plans to dismantle the 'woke' Department of Education through executive order
## 2917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump presidency sparks concerns over future of diversity culture at UK firms
## 2918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump prioritizes immigration, DEI rollback and government reform in first week - The Parthenon
## 2919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump promises to make King's dream a reality, as some rally to defend civil rights
## 2920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump puts all DEI federal employees on leave
## 2921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump puts all diversity staff on leave ‘immediately’
## 2922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump puts all federal DEI workers on leave - and plans to fire them - in latest 'culture wars' attack
## 2923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump puts his people first. We should too America is slashing foreign aid. It's time we ignored the global elites and prioritised Britain 's national interest
## 2924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump puts tariff threat on hold after Colombia agrees to take deported migrants: Live
## 2925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump raises alarm with Napoleon dictator quote as 20 immigration judges abruptly fired: Live updates
## 2926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump refuses to take accountability for deadly plane crashes
## 2927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump reiterates hostage deadline threat to Hamas; scramble to fix DOGE's nuclear experts blunder: Live
## 2928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump releases message ahead of Super Bowl as he jets into New Orleans after playing golf with Tiger Woods
## 2929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump removes Brown, names new Joint Chiefs of Staff chairman
## 2930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump removes Joint Chiefs chairman Gen. CQ Brown in purge of military leaders
## 2931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump removes chairman of Joint Chiefs Military purge affects several senior officials
## 2932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump rescinds measure used to fight workplace discrimination for 60 years
## 2933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump reshapes policy with flurry of executive orders - The DePaulia
## 2934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump returns to power after unprecedented comeback, emboldened to reshape American institutions - UNF Spinnaker
## 2935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump reverses Biden diversity ban on saying ‘airmen’
## 2936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump revokes Biden-era order allowing transgender members to serve in military
## 2937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump rolls back DEI across the federal government. Is your workplace next?
## 2938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump rolls back DEI rules in the federal workforce
## 2939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump rolls back bedrock 1960s-era civil rights measure
## 2940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump rolls back trans and gender-identity rights and takes aim at DEI
## 2941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump s Biggest Staff Shakeups So Far: DEI Employees On Leave, DOJ Vets Reassigned, José Andrés Fired
## 2942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump s Executive Orders: Here Are All His Big Day-One Actions On Immigration, Energy, TikTok And More
## 2943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump s Federal Worker Buyout Pause Lifted: Here s What To Know As 75,000 Workers Accept Offer
## 2944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump sacks US military’s top-ranked officer
## 2945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump sacks coast guard leader over ‘excessive diversity focus’
## 2946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump says FEMA is "getting in the way" and states should "take care of their own problems"
## 2947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump says USAID run by "a bunch of radical lunatics" as Dems demand answers on DOGE visit
## 2948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump says disaster management agency ‘getting in the way’, states should take care of own problems – live updates
## 2949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump says he hasn't read it, but Project 2025's dystopian vision is coming true before our eyes
## 2950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump says he wants Kyiv to 'do a deal' to give the US Ukraine 's rare earth metals in exchange for aid
## 2951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump says helicopter in crash was flying too high
## 2952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump says ‘I’m OK with’ Russian president Putin’s demand to keep Ukraine out of Nato – as it happened
## 2953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump scores big win as John Ratcliffe confirmed as CIA director
## 2954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump seeks to expand his influence over arts and culture with Kennedy Center moves
## 2955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump selects DEI critic and former Virginia senate candidate Hung Cao for Navy's No. 2 post
## 2956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump signed slew of executive orders on Day 1. What are his priorities?
## 2957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump signs 26 executive orders on first day in office
## 2958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump signs 4 new executive orders, transforming military
## 2959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump signs an order to revise the Pentagon’s policy on transgender troops
## 2960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump signs bombshell executive order to make himself the most powerful president in history as he enacts controversial Constitutional theory
## 2961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump signs executive order to eradicate DEI from the FAA and makes awkward JOKE about visiting plane crash site
## 2962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump signs executive orders to reshape the military, including banning transgender troops
## 2963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump signs flurry of executive orders in his first week back in office
## 2964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump signs multiple executive orders after taking office earlier this month
## 2965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump signs new executive orders, Quakers sue government department  | The Daily Campus Centered Divider Line
## 2966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump signs order on birthright citizenship – as it happened
## 2967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump signs orders to eliminate DEI from US military and reinstate troops who refused Covid vaccines – as it happened
## 2968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump signs wave of executive orders on his first day in office
## 2969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump softens tone but Starmer leaves without Ukraine security pledges
## 2970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump sparks fear and euphoria among the global elite
## 2971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump starts 'two-year race' with huge star-studded rally President-elect promises to kickstart reforms from day one
## 2972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump starts military overhaul with Coast Guard's first female leader
## 2973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump strips millions from DEI foreign aid programs funding Irish musicals, LGBTQ programs in Serbia and more
## 2974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump successfully plunges government into darkness as 8,000 DEI web pages stripped from internet
## 2975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump sued in attempt to block his anti-diversity orders
## 2976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump tackles immigration and DEI in first two weeks
## 2977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump takes executive action on aviation DEI, appointing FAA lead in wake of plane crash
## 2978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump targets Board of Visitors for Army, Air Force, Navy, Coast Guard academies
## 2979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump targets DEI and civil service protections, striking fear in some federal workers
## 2980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump targets FAA diversity efforts in plane crash probe despite no evidence they played any role
## 2981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump teaches the are of the deal; Mexico and Canada cave to Trump; What went wrong above the Potomac; Fixing the FAA, what went wrong in D.C. ; New York Times reports 90 percent of air traffic control facilities are understaffed; Kanye West's wife showed up naked to the Grammys; Music and nudist's biggest night; USAID Corruption Evident For Years; DOGE Critical To Ending The Abuse; Anti-ICE Agitators Take Over L.A. Streets
## 2982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump tears into lazy federal staff who work from home and warns they will be FIRED if they don't return to office
## 2983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump teases executive order overhauling or nixing FEMA
## 2984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump thanks Black Americans for electing him in Black History Month remarks
## 2985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump to Leave Blair House for Church Service; Sen. Katie Britt (R- AL ) is Interviewed about the Trump Administration. Aired 8:30-9a ET
## 2986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump to Quickly Take Action on Immigration, Energy, DEI Policies; Hamas Releases Three Hostages, Celebrations in Tel Aviv; Trump Says We Have to Save TikTok at Victory Rally. Aired 4:30-5a ET
## 2987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump to Sign Laken Riley Act Into Law; WH Says Federal Aid Freeze Still in Effect; Fed Leaves Interest Rates Steady, Despite Trump Demands. Aired 2-2:30p ET
## 2988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump to attend Saudi -backed conference in Miami and sign more executive orders today: Live updates
## 2989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump to cut off funding for schools and universities with Covid vaccine mandates – as it happened
## 2990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump to hit Canada, Mexico and China with tariffs beginning Saturday | The Excerpt
## 2991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump to issue executive orders defining sexes, ending DEI practices in government
## 2992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump to order DEI review of aviation, despite lack of link to crash
## 2993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump to order end to DEI in military and reinstate troops who refused COVID vaccines
## 2994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump to sign executive order removing DEI from military, says Pete Hegseth
## 2995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump to sign more than 200 executive orders on first day in office, report says
## 2996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump to sign order creating a new 'Iron Dome' U.S. missile defense system
## 2997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump touts national unity over air disaster before bashing Biden and Obama
## 2998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump unleashing death by a thousand cuts to D.C. federal workforce
## 2999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump uses trip to Super Bowl to declare Gulf of America Day as he flies over it: Live
## 3000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump vowed to champion US workers - the reality has been a relentless assault
## 3001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump vowed to tackle inflation, but this post is fabricated | Fact check
## 3002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump wants a US sovereign wealth fund. Here's what that could mean.
## 3003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump wants an Israeli -style 'Iron Dome' missile defense shield for U.S.
## 3004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump wants federal workers back in offices within 30 days
## 3005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump wants media to bend the knee. His new FCC chairman is leading the charge | Opinion
## 3006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump wants to dismantle DEI. These advocates are pushing back.
## 3007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump wants to undo diversity programs. Some agencies react by scrubbing US history and culture
## 3008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump was challenged after blaming DEI for the DC plane crash. Here's what he said
## 3009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump wins war on woke with vow to remake US
## 3010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump won't make America great by wrecking Nato and the global post-war order Relentless optimism at home, but unyielding pessimism abroad: that is the disconnect in the president's message
## 3011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump won't visit Washington DC plane crash site because it's 'the water': 'You want me to go swimming?'
## 3012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump's "Sharpiegate" pick to lead NOAA faces new, mounting challenges
## 3013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump's "anti-" rhetoric and the Great Replacement Theory - Northern Iowan
## 3014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's 50 per cent doctrine
## 3015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump's America—Land of Cruelty and Vengeance | Opinion
## 3016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's Approval Rating; Trump Revokes Security for Ex-Aides; Christopher Reeve's Story. Aired 8:30-9a ET
## 3017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump's Baselessly Links Diversity Initiatives to Collision; Rain Could Hamper Recovery Efforts in Icy Potomac River; Divers Battle Mud, Zero Visibility in Recovery Efforts. Aired 6-6:30a ET
## 3018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump's Corruption Claims Are a Smokescreen for His Own Ill Deeds | Opinion
## 3019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's DEI attack may halt progress for disabled workers
## 3020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's DEI attacks send Colorado universities scrambling
## 3021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump's DEI changes pose challenges to CPP
## 3022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump's DEI executive order leaves Brown administrators uncertain - The Brown Daily Herald
## 3023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's DEI order leaves academic researchers fearing for political influence over grants
## 3024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's DEI order strips Air Force curriculum of 1st Black pilots, female WWII pilots
## 3025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's DEI war in private sector grows Fear increases over probes, losing federal contracts
## 3026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump's Diversity Orders Rattle CEOs: What Companies Should Know About New DEI Rules
## 3027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump's Education Department dismantles DEI measures, suspends staff
## 3028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's Executive Order Sparks Controversy Over Equal Employment Opportunity Act
## 3029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump's Executive Orders Loom Large Over Davos ; Trump Presidency Brings New Challenges For Global Leaders; Trump To Announce AI Infrastructure Investment; Zelenskyy Urges European Unity As Trump Returns To Office; Interview With Nicolai Tangen Of Norges Bank IM; Interview With Klaus Schwab Of The World Economic Forum. Aired 4-5p ET
## 3030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump's Executive Orders Spark Concern Over Diversity, Equity and Inclusion at Cornell
## 3031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's Executive Orders and Canisius
## 3032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump's Executive Orders on DEI Cause Uncertainty
## 3033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's First 36 Hours: A Triumph For America ; America Grateful To Have A Real POTUS Again; Democrats Are Out Of Touch On Birthright Citizenship; Trump Pardons January 6 Defendants On Inauguration Day; Democrats Outraged Over Trump Pardons Of Jan. 6 Defendants; Trump Lectured By Woke Bishop; Woke Bishop Says People In The Country Are Scared Now And Asks Trump To Have Mercy On Migrants; Bishop Budde Has Been Going After Trump Since 2020; Trump Withdraws U.S. From WHO; Trump Is Restoring American Sovereignty
## 3034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's First Days In Office
## 3035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump's First Week in Office - Exponent
## 3036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump's Freeze On Federal Aid Money Takes Effect At 5PM ET; New Jet Breaks Sound Barrier On Historic Test Flight. Aired 4-5p ET
## 3037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump's Funding Freeze Causes Uncertainty for U Researchers
## 3038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump's Guantanamo Bay Threat; Cuba Slams Trump's Guantanamo Bay Threat; Trump Settles His Lawsuit Against Meta; RFK Jr. Clashes With Democrats Over Vaccines And Abortion Rights; DeepSeek's Disruption; Three Israeli And Five Thai Hostages Expected To Be Released Thursday; Steve Witkoff Enters Gaza; Escape From The Democratic Republic Of Congo; A.I.- Powered Robot Therapy Dog. Aired 6-7p ET
## 3039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump's Health Care Executive Order Could Hit Republican States Hardest
## 3040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's Housing Sec To Scrap Obama-Era Rule Allowing Men In Women's Shelters
## 3041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's Impressive Achievements In One Month
## 3042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's Justice Department Halts Police Reform Agreements; Trump Signs New Executive Orders in Oval Office. Aired 3:30-4p ET
## 3043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's Manufacturing Campaign Pledge Caught in Crosshairs of Grant Pause
## 3044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump's New Deal: 100 daysto reverse the legacy of FDR weekend essay In the first of his monthly essays, Niall Ferguson compares the executive orders of the past ten days with a similar blizzard from the president who shaped modern America
## 3045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump's New Military Executive Orders Set for Pete Hegseth's First Day
## 3046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's Reckless Agenda of Firings and Funding Cuts Devastates Americans Nationwide Arrow
## 3047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump's Treasury chief Scott Bessent has witty comeback about being highest-ranking LGBTQ official in history
## 3048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's aggressive tariffs on Canada, Mexico and China begin today after president admits it may cause 'disruption': Live
## 3049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump's anti-DEI campaign reverses a landmark civil rights law
## 3050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's anti-DEI efforts at schools have unclear fate at GW, experts say - The GW Hatchet Donation Button
## 3051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump's anti-DEI military initiative blatantly attempts to erase Black American contributions
## 3052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump's anti-DEI orders worry some federal workers
## 3053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's attacks against DEI are unacceptable
## 3054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump's blame game returns after deadly plane crash
## 3055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump's bureaucracy goes to war
## 3056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's cash freeze leaves tech, AI projects in limbo
## 3057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump's chaotic loan freeze ordeal is bad for business
## 3058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's day two orders: See a list of highlights
## 3059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's diversity rollback sparks civil rights outcry
## 3060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump's education chief comes from the boardroom, not the classroom. Backers say that's her strength
## 3061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's example will help Britain finally crush the woke brigade
## 3062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump's executive orders create uncertainty for international students - The Charger Bulletin
## 3063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump's executive orders jeopardize UCSD research funding - The UCSD Guardian
## 3064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump's executive orders really aren't 'shock and awe' after Biden's overreach | Opinion
## 3065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump's executive orders reshape American policies - Richland Student Media
## 3066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's executive orders undermine our government - The Murray State News
## 3067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump's federal aid pause is a necessary reassessment of funds - The Ticker
## 3068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump's first month has been devastating. And people voted for all of this. | Your Turn
## 3069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's first week a blizzard of action Aggressive use of power is testing boundaries
## 3070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's foreign aid freeze forces health clinics in a vulnerable region of Syria to close
## 3071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's frantic first week back in White House ends with attacks on DEI, promises of tax breaks: Live
## 3072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump's funding pause will not impact student loans But review leaves some in education frightened
## 3073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's gut-it-all plan for D.C. 's "Deep State"
## 3074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump's gutting of federal DEI programs will hit rural poor communities
## 3075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump's hatchet signals the death of American soft power
## 3076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's historic war on traditional media
## 3077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump's mega-MAGA month transforms America
## 3078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's military firings leave some Democrats reeling
## 3079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's move to cut USAID funding is too aggressive to be justified - The Ticker
## 3080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump's orders leave US Inc straining to keep up Regulation. Corporate outlook Businesses strive to assess what a barrage of executive actions will mean for them
## 3081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump's orders to end DEI programs reflect his push for a profound cultural shift
## 3082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump's pick for education chief sketches a roadmap for dismantling the department
## 3083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's prejudiced agenda endangers security
## 3084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's push against Education Department raises concerns over DEI, civil rights
## 3085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump's reelection lands Army best free promotion in 15 years as recruitment swells to record high
## 3086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's renaming spree continues as Pete Hegseth refers to Fort Liberty as ' Fort Bragg '
## 3087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump's return eclipses Davos agenda as global elite voice hopes and fears Summit. Economic sentiment US executives look forward to 'bonfire of regulations' while Europeans remain nervous
## 3088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump's second term: What his education agenda means for colleges and universities
## 3089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump's second week in office delivers jolts and chaotic orders with a mix of politics and tragedy
## 3090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump's second week leaves uncertainty over federal workers' jobs and the services they provide
## 3091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump's shock and awe tests Americans' response to chaos
## 3092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's spending pause creates chaos in Virginia
## 3093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump's spite agenda shows lust for revenge is undimmed
## 3094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump's sweeping changes to grants and loans begins now... here's what it means for you
## 3095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump's team wants snitches to expose DEI work
## 3096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's telling remark about JD Vance 's brilliant wife Usha ... and what it reveals about America 's future
## 3097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump's transportation secretary faces Washington plane crash crisis on his first full day in office
## 3098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump, Putin discuss Ukraine , mutual visits to US and Russia ; Tulsi Gabbard confirmed to lead intelligence: Live
## 3099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump, U.K. Prime Minister Starmer To Meet At White House For Critical Talks On Ukraine ; RKF Jr. Downplays Texas Outbreak Amid Measles Death; Sen. Chris Coons (D- DE ) Discusses Speaker Johnson Vowing GOP Will Not Cut Medicaid. Aired 7:30-8a ET
## 3100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump, Vance And Zelenskyy Spar In Oval Office
## 3101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump, Zelenskyy Trade Insults In Escalating War Of Words; Defense Secretary Orders Military To Prepare For Major Budget Cuts; No Ruling Yet On DOJ Push To Drop Corruption Charges Against Adams. Aired 7:30-8a ET
## 3102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump-Musk Overreach Has Ignited the Opposition. Viva La Resistance! | Opinion
## 3103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump: Apple should get rid of DEI rules instead of making ‘adjustments’
## 3104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump: Iowa should pass measure removing protections for transgender people ‘as fast as possible’
## 3105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump: Judges Shouldn't Say "What You're Supposed To Be Doing"; Trump Pardons Former Illinois Gov. Rod Blagojevich; Trump Doesn't See Vance As His Successor: "It's Too Early." Aired 9-10p ET
## 3106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump: Musk "Won't Do Anything Without Our Approval"; Trump Declares Victory In Stand-Off With Mexico & Canada; Father: All Victims "Deserve To Be Remembered." Aired 9-10p ET
## 3107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump: Reciprocal Tariffs Are About "Fairness"; RFK Jr. Confirmed And Sworn In As Health Secretary; NYT Claims Common Sense Department Echoes Trump; Arab States Seek Alternative To Trump's Gaza Plan; Both Putin And Zelenskyy Want To Make A Deal; California And Minnesota Face Federal Investigation; DOGE Cuts Wasteful Spending By Education Department
## 3108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump: Tariffs Are Very Powerful
## 3109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump: The Golden Age Of America Has Begun; Global Perspective On Trump's First Week; Trump's Message To The World: America Is Back; President Trump Declares Border Emergency On Day One; Trump Pressures Putin To End War; Trump Takes Aim At Newsom Policies; The Left Loses It Over Dismantling Of DEI; Media Moments That Matter
## 3110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump: The U.S. Will Take Over The Gaza Strip; Democrats Sound Off On DOGE; Department Of Education On The Chopping Block; Anti-Trump Protests Planned For Wednesday; Some School Districts Resist ICE Enforcement; Trump Campaign Promise To Dismantle Education Department; Black National Anthem To Be Performed At Super Bowl
## 3111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump: Ukraine Will Be Part of Any Peace Negotiations; Trump Appears to Cast Doubt on Whether McConnell is a Polio Survivor; Judge Extends Pause on Trump's Dismantling of USAID. Aired 3:30-4p ET
## 3112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump’s 27-year-old press secretary announces ‘no more condoms for Gaza’ in new-look briefing
## 3113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump’s DEI stance scares disabled workers
## 3114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump’s FCC probing Comcast, NBC over DEI policies
## 3115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump’s IVF order: a PR move that gives pronatalists cause for cheer
## 3116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump’s aid freeze confusion leaves trillions of dollars in balance
## 3117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump’s anti-DEI executive orders could jeopardize safety of Nasa crews
## 3118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump’s anti-DEI push puts top colleges in the crosshairs
## 3119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump’s anti-diversity executive orders threaten Americans’ health, experts say
## 3120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump’s approval rating dips after rush of executive orders, poll finds
## 3121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump’s blame game after DC plane crash
## 3122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump’s demands to drop DEI leads to deletion of unrelated federal pages
## 3123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump’s first 10 days have overwhelmed the Democrats – and the liberal media
## 3124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump’s first full day back in office — as it happened
## 3125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump’s first week: New president moved with lightning speed to overhaul government
## 3126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump’s funding freeze temporarily blocked by court – what we know so far
## 3127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump’s immigration crackdown
## 3128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump’s imperial emporium
## 3129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump’s new tariffs might be his first mistake
## 3130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump’s obsession with immigration is really an obsession with segregation
## 3131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump’s policies clash. But the numbers may just add up
## 3132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump’s press chief shows she’s more than capable of going full North Korea
## 3133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump’s return drowns out the Davos agenda
## 3134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump’s scapegoating threatens the entire basis of aviation safety
## 3135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump’s spending freeze roils Capitol Hill
## 3136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump’s war on diversity initiatives divides Britons
## 3137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump’s ‘Thomas Cromwell’: How a little-known fixer is seizing control of the US government
## 3138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trying To Digest Everything': Federal Employee Really Upset That Trump's Executive Orders Are Making Her Work Harder
## 3139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Tuberville Supporting Elimination of DEI, Restoration of Lethality in Armed Forces
## 3140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Tuberville Urges Senate to Confirm Hegseth and Rollins, Secure American Farmland with the FARM Act
## 3141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Tuberville, Schmitt Introduce Legislation To Dismantle DEI
## 3142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Tulsi Gabbard Was Victimized By The Intel Community - Now She's Trying To Oversee It
## 3143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Tulsi Gabbard fires more than 100 intelligence agents over transgender sex chat messages
## 3144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Turn This TV Off: The revolution is being televised
## 3145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Twin Cities Pride Cuts Target Sponsor Amid DEI Rollbacks
## 3146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Twin Cities Pride to cut ties with Target over DEI rollback
## 3147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            U.N. Security Council Adopts U.S. -Led Resolution That Fails to Call Russia the Aggressor; Europeans Abstain; Europeans Show Solidarity with Kyiv in G7 Conference; Vatican: Pope Still Critical, Showing "Slight Improvement"; Trump: Podcaster Dan Bongino to be FBI Deputy Director; Apple to Invest $500 Billion in U.S. as Trump Tariffs Loom. Aired 4-4:30a ET
## 3148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  U.S. , Colombia Hit Each Other With Dueling Tariffs In Deportation Fight; Colombia Tariffs Could Impact Prices Of Coffee, Flowers And Gas; Trump Administration Launches Immigration Enforcement Blitz; Interview With Laredo Mayor Victor Trevino About Immigration Enforcement; DOJ Removes Online Database Of January 6th Convictions; Trump Closes Federal DEI Offices, Puts Staffers On Leave; Fire- Scorched Parts Of LA County Brace For Rain, Mudslides; Trump Says He May Consider Rejoining World Health Organization. Aired 7-8p ET
## 3149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            U.S. - Russia Talks To Take Place In Saudi Arabia Tuesday; Netanyahu Vows To "Finish the Job Against Iran " With U.S. Support; Storm Causes Flooding Across Parts Of West Virginia ; UnitedHealthcare CEO Shooting Suspect Thanks People For Fan Mail; White House Bans AP Indefinitely Over The Use Of Gulf Of Mexico; Kentucky Refugees, Support Agencies Reeling Impacts Of Trump Crackdown; New Mini Tournament For All-Star Game. Aired 7-8p ET
## 3150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               U.S. DEPARTMENT OF EDUCATION ADVANCES SCHOOL CHOICE BY SUPPORTING CHARTER SCHOOLS
## 3151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          U.S. DEPARTMENT OF EDUCATION DIRECTS SCHOOLS TO END RACIAL PREFERENCES
## 3152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      U.S. DEPARTMENT OF EDUCATION TAKES ACTION TO ELIMINATE DEI
## 3153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          U.S. Department of Education Launches "End DEI" Portal
## 3154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       U.S. Distances Itself from Ukraine as Trump Invites Putin; Reporter Barred from Oval Over Gulf of America Clash; FCC Opens Probe into Comcast to Root Out DEI Programs. Employee and Union Sources Say Mass Firings Have Begun at Federal Agencies; Pam Bondi Sues New York Over Sanctuary City Policies. Aired 10-11p ET
## 3155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          U.S. Stocks Fall as Trump's Tariff Package is About to Take Effect; American Among Three Hostages Set to be Freed From Gaza Tomorrow. Aired 3:30-4p ET
## 3156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UA Board of Regents DEI practice assessment and elimination could affect Alaska Native Studies
## 3157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UA Land Acknowledgement drops DEI Language - The Daily Wildcat
## 3158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UA administrators navigate new federal policies from the Trump Administration - The Daily Wildcat
## 3159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UAA begins assessing and eliminating DEI practices
## 3160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     UC Berkeley faculty respond to Department of Education letter on race and diversity | Campus | dailycal.org
## 3161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UCAR , NSF NCAR Close DEI Offices
## 3162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UCLA School of Law Williams Institute: Proposed Cuts to the Federal Workforce Could Impact 314,000 LGBTQ U.S. Government Employees
## 3163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          UCR students and community react to President Trump's executive orders
## 3164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UCSD celebrates Black History Month - The UCSD Guardian
## 3165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UF ceases DEI and accessibility funding
## 3166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UF pauses non-academic Living Learning Communities in campus housing - The Independent Florida Alligator
## 3167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UH pauses federal research grants due to Trump's executive orders, attacks on DEI continue
## 3168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UI President Barbara Wilson tells lawmakers 'diversity still matters' - The Daily Iowan
## 3169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UI proposes closing gender studies department, drawing controversy and praise - The Daily Iowan
## 3170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UK politics live: Starmer warns UK faces 'generational' threat to security as PM to meet Trump in Washington
## 3171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UK receives letter regarding racial discrimination from US Department of Education - Kentucky Kernel
## 3172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   UK returns to growth but living standards fall; oil price weakens on Ukraine peace talk hopes – business live
## 3173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UK spent aid budget on diversity scheme in Mauritius during Chagos negotiations
## 3174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          UMN and UCLA students perspective on recent California wildfires - The Minnesota Daily
## 3175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UMN rolls back DEI, pauses hiring for Law School Assistant Dean position - The Minnesota Daily
## 3176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UMN students, faculty react to potential DEI rollbacks - The Minnesota Daily
## 3177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UMich student leaders and administration react to new federal orders
## 3178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UN Security Council adopts neutral US stance on war in Ukraine | The Excerpt
## 3179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UN chief warns against 'ethnic cleansing' after Trump's shocking threat to take over Gaza: Live updates
## 3180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UNC Asheville suspends certain requirements related to diversity-intensive courses
## 3181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UNC System Suspends DEI Course Requirements?  - THE CAROLINIAN
## 3182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UNC System suspends DEI-related mandated course credits
## 3183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UNC system removes DEI course requirements following Trump orders
## 3184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     UNL students, APU react to MLK and Inauguration Day overlap
## 3185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UNL students, staff join nationwide protest against Trump's executive orders
## 3186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   UNM reaffirms commitment to diversity following federal guidance against race-based programs - The Daily Lobo
## 3187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             UO community reacts to Trump's first week in office
## 3188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            US Air Force Cuts Training Course on Tuskegee and Female WWII Pilots
## 3189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            US Army Identifies Third Black Hawk Soldier, Family Issues Statement
## 3190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 US Army Responds to Claims DEI Simply Rebranded
## 3191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   US Army Says It Will 'No Longer' Accept Transgender Applicants, Support Sex-Change Procedures
## 3192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             US Government Department to Tie Funding to Marriage and Birth Rates
## 3193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           US INFORMATION ERASURE HURTS EVERYONE
## 3194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       US Pressures United Nations to Drop Diversity, Equity, Inclusion Language
## 3195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    US Recession Warning Issued by Economist Who Predicted 2008 Financial Crisis
## 3196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                US Veterans Given Update Amid Federal Pay Freeze
## 3197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              US and UK out of step with rest of the world on AI
## 3198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              US army refuses to name female pilot killed in helicopter crash with passenger jet
## 3199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             US business schools brace for the second Trump term
## 3200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      US central bankers resist pressure from Donald Trump to cut interest rates
## 3201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               US culture war show comes to London – and strikes a chord with European populists
## 3202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     US diversity staff put on leave as Trump orders end to federal DEI programs
## 3203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   US education department offers buyout that employees call ‘beyond misleading’
## 3204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        US equality chief fired by Trump condemns ‘demonization of the term DEI’
## 3205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             US federal workers ordered to remove pronouns from email signatures
## 3206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    US federal workers weigh Trump’s buyout offer: ‘We’re feeling petty as hell’
## 3207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        US foreign aid freeze is upending global aid and the work of contractors
## 3208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 US foreign aid funded legal advice for gay asylum seekers in UK
## 3209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          US government agencies order employees to remove gender pronouns from email signatures
## 3210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          US health websites, datasets taken down as agencies comply with Trump executive orders
## 3211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            US imports hit record high as Trump tariffs backfire
## 3212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              US intelligence workers turned work chat into sexually explicit trans advice group
## 3213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               US is on course for higher inflation, interest rates and deficits
## 3214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              US judge temporarily blocks Trump’s anti-DEI purge
## 3215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       US officials have been absent from global climate forums during Trump 2.0
## 3216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               US president's shadow looms large over the elite at Davos Delegates at the World Economic Forum are gripped by what Donald Trump may do next, reports Matt Oliver
## 3217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       US private equity diversity project for Black students affirms commitment
## 3218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    US scientists feeling ‘stress and fear’ as sweeping Trump orders hit funding
## 3219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 US scientists must resist Trump’s efforts to tear down research
## 3220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         US scientists must resist the assault on research Opinion Public health
## 3221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              US scientists warn ‘critical work’ at risk from further Trump cuts
## 3222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 US supreme court likely to back straight woman in ‘reverse discrimination’ case
## 3223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             US tech giants are rolling back DEI. Its ripple effects could spill over to Europe.
## 3224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 USAID Cash Ended Up in Terrorist Hands; Democrats Want Musk Deported; Democrats Revive Dictator Hoax; Retirement Cave Just Went Digital; DOGE is Catching Waste Everywhere; Trump Talks Tariffs with U.K. Prime Minister; DOJ Releases Phase One of Epstein Documents; Bondi Demands to See All Epstein Documents; FBI Withheld Thousands of Epstein Documents; Authorities: Hackman and Wife's Deaths Suspicious; DEI Thursday
## 3225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  USAID In Limbo As Musk Says Trump Signed Off On Shutting Down Agency; Rep. Pat Ryan (D- NY ) On China Hits Back At U.S. With Retaliatory Tariffs; Today: NTSB To Release Data From Black Box Of Black Hawk Helicopter That Collided With Jet. Aired 7:30-8a ET
## 3226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         USAID Programs at Risk of Being Gutted by Elon Musk, and What They Cost
## 3227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          USAID Wasted Billions Of Tax Dollars On Programs That Actively Harmed Americans. Here Are The Receipts
## 3228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              USAID inspector general is fired by the White House after attacking DOGE and Trump
## 3229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                USAID workers will be escorted to their desks and have 15 minutes to collect personal belongings from gutted agency HQ this week
## 3230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              USDA Trying To Rehire Staff Working On Bird Flu After Firing Them; Senate Votes To Confirm Kash Patel As FBI Director; Waltz: Trump "Frustrated" By Ukraine 's Zelenskyy Not Accepting Deal; Child Dies By Suicide After Alleged Bullying, Deportation Threats; HHS Narrows Definitions Of Words Like "Sex," "Males" & "Females". Aired 2:30-3p ET
## 3231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      USF researchers face uncertainty over NIH grant reductions
## 3232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UW PEOPLE Program not impacted by national DEI policy changes - The Badger Herald
## 3233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UW political science professor previews first 100 days of Trump's presidency - The Badger Herald
## 3234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UW-Madison to reassess race-based programs to comply with federal orders
## 3235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UWO lists campus DEI building for sale - The Advance-Titan
## 3236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ukraine Marks Three Years Since Russia 's Full-Scale Invasion; European Leaders In Ukraine To Mark Three Years Since Russian Invasion; Several Agencies Push Back On Musk's Mass Email Threat; Federal Workers Dispute Musk's Claims, Admit System Needs Updating; Merz Hopes For Good Test With U.S. Despite Its "Waning" Interest; Israel Deploys Tanks In West Bank For First Time In Two Decades; Pop Icon Confirms Ninth Studio Album Underway. Aired 12-1p ET
## 3237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ukraine ’s uncertain future on the third anniversary of Russia ’s invasion
## 3238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Uncertainty Lingers Over Ukraine 's Mineral Wealth; Some Republicans Angry Over Government Cuts; Measles Cases on the Rise as Vaccination Rates Decrease; Police Investigating Deaths of Gene Hackman, Wife. Aired 4:30-5a ET
## 3239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Uncertainty at Wesleyan After White House Calls for End of Diversity Initiatives
## 3240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Uncertainty of Trump 2.0 takes some college presidents back to pandemic times
## 3241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Under 30 Company Accern Gets Acquired By  Hotter  AI Startup
## 3242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Under pressure, White House reinstates HBCU scholars program
## 3243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Undergrads worry DEI rollbacks will impede job search - PNW Pioneer
## 3244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Undergraduate Student Congress elects vice chair, amends election rules
## 3245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Undermining Federal Programs Depletes the Common Good | Opinion
## 3246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Unions troll Elon Musk's DOGE with 'Department of People Who Work for a Living'
## 3247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               University DEI website changes language following executive orders - The Observer
## 3248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      University President Farnam Jahanian  speaks to students at Undergraduate Student Senate GBM  - The Tartan
## 3249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    University Senate discusses political impacts on higher education - The Whit
## 3250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                University alumni react to ODI dissolution, some cease donations
## 3251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 University permanently removes Green Library banner, citing institutional neutrality Login or create an account
## 3252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        University responds to anti-DEI executive orders - The Murray State News
## 3253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  University to review DEI programs following Trump's executive order Login or create an account
## 3254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          University weathers uncertainty surrounding Trump executive orders - The Vermont Cynic
## 3255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Unknown future for Department of Education
## 3256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Unpacking Trump's historic shake-up of the federal workforce
## 3257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Up to 74m Americans unable to access healthcare after Trump's federal funding freeze causes Medicaid chaos
## 3258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Upcoming Financial Aid Changes: How Do They Affect College of DuPage Students? - The Courier
## 3259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Updated: University removes diversity from DEI page - The Mass Media
## 3260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Urgent Investigation After Deadliest U.S. Airliner Crash in 23 Years; Trump Baselessly Blames Diversity Initiatives for Plane Crash; One Black Box Has Been Recovered from Potomac River . Some Victims Of Mid-Air Collision Being Identified. Aired 6-7p ET
## 3261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Useless': Piers Morgan Rips Failed DNC Chair Nominee Saying Racism, Misogyny 'Played A Role' In Harris' Loss
## 3262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             VA Dismisses More Than 1,400 Probationary Employees
## 3263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                VA Ends Diversity, Equity, Inclusion, Stops Millions in Spending on Diversity, Equity, Inclusion
## 3264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                VA Job Cuts Spark Anger: 'Putting Veterans Last'
## 3265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      VA secretary: ‘We’re not cutting benefits’
## 3266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     VIDEO: Blackburn Details DOGE's Efforts to Restore Accountability in the Federal Government
## 3267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         VIDEO: GOVERNOR PATRICK MORRISEY'S STATEMENT ON WVU ENDING DEI PROGRAMS
## 3268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VIDEO: In Hearing, Pressley Slams GOP Attacks on DEI, Gutting of Essential Services for Vulnerable Communities
## 3269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            VIDEO: On Senate Floor, Hirono Warns Against Confirming Vought--Project 2025 Architect and Trump Nominee to Lead OMB
## 3270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                VUMC removes DEI from all websites, social media; SCSJI changes to SCBC - The Vanderbilt Hustler
## 3271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Vance Enters Oval Office For First Time; Donald Trump Reflects On Historic White House Return; Trump Shuts Down DEI Office; Woke Bishop Chose Partisanship Over Prayer; Media Still Obsessing Over January 6th; Biden Crime Family Pardons Are A Red Flag; ICE Launches Mass Deportation Operation; Trump Revives Remain-In- Mexico Policy; Trump Frees Up ICE Agents To Remove Migrants; What Did Barron Tell the Big Guy
## 3272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Vance Pressed On Trump Plans To Lower Prices; Selena Gomez Cries Over Ice Detaining Migrants; Navy Vet's Stirring NFL National Anthem Goes Viral; China's DeepSeek AI Model Triggers Stock Selloff
## 3273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Vance Scolds European Allies Over Immigration, Free Speech; Vance: "Threat From Within" More Dangerous To Europe Than Russia ; Now: Vance & Zelenskyy Meet At Munich Security Conference; Mixed Message On Ukraine Coming From Trump, Vance, Hegseth; Seventh Prosecutor Resigns Over Order To Drop Eric Adams Case. Aired 12-12:30p ET
## 3274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Vance breaks tie to confirm Pete Hegseth as Defense secretary
## 3275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Vance defends Trump’s DEI comments after DC plane crash: Trump ‘wasn’t blaming anybody’
## 3276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Vance: Gas, grocery prices ‘are going to come down,’ but it will ‘take a little bit of time’
## 3277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Venezuela Returns Six American Hostages; Trump: We're Taking Back the Panama Canal; Mexico Caved in Under 48 Hours; Border Security is National Security; Canada Begs for Mercy on CNN; Canada Caves Just Like Mexico ; Trump Proves Tariff Threats Work; Trump Swaps Soft Power for American Might; Carville Rips Kamala to Pieces; New Democratic Leader Loves DEI; Lost Democrats Look for a Leader; Elon Exposes Massive Government Waste; USAID Gets the DOGE Treatment; Rubio Takes the Reins of USAID; Democrats Melt Down Over DOGE
## 3278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Victor Davis Hanson Says 'It's Ironic The Left' Imposes Out-Of-Mainstream Values Globally
## 3279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Victor Davis Hanson Tells Megyn Kelly Dems Are On 'Wrong Side' Of Every Issue, Says No One Left To 'Sabotage' Trump
## 3280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Video Shows Flight Attendant From DC Crash Joking With Passengers
## 3281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Video shows Trump at college football game, not Super Bowl | Fact check
## 3282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Videos Show Philadelphia Plane Crash, Massive Fire
## 3283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Villanova Reacts To Federal Guidance On Higher Education - The Villanovan
## 3284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Villanova's Response to the Dismantling of DEI - The Villanovan
## 3285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Virgin Media O2's American owner defies Trump with commitment to diversity rules
## 3286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Voice of the People - 2/14/2025 - The Oberlin Review
## 3287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Voices: A British Trump tribute act could snatch power in the UK - and wreak similar chaos
## 3288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Voices: City chiefs must say it loud and clear: DEI is good for business
## 3289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Voices: Get real, Mr Gove: you're the one with TDS (Trump Derangement Syndrome)
## 3290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Voices: I was there when 'woke' began in the Sixties - and Trump is about to take it all away
## 3291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Voices: Trump's first moves as president are catastrophic for LGBT+ rights
## 3292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Voices: Trump's response to air crashes suggests Americans don't understand irony
## 3293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Voices: Trump's vendetta agenda shows an undimmed lust for retribution
## 3294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Vos calls for 'intellectual diversity,' decentering racial DEI at UW-Madison
## 3295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             W&L administration won't speculate on the future of DEI. Students have opinions. - The Ring-tum Phi
## 3296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WATCH: Illinois State Board of Education not complying with Trump's DEI orders
## 3297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WATCH: Pressley Slams Trump for Baselessly Blaming Tragic Plane Crash on "DEI"
## 3298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           WC pledges continued commitment to DEI in face of presidential orders
## 3299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             WE HAVE TO RECLAIM RACE AND RACISM'
## 3300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             WEEK 4: TRUMP CONTINUES TO BLOCK HUNDREDS OF BILLIONS OF DOLLARS OWED TO COMMUNITIES ACROSS AMERICA
## 3301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WEEK IN REVIEW: 'I'M GOING TO DIE. IT DOESN'T HAVE TO BE THAT WAY'
## 3302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WH to Speak on Deadly Midair Collision; All 67 on Board Two Aircrafts Presumed Dead; FAA Closes Helicopter Routes Near Reagan National Airport; White House Holds News Briefing; Germany Reject Oppositions Migration Law Draft. Aired 1-2p ET
## 3303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                WHAT IS AN EXECUTIVE ORDER AND HOW DOES IT WORK?
## 3304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 WHAT THE DEI EXECUTIVE ORDERS MEAN FOR EMPLOYEE RESOURCE GROUPS
## 3305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   WHAT THEY ARE SAYING: U.S. DEPARTMENT OF EDUCATION DISMANTLES DEI IN WEEK ONE
## 3306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          WHITE HOUSE PAUSES FEDERAL GRANTS, OTHER PROGRAMS IMPLICATED BY EXECUTIVE ORDERS; OMB SAYS MEDICARE AND MEDICAID NOT AFFECTED BY PAUSE
## 3307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             WHITEHOUSE DEMANDS EPA FULLY COMPLY WITH DOCUMENT PRESERVATION LAWS
## 3308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                WVU to close DEI Office, establish Division of Campus Engagement
## 3309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Waffle House bumps egg prices while Trump focuses on DEI. I say yolk before woke. | Opinion
## 3310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Walt Disney cuts diversity category from executive pay scheme
## 3311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Warning: Content will invoke hunger
## 3312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Warnock at National Cathedral: ‘Don’t tell me you reject DEI when you live in a White House built by Black hands’
## 3313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Warren Buffett defends record $334bn cash pile
## 3314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Warren Buffett's Berkshire takes a cryptic turn under Trump's shadow
## 3315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Was he grave, sombre, the consoler-in-chief? Are you kidding – this is Trump
## 3316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Wash. A.G. Brown: Joint Statement From 13 State Attorneys General - President Trump is Misleading the American People on Diversity, Equity, Inclusion and Accessibility Initiatives
## 3317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Washington DC plane crash latest: Trump blames DEI as his press conference after 67 die goes off the rails
## 3318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Washington DC plane crash: What we know so far about the mid-air collision near Reagan Airport
## 3319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Washington DC plane crash: ‘black box’ data recorder recovered from Black Hawk helicopter – as it happened
## 3320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Washington DC plane disaster
## 3321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Washington air crash update: two Black Hawk crew formally named
## 3322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Watch live: NTSB provides update on probe into deadly collision near DCA
## 3323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Watch live: Trump signs executive order
## 3324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Watch: Donald Trump blames diversity and inclusion for Washington DC crash that claimed 67 lives
## 3325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Watch: House Democratic Caucus holds press conference
## 3326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Watch: Jeffries, CBC chair hold press conference after Trump DEI attack
## 3327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Watch: Trump hosts Black History Month reception at White House after anti-DEI order
## 3328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Watch: Trump hosts event honoring Black History Month
## 3329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Watch: White House holds briefing with DC plane crash investigation underway
## 3330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Act for Environmental Justice: Trump Federal Funding Freeze Attempt is an Illegal, Unconstitutional, and Inhumane Assault on Millions of People
## 3331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We Failed': Dem Rep Gives Brutal Assessment Of His Own Party
## 3332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We Should Not Be an Institution That Operates Out of Fear': Khurana Praises Diversity Amid Trump Threats
## 3333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We are witnessing the rise of a new Republican ‘Southern Strategy’
## 3334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We can finally put the rich in their place — so they’ve moved away
## 3335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We have to be in action': Martin Luther King Jr. supporters rally in capital as holiday overlaps with Inauguration Day - The Daily Egyptian
## 3336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We look to you for steadiness in the storm, Biden tells Trump
## 3337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We the people must fight against it' | Students, professors voice concerns about Trump's 2nd term
## 3338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We'll find a way' Advocates vow to teach Black History outside work
## 3339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We've been woke for decades but this inauguration signals a bonfire of liberal vanities
## 3340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We've entered the era of scaredy-cat capitalism
## 3341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Wealth in division: seeking community to combat our polarized digital age
## 3342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weary GOP lawmakers lash out at 'childish' Elon Musk for drastic DOGE cuts during secret House meeting
## 3343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Wednesday briefing: Inside the US president’s chaos machine
## 3344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Welcome to the new campustimes.org. The steep price of health and wellness Take a look at the ASIS gallery's current exhibit, Lines of Inquiry Congestion pricing is clearly the way to go
## 3345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wes Streeting attacks NHS over diversity schemes
## 3346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                West Point Shuts Down Inclusive Clubs Due to Executive Order. | RMU Sentry Media
## 3347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     West Point disbands clubs related to gender, race and ethnicity after Trump executive order
## 3348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             West Point shuts down clubs based on gender, race and ethnicity in response to Trump's DEI policies
## 3349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 West Point shuts down clubs for women and students of color in response to Trump's DEI policies
## 3350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             What CEOs Dealing With Tariff Uncertainty Should Do
## 3351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              What Do Americans Think of Elon Musk?; Philadelphia Celebrates Super Bowl Win; Was Indiana Teenager Planning School Shooting?. Aired 11:30a-12p ET
## 3352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What Does USAID Spend Money on? List of Potential Cuts
## 3353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What Donald Trump's Day One Executive Orders Could Look Like
## 3354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       What Happens Now: Oberlin Under Trump Administration - The Oberlin Review
## 3355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What Hegseth thinks of Russia and China as he takes the Pentagon reins
## 3356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What Is #Shutdown315? Nationwide Plan to Shut Down USA for 1 Day
## 3357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           What Is the People's Union? Group Behind Nationwide Economic Blackout
## 3358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      What Octavia Butler saw on Feb. 1, 2025, three decades ago
## 3359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              What Republicans really mean when they blame ‘DEI’
## 3360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             What Silicon Valley really thinks about DeepSeek, TikTok, and Trump
## 3361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              What Trump Wants From CA : Voter ID Laws And Water Flow; Trump Says He Wants States, Not FEMA, To Run Disaster Response; Trump In North Carolina To Tour Hurricane Helene Damage; Today: Senate Vote On Defense Secretary Nominee Pete Hegseth. Aired 12-12:30p ET
## 3362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What Trump's DEI rollbacks could mean for NYU - Washington Square News
## 3363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What Trump's public scolding of Bank of America's CEO was really about
## 3364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What Trump-supporting federal workers think of his blitz of moves to shake up the government
## 3365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       What We Know About The Black Hawk Crew Involved In Fatal D.C. Plane Crash
## 3366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   What do the TWAGs really think about their tech bro husbands?
## 3367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What does 'equity' really mean? - Northern Iowan
## 3368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What does Elon Musk believe?
## 3369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              What environmental agency firings could mean for energy, pollution, national parks
## 3370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         What executive orders has Trump signed?
## 3371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      What happens if the Department of Education is dismantled?
## 3372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              What has Trump done so far? The winners and losers
## 3373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What if they're at my bus stop?': Indiana lawyers and teachers explain the current landscape of deportation and immigration. Immigration Enforcement and Preventative Action Misconceptions The Courts and Law Community and Self-Care
## 3374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           What investors can learn from the DeepSeek tech shock
## 3375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What is American Accountability Foundation? 'DEI Watchlist' Released
## 3376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     What is DEI and why is Trump opposed to it?
## 3377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   What is DEI, and why is it dividing America ?
## 3378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      What is DEI? The diversity scheme Trump is blaming for Washington DC crash
## 3379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What is DEI? The initiative designed to help has become the ire of Trump and Republicans
## 3380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       What some CEOs do in Davos (it’s stranger than you think)
## 3381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           What the Trump administration did during its first week back in power
## 3382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             What to know about Elon Musk's DOGE
## 3383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   What to know about Trump's first executive orders as the president renames the Gulf of Mexico
## 3384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What to know about Trump's freeze on foreign aid
## 3385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               What to know about the equal employment opportunity executive order Trump revoked
## 3386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   What type of pen does Donald Trump use? Here's how he signs executive orders.
## 3387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     What we know so far about Trump’s orders on diversity, equity and inclusion
## 3388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What will happen if schools don't ban DEI by deadline?
## 3389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       What's at stake for Wellesley College under Trump's executive orders - The Wellesley News
## 3390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         What's next for DEI? Nissan policy changes mark another 'anti-woke' win
## 3391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What's next on Musk's hit list? How the tech billionaire is rebooting Washington
## 3392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  What’s behind financiers’ ‘blind spot’ on coal
## 3393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When’s Black History Month? Don’t ask Google
## 3394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Where 'woke' went wrong Seemingly irresistible only a few years ago, a complex of social movements aimed at addressing systemic inequalities is now in retreat. Henry Mance examines the contradictions that curtailed a revolution Where 'woke' went wrong
## 3395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Where ‘woke’ went wrong
## 3396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Which Countries Spend the Most on Military Defense?
## 3397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Which Interest Rate Should You Care About? Strategies
## 3398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Which Trump family members and in-laws have conflicts of interest?
## 3399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Which US companies are pulling back on diversity initiatives?
## 3400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Which companies are rolling back DEI and which are standing firm
## 3401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Which states get the most federal health and science funding
## 3402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While Democrats Slow-Walk Tulsi Gabbard's Confirmation, The Acting DNI Will Be A Pro-DEI Biden Appointee
## 3403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While Democrats sleep
## 3404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whining Elizabeth Warren gives Elon Musk a swanky new nickname while complaining on MSNBC
## 3405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            White House And Treasury Department Agree To Block DOGE From Personal Taxpayer Data, Report Says Here s What To Know
## 3406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           White House Attempts to Freeze Federal Grant Payments
## 3407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          White House Fact Sheet: Flights Should Be Supervised By Best Employees
## 3408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    White House Fact Sheet: OMB Q&A Regarding Memorandum M-25-13
## 3409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 White House Fact Sheet: President Trump Restores Merit and Lethality to America 's Armed Forces
## 3410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            White House Fact Sheet: Protecting Civil Rights and Expanding Individual Opportunity
## 3411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 White House Holds First Press Briefing Of Trump's Second Term. Aired 1:30-2p ET
## 3412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      White House Issues Transcript of News Briefing by Press Secretary Leavitt on Feb. 20, 2025
## 3413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               White House Now Has Tech Support; Democrats Think This is Our Civil War; DOGE Has D.C. on Edge; DOGE Coming for Pentagon and IRS; Competence, Caring and Cutting Cost; Americans Voted for Change; Make Trade Fair Again; The Red Wave is Rising; Schumer's Messaging Falls Flat; Democrats Have No Strategy to Combat Trump; Trump is Turning America Red; ICE is Working Overtime; Trump Cuts Off Migrant Money Flow; Bass Opens Investigation into Her Ghana Trip; Monica Lewinsky Launches Podcast; Gayle King Blames Trump for Plane Crashes
## 3414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              White House Orders All Federal DEI Staff Be Put On Leave; Military Orders Thousands More Troops At Southern Border; Texas Town Braces For Trump Immigration Crackdown; Senate Receives Affidavit Accusing Hegseth Of "Abusive" Behavior; New Fire Breaks Out In Los Angeles County . Aired 3-4p ET
## 3415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         White House Orders Freeze On All Federal Grants And Loans; Assistance Pause Could Impact School Breakfast & Lunch Programs; Justice Department Fires Officials Who Investigated Trump; Trump Picks His Criminal Defense Attorneys For Key DOJ Posts. Aired 12-12:30p ET
## 3416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               White House Rescinds Controversial Federal Aid Freeze Memo; RFK Jr. Says He Is "Not Antivaccine" Despite Past Statements; RFK Jr. Grilled At Department Of Health Confirmation Hearing; Trump To Prepare Guantanamo To House 30,000 Migrants; Defense Secretary Hegseth Pulls Security Detail And Clearance For Trump Critic Gen. Mark Milley; Poor Test Scores Among U.S. Students Raise Concerns. Aired 5-6p ET
## 3417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        White House abruptly backs off Trump's federal funding freeze after lawsuits and outrage
## 3418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        White House aide says spending freeze isn’t being rescinded despite memo
## 3419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  White House budget office rescinds federal funding freeze memo
## 3420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          White House defends sweeping pause on grants and loans
## 3421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                White House demands agencies identify hundreds of thousands of potential layoffs
## 3422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          White House gives muddled answer when asked if it's safe to fly on commercial airlines
## 3423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               White House orders government DEI employees to be placed on leave
## 3424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         White House rescinded funding memo after GOP senators ‘hit the ceiling’
## 3425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 White House says EPA will cut 65 percent of spending, not staff
## 3426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    White House says Elon Musk not in charge of DOGE as top social security official exits: Live
## 3427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  White House touts feverish first month, success on immigration
## 3428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      White House: America Is Back - and President Trump Is Just Getting Started
## 3429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                White House: At USAID, Waste and Abuse Runs Deep
## 3430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                White House: First 100 Hours - Historic Action to Kick Off America 's Golden Age
## 3431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        White cornerback, Black QB: did Eagles grab ultimate DEI Super Bowl win?
## 3432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Who Is James Fishback? Investor Who Created DOGE Stimulus Check Plan
## 3433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Who Is Loren AliKhan? Judge Who Blocked Trump's Federal Grant Freeze
## 3434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Who is 'Big Balls'? Teen DOGE Engineer Edward Coristine
## 3435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Who is Jo Ellis, the transgender pilot wrongly named in DC crash?
## 3436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Who is Lorenzo Sewell, the pastor who referenced King's 'dream' speech in inaugural prayer?
## 3437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Who is Sean Duffy, the new transportation secretary responding to the DC plane crash?
## 3438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Who is Sean Duffy, the public face of the federal government's response to the DC plane crash?
## 3439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Who is the new 'Bragg' that the North Carolina base will now be named after?
## 3440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Who ordered the runway switch minutes before the DC crash? Are DEI air traffic controllers to blame? Why did Biden's FAA chief suddenly quit? All the unanswered questions
## 3441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Who was on the plane? Washington DC crash victims named
## 3442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Why DEI is key to our nation's unity - The Hawk News
## 3443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Why Hollywood may ignore Trump 2.0 at the Oscars
## 3444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Why Is Elon Musk Attacking USAID? How Partisan Politics Made Foreign Aid Agency Suddenly So Controversial
## 3445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Why Republicans keep blaming disasters on DEI
## 3446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Why Trump wants to own the Pentagon
## 3447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Why We Must Protect DEI on College Campuses - The Voice
## 3448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Why are diversity, equity and inclusion policies in the news?
## 3449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why does Donald Trump want to gut the Department of Education?
## 3450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why people are boycotting Coca-Cola - and did they really call ICE on their own employees?
## 3451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why some Americans won't spend a cent on Friday in 24-hour 'economic blackout'
## 3452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Why you should be careful before copying Trump's take-no-prisoners leadership style
## 3453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Wicked' reflects our own flawed society - if we choose to look
## 3454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Wife of slain California fire captain believed to have fled to Mexico as police issue arrest warrant for murder
## 3455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Will Nationwide Economic Blackout on February 28 Work?
## 3456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Will There Be Political Fallout For J6 Pardons; Trump Calls For Full Release Of JFK, RFK, MLK Assassination Files. Four Israeli Female Hostages Returned To Israel As Part Of Ceasefire Deal. Aired 9-10a ET
## 3457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Wins Come All Day Under President Donald J. Trump
## 3458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Winter recap: What you missed over break - Washington Square News
## 3459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Wisconsin Governor Defends Push To Redefine 'Mother' as 'Inseminated Person'
## 3460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Wisconsin governor defends inclusive language proposal to change 'mother' to 'inseminated person'
## 3461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               With NIH In Chaos, Scientists Fear Trump Will Hamstring Critical Medical Research
## 3462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    With No Evidence, Trump Blame DEI For Deadly Midair Collision; 67 Presumed Dead In Midair Collision Over Potomac River ; Trump Baselessly Blames Democrats & Diversity For Plane Crash; Trump Baselessly Appears To Blame FAA "Diversity Push" For Collision; Plane's Fuselage Found In 3 Sections In Potomac River; American Airlines CEO Says Pilot Were "Experienced". Aired 12-12:30p ET
## 3463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        With President Trump, This Time It's Different | Opinion
## 3464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           With Trump Taking Aim at Department of Education, University Could See Major Changes - Chicago Maroon
## 3465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            With Trump, every day is 'Groundhog Day.' A nightmare over and over again. | Opinion
## 3466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             With public broadcasters pressured by the Trump administration, PBS shuts down its diversity office
## 3467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Without Evidence, Trump Blames DEI For Midair Collision; Israel Releasing 110 Palestinian Prisoners; Confirmation Hearings For Trump's Picks For FBI Director, DNI; No Survivors After Midair Collision Near Washington, D.C. ; Trump Baselessly Blames Democrats And Diversity For Plane Crash; Aired 12-1p ET
## 3468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Woke 'plot' to axe face of Founding Father from Washington state flag
## 3469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woke Bishop Doubles Down On Donald Trump Attacks; Donald Trump Orders End To All Government DEI Practices By 5:00 P.M. Today; Shock And Awe Border Blitz: President Trump Cracking Down At Lightning Speed; Talk Like A Message Document: Liberal Pod Hosts Slam Dem Party For Being Disingenuous
## 3470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Woke DEI teacher complains about Trump removing their pronouns in parody-like speech
## 3471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Woke is the only enemy Trump wants to fight His reluctance to take military action is well known, but he is happy to purge DEI-loving commanders
## 3472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Wokest' DEI government workers revealed... along with their staggering taxpayer-funded pay
## 3473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Woman was passed over for promotion because she was not gay, Supreme Court case claims
## 3474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Woman ‘demoted for being straight’ eyes victory in the US Supreme Court
## 3475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Woman's Neighbors Fly MAGA Flags for Years—but They've Suddenly Disappeared
## 3476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Workers' rights caught in collision of Trump's priorities
## 3477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            World marks 80th anniversary of Auschwitz liberation
## 3478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             World news in brief
## 3479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wrecking ball: Trump’s war on ‘woke’ marks US society’s plunge into ‘dark times’
## 3480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            You want me to go swimming?': Trump says he won't visit DC plane crash site because it's 'the water'
## 3481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   You're fired': Female coastguard boss among first to fall in diversity purge Trump gets down to business with wave of sackings and dozens of executive orders
## 3482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Zelensky says Trump relationship can be repaired after White House row
## 3483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Zelenskyy Addresses World Economic Forum; Trump Shuts Down Immigration App Allowing Migrants to Enter U.S. Legally as Asylum-Seekers; Zelenskyy Urges "United" Self-Sufficient Europe at Davos ; Late Night Hosts React to Trump's Second Inauguration; Trial Against Murdoch's Tabloids Begins. Aired 9-9:45a ET
## 3484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Zelenskyy Is Defiant After Explosive Oval Office Meeting With Trump; Officials Rule Out Key Theory In Gene Hackman's Death; Trump Reveals Private Blame Game Talk With Biden; Laura Coates Interviews Author Ben Arogundade. Aired 11p-12a ET
## 3485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Zelenskyy Says, Talk With Top Trump Envoy Gives Hope; Sources Say, Hegseth Could Fire Top Generals and Admirals Soon; Gov. Kathy Hochul (D- NY ) Says She Won't Move to Oust Mayor Eric Adams (D- New York City , NY ). Sen. Mitch McConnell Announces He Won't Seek Re-Election; U.S. Senate Confirms Kash Patel For FBI Director; Hawaiian Volcano Spews Lava 400 Feet Into The Air. Aired 6-7p ET
## 3486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Zuckerberg philanthropy ends DEI programs
## 3487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Zuckerberg's charity scraps diversity team despite pledge to staff
## 3488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Zuckerberg’s swerve: how diversity went from being a Meta priority to getting cancelled
## 3489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 » Learning the Importance of Maintaining Community During Political Uncertainty
## 3490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                » Students Advocate for DEI in Light of Trump's Executive Orders
## 3491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ‘A fight for our lives’: Trump’s USAid freeze is harming millions of women and girls
## 3492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ‘A true free-speech emergency’: alarm over Trump’s ‘chilling’ attacks on media
## 3493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ‘Another woke disaster from Hollywood!’ How Captain America joined the culture wars
## 3494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ‘Become American , Work Hard, Love Democracy’: Dreams Dashed by Trump Orders
## 3495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ‘Black box’ from helicopter involved in Washington plane crash recovered
## 3496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ‘Committed to inclusion’: BT refuses to shut the door on DEI
## 3497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ‘DEI Watch list’ sparks racism charges; Advocates see that as validation
## 3498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ‘DEI cost me a job in aviation – a crash was inevitable’
## 3499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ‘Debanking,’ and the Trump Diss Heard Around Davos DealBook Newsletter
## 3500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ‘He feels empowered’: DeSantis kicks off takeover of second liberal Florida school
## 3501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ‘Headed for technofascism’: the rightwing roots of Silicon Valley
## 3502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ‘History was attempted to be buried’: the true story behind Oscar-nominated Nickel Boys
## 3503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ‘Hit them where it hurts’: US consumers begin economic blackout to protest anti-DEI policies
## 3504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ‘It’s been madness’: US federal workers reeling over Trump-Musk takeover
## 3505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ‘I’ve had it’: JP Morgan boss rails against Gen Z in expletive-laden outburst
## 3506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ‘Panic, fear and confusion’: The USAID controversy explained
## 3507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ‘Really scary’: rightwing watchlist found of mostly Black federal health workers
## 3508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ‘SNL’ cold open spoofs signing of Declaration of Independence with Hamilton, Trump
## 3509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ‘Safe to be a white male again’: how conservative media covered Trump’s first week
## 3510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ‘Stomach-turning’: Democrats condemn Trump’s DEI claims after Washington plane crash
## 3511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ‘The View’ host Sunny Hostin calls Trump a ‘DEI hire’
## 3512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ‘The deification of Trump will be complete’ at CPAC 2025
## 3513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ‘The greatest propaganda op in history’: Trump’s reshaping of US culture evokes past antidemocratic regimes
## 3514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ‘They will collide eventually’: how long will the Trump-Musk relationship survive?
## 3515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ‘They’ve lost my trust’: consumers shun companies as bosses kowtow to Trump
## 3516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ‘This moment is medieval’: Jackson Katz on misogyny, the manosphere – and why men must oppose Trumpism
## 3517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ‘Very retaliatory’: the federal workers caught up in Trump ’s DEI purge
## 3518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ‘We are concerned when we give up on fairness’: the professors charting a new route for DEI
## 3519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ‘We’re like sitting ducks’: the right’s ‘war on woke’ has a well-tested playbook to take down academics
##      n
## 1    1
## 2    1
## 3    1
## 4    1
## 5    1
## 6    1
## 7    1
## 8    1
## 9    1
## 10   1
## 11   1
## 12   1
## 13   1
## 14   1
## 15   1
## 16   1
## 17   1
## 18   1
## 19   1
## 20   1
## 21   1
## 22   1
## 23   1
## 24   1
## 25   1
## 26   1
## 27   1
## 28   1
## 29   1
## 30   1
## 31   1
## 32   1
## 33   1
## 34   1
## 35   1
## 36   1
## 37   1
## 38   1
## 39   1
## 40   1
## 41   1
## 42   1
## 43   1
## 44   1
## 45   1
## 46   1
## 47   1
## 48   1
## 49   1
## 50   1
## 51   1
## 52   1
## 53   1
## 54   1
## 55   1
## 56   1
## 57   1
## 58   1
## 59   1
## 60   1
## 61   1
## 62   1
## 63   1
## 64   1
## 65   1
## 66   1
## 67   1
## 68   1
## 69   1
## 70   1
## 71   1
## 72   1
## 73   1
## 74   1
## 75   1
## 76   1
## 77   1
## 78   1
## 79   1
## 80   1
## 81   1
## 82   1
## 83   1
## 84   1
## 85   1
## 86   1
## 87   1
## 88   1
## 89   1
## 90   1
## 91   1
## 92   1
## 93   1
## 94   1
## 95   1
## 96   1
## 97   1
## 98   1
## 99   1
## 100  1
## 101  1
## 102  1
## 103  1
## 104  1
## 105  1
## 106  1
## 107  1
## 108  1
## 109  1
## 110  1
## 111  1
## 112  1
## 113  1
## 114  1
## 115  1
## 116  1
## 117  1
## 118  1
## 119  1
## 120  1
## 121  1
## 122  1
## 123  1
## 124  1
## 125  1
## 126  1
## 127  1
## 128  1
## 129  1
## 130  1
## 131  1
## 132  1
## 133  1
## 134  1
## 135  1
## 136  1
## 137  1
## 138  1
## 139  1
## 140  1
## 141  1
## 142  1
## 143  1
## 144  1
## 145  1
## 146  1
## 147  1
## 148  1
## 149  1
## 150  1
## 151  1
## 152  1
## 153  1
## 154  1
## 155  1
## 156  1
## 157  1
## 158  1
## 159  1
## 160  1
## 161  1
## 162  1
## 163  1
## 164  1
## 165  1
## 166  1
## 167  1
## 168  1
## 169  1
## 170  1
## 171  1
## 172  1
## 173  1
## 174  1
## 175  1
## 176  1
## 177  1
## 178  1
## 179  1
## 180  1
## 181  1
## 182  1
## 183  1
## 184  1
## 185  1
## 186  1
## 187  1
## 188  1
## 189  1
## 190  1
## 191  1
## 192  1
## 193  1
## 194  1
## 195  1
## 196  1
## 197  1
## 198  1
## 199  1
## 200  1
## 201  1
## 202  1
## 203  1
## 204  1
## 205  1
## 206  1
## 207  1
## 208  1
## 209  1
## 210  1
## 211  1
## 212  1
## 213  1
## 214  1
## 215  1
## 216  1
## 217  1
## 218  1
## 219  1
## 220  1
## 221  1
## 222  1
## 223  1
## 224  1
## 225  1
## 226  1
## 227  1
## 228  1
## 229  1
## 230  1
## 231  1
## 232  1
## 233  1
## 234  1
## 235  1
## 236  1
## 237  1
## 238  1
## 239  1
## 240  1
## 241  1
## 242  1
## 243  1
## 244  1
## 245  1
## 246  1
## 247  1
## 248  1
## 249  1
## 250  1
## 251  1
## 252  1
## 253  1
## 254  1
## 255  1
## 256  1
## 257  1
## 258  1
## 259  1
## 260  1
## 261  1
## 262  1
## 263  1
## 264  1
## 265  1
## 266  1
## 267  1
## 268  1
## 269  1
## 270  1
## 271  1
## 272  1
## 273  1
## 274  1
## 275  1
## 276  1
## 277  1
## 278  1
## 279  1
## 280  1
## 281  1
## 282  1
## 283  1
## 284  1
## 285  1
## 286  1
## 287  1
## 288  1
## 289  1
## 290  1
## 291  1
## 292  1
## 293  1
## 294  1
## 295  1
## 296  1
## 297  1
## 298  1
## 299  1
## 300  1
## 301  1
## 302  1
## 303  1
## 304  1
## 305  1
## 306  1
## 307  1
## 308  1
## 309  1
## 310  1
## 311  1
## 312  1
## 313  1
## 314  1
## 315  1
## 316  1
## 317  1
## 318  1
## 319  1
## 320  1
## 321  1
## 322  1
## 323  1
## 324  1
## 325  1
## 326  1
## 327  1
## 328  1
## 329  1
## 330  1
## 331  1
## 332  1
## 333  1
## 334  1
## 335  1
## 336  1
## 337  1
## 338  1
## 339  1
## 340  1
## 341  1
## 342  1
## 343  1
## 344  1
## 345  1
## 346  1
## 347  1
## 348  1
## 349  1
## 350  1
## 351  1
## 352  1
## 353  1
## 354  1
## 355  1
## 356  1
## 357  1
## 358  1
## 359  1
## 360  1
## 361  1
## 362  1
## 363  1
## 364  1
## 365  1
## 366  1
## 367  1
## 368  1
## 369  1
## 370  1
## 371  1
## 372  1
## 373  1
## 374  1
## 375  1
## 376  1
## 377  1
## 378  1
## 379  1
## 380  1
## 381  1
## 382  1
## 383  1
## 384  1
## 385  1
## 386  1
## 387  1
## 388  1
## 389  1
## 390  1
## 391  1
## 392  1
## 393  1
## 394  1
## 395  1
## 396  1
## 397  1
## 398  1
## 399  1
## 400  1
## 401  1
## 402  1
## 403  1
## 404  1
## 405  1
## 406  1
## 407  1
## 408  1
## 409  1
## 410  1
## 411  1
## 412  1
## 413  1
## 414  1
## 415  1
## 416  1
## 417  1
## 418  1
## 419  1
## 420  1
## 421  1
## 422  1
## 423  1
## 424  1
## 425  1
## 426  1
## 427  1
## 428  1
## 429  1
## 430  1
## 431  1
## 432  1
## 433  1
## 434  1
## 435  1
## 436  1
## 437  1
## 438  1
## 439  1
## 440  1
## 441  1
## 442  1
## 443  1
## 444  1
## 445  1
## 446  1
## 447  1
## 448  1
## 449  1
## 450  1
## 451  1
## 452  1
## 453  1
## 454  1
## 455  1
## 456  1
## 457  1
## 458  1
## 459  1
## 460  1
## 461  1
## 462  1
## 463  1
## 464  1
## 465  1
## 466  1
## 467  1
## 468  1
## 469  1
## 470  1
## 471  1
## 472  1
## 473  1
## 474  1
## 475  1
## 476  1
## 477  1
## 478  1
## 479  1
## 480  1
## 481  1
## 482  1
## 483  1
## 484  1
## 485  1
## 486  1
## 487  1
## 488  1
## 489  1
## 490  1
## 491  1
## 492  1
## 493  1
## 494  1
## 495  1
## 496  1
## 497  1
## 498  1
## 499  1
## 500  1
## 501  1
## 502  1
## 503  1
## 504  1
## 505  1
## 506  1
## 507  1
## 508  1
## 509  1
## 510  1
## 511  1
## 512  1
## 513  1
## 514  1
## 515  1
## 516  1
## 517  1
## 518  1
## 519  1
## 520  1
## 521  1
## 522  1
## 523  1
## 524  1
## 525  1
## 526  1
## 527  1
## 528  1
## 529  1
## 530  1
## 531  1
## 532  1
## 533  1
## 534  1
## 535  1
## 536  1
## 537  1
## 538  1
## 539  1
## 540  1
## 541  1
## 542  1
## 543  1
## 544  1
## 545  1
## 546  1
## 547  1
## 548  1
## 549  1
## 550  1
## 551  1
## 552  1
## 553  1
## 554  1
## 555  1
## 556  1
## 557  1
## 558  1
## 559  1
## 560  1
## 561  1
## 562  1
## 563  1
## 564  1
## 565  1
## 566  1
## 567  1
## 568  1
## 569  1
## 570  1
## 571  1
## 572  1
## 573  1
## 574  1
## 575  1
## 576  1
## 577  1
## 578  1
## 579  1
## 580  1
## 581  1
## 582  1
## 583  1
## 584  1
## 585  1
## 586  1
## 587  1
## 588  1
## 589  1
## 590  1
## 591  1
## 592  1
## 593  1
## 594  1
## 595  1
## 596  1
## 597  1
## 598  1
## 599  1
## 600  1
## 601  1
## 602  1
## 603  1
## 604  1
## 605  1
## 606  1
## 607  1
## 608  1
## 609  1
## 610  1
## 611  1
## 612  1
## 613  1
## 614  1
## 615  1
## 616  1
## 617  1
## 618  1
## 619  1
## 620  1
## 621  1
## 622  1
## 623  1
## 624  1
## 625  1
## 626  1
## 627  1
## 628  1
## 629  1
## 630  1
## 631  1
## 632  1
## 633  1
## 634  1
## 635  1
## 636  1
## 637  1
## 638  1
## 639  1
## 640  1
## 641  1
## 642  1
## 643  1
## 644  1
## 645  1
## 646  1
## 647  1
## 648  1
## 649  1
## 650  1
## 651  1
## 652  1
## 653  1
## 654  1
## 655  1
## 656  1
## 657  1
## 658  1
## 659  1
## 660  1
## 661  1
## 662  1
## 663  1
## 664  1
## 665  1
## 666  1
## 667  1
## 668  1
## 669  1
## 670  1
## 671  1
## 672  1
## 673  1
## 674  1
## 675  1
## 676  1
## 677  1
## 678  1
## 679  1
## 680  1
## 681  1
## 682  1
## 683  1
## 684  1
## 685  1
## 686  1
## 687  1
## 688  1
## 689  1
## 690  1
## 691  1
## 692  1
## 693  1
## 694  1
## 695  1
## 696  1
## 697  1
## 698  1
## 699  1
## 700  1
## 701  1
## 702  1
## 703  1
## 704  1
## 705  1
## 706  1
## 707  1
## 708  1
## 709  1
## 710  1
## 711  1
## 712  1
## 713  1
## 714  1
## 715  1
## 716  1
## 717  1
## 718  1
## 719  1
## 720  1
## 721  1
## 722  1
## 723  1
## 724  1
## 725  1
## 726  1
## 727  1
## 728  1
## 729  1
## 730  1
## 731  1
## 732  1
## 733  1
## 734  1
## 735  1
## 736  1
## 737  1
## 738  1
## 739  1
## 740  1
## 741  1
## 742  1
## 743  1
## 744  1
## 745  1
## 746  1
## 747  1
## 748  1
## 749  1
## 750  1
## 751  1
## 752  1
## 753  1
## 754  1
## 755  1
## 756  1
## 757  1
## 758  1
## 759  1
## 760  1
## 761  1
## 762  1
## 763  1
## 764  1
## 765  1
## 766  1
## 767  1
## 768  1
## 769  1
## 770  1
## 771  1
## 772  1
## 773  1
## 774  1
## 775  1
## 776  1
## 777  1
## 778  1
## 779  1
## 780  1
## 781  1
## 782  1
## 783  1
## 784  1
## 785  1
## 786  1
## 787  1
## 788  1
## 789  1
## 790  1
## 791  1
## 792  1
## 793  1
## 794  1
## 795  1
## 796  1
## 797  1
## 798  1
## 799  1
## 800  1
## 801  1
## 802  1
## 803  1
## 804  1
## 805  1
## 806  1
## 807  1
## 808  1
## 809  1
## 810  1
## 811  1
## 812  1
## 813  1
## 814  1
## 815  1
## 816  1
## 817  1
## 818  1
## 819  1
## 820  1
## 821  1
## 822  1
## 823  1
## 824  1
## 825  1
## 826  1
## 827  1
## 828  1
## 829  1
## 830  1
## 831  1
## 832  1
## 833  1
## 834  1
## 835  1
## 836  1
## 837  1
## 838  1
## 839  1
## 840  1
## 841  1
## 842  1
## 843  1
## 844  1
## 845  1
## 846  1
## 847  1
## 848  1
## 849  1
## 850  1
## 851  1
## 852  1
## 853  1
## 854  1
## 855  1
## 856  1
## 857  1
## 858  1
## 859  1
## 860  1
## 861  1
## 862  1
## 863  1
## 864  1
## 865  1
## 866  1
## 867  1
## 868  1
## 869  1
## 870  1
## 871  1
## 872  1
## 873  1
## 874  1
## 875  1
## 876  1
## 877  1
## 878  1
## 879  1
## 880  1
## 881  1
## 882  1
## 883  1
## 884  1
## 885  1
## 886  1
## 887  1
## 888  1
## 889  1
## 890  1
## 891  1
## 892  1
## 893  1
## 894  1
## 895  1
## 896  1
## 897  1
## 898  1
## 899  1
## 900  1
## 901  1
## 902  1
## 903  1
## 904  1
## 905  1
## 906  1
## 907  1
## 908  1
## 909  1
## 910  1
## 911  1
## 912  1
## 913  1
## 914  1
## 915  1
## 916  1
## 917  1
## 918  1
## 919  1
## 920  1
## 921  1
## 922  1
## 923  1
## 924  1
## 925  1
## 926  1
## 927  1
## 928  1
## 929  1
## 930  1
## 931  1
## 932  1
## 933  1
## 934  1
## 935  1
## 936  1
## 937  1
## 938  1
## 939  1
## 940  1
## 941  1
## 942  1
## 943  1
## 944  1
## 945  1
## 946  1
## 947  1
## 948  1
## 949  1
## 950  1
## 951  1
## 952  1
## 953  1
## 954  1
## 955  1
## 956  1
## 957  1
## 958  1
## 959  1
## 960  1
## 961  1
## 962  1
## 963  1
## 964  1
## 965  1
## 966  1
## 967  1
## 968  1
## 969  1
## 970  1
## 971  1
## 972  1
## 973  1
## 974  1
## 975  1
## 976  1
## 977  1
## 978  1
## 979  1
## 980  1
## 981  1
## 982  1
## 983  1
## 984  1
## 985  1
## 986  1
## 987  1
## 988  1
## 989  1
## 990  1
## 991  1
## 992  1
## 993  1
## 994  1
## 995  1
## 996  1
## 997  1
## 998  1
## 999  1
## 1000 1
## 1001 1
## 1002 1
## 1003 1
## 1004 1
## 1005 1
## 1006 1
## 1007 1
## 1008 1
## 1009 1
## 1010 1
## 1011 1
## 1012 1
## 1013 1
## 1014 1
## 1015 1
## 1016 1
## 1017 1
## 1018 1
## 1019 1
## 1020 1
## 1021 1
## 1022 1
## 1023 1
## 1024 1
## 1025 1
## 1026 1
## 1027 1
## 1028 1
## 1029 1
## 1030 1
## 1031 1
## 1032 1
## 1033 1
## 1034 1
## 1035 1
## 1036 1
## 1037 1
## 1038 1
## 1039 1
## 1040 1
## 1041 1
## 1042 1
## 1043 1
## 1044 1
## 1045 1
## 1046 1
## 1047 1
## 1048 1
## 1049 1
## 1050 1
## 1051 1
## 1052 1
## 1053 1
## 1054 1
## 1055 1
## 1056 1
## 1057 1
## 1058 1
## 1059 1
## 1060 1
## 1061 1
## 1062 1
## 1063 1
## 1064 1
## 1065 1
## 1066 1
## 1067 1
## 1068 1
## 1069 1
## 1070 1
## 1071 1
## 1072 1
## 1073 1
## 1074 1
## 1075 1
## 1076 1
## 1077 1
## 1078 1
## 1079 1
## 1080 1
## 1081 1
## 1082 1
## 1083 1
## 1084 1
## 1085 1
## 1086 1
## 1087 1
## 1088 1
## 1089 1
## 1090 1
## 1091 1
## 1092 1
## 1093 1
## 1094 1
## 1095 1
## 1096 1
## 1097 1
## 1098 1
## 1099 1
## 1100 1
## 1101 1
## 1102 1
## 1103 1
## 1104 1
## 1105 1
## 1106 1
## 1107 1
## 1108 1
## 1109 1
## 1110 1
## 1111 1
## 1112 1
## 1113 1
## 1114 1
## 1115 1
## 1116 1
## 1117 1
## 1118 1
## 1119 1
## 1120 1
## 1121 1
## 1122 1
## 1123 1
## 1124 1
## 1125 1
## 1126 1
## 1127 1
## 1128 1
## 1129 1
## 1130 1
## 1131 1
## 1132 1
## 1133 1
## 1134 1
## 1135 1
## 1136 1
## 1137 1
## 1138 1
## 1139 1
## 1140 1
## 1141 1
## 1142 1
## 1143 1
## 1144 1
## 1145 1
## 1146 1
## 1147 1
## 1148 1
## 1149 1
## 1150 1
## 1151 1
## 1152 1
## 1153 1
## 1154 1
## 1155 1
## 1156 1
## 1157 1
## 1158 1
## 1159 1
## 1160 1
## 1161 1
## 1162 1
## 1163 1
## 1164 1
## 1165 1
## 1166 1
## 1167 1
## 1168 1
## 1169 1
## 1170 1
## 1171 1
## 1172 1
## 1173 1
## 1174 1
## 1175 1
## 1176 1
## 1177 1
## 1178 1
## 1179 1
## 1180 1
## 1181 1
## 1182 1
## 1183 1
## 1184 1
## 1185 1
## 1186 1
## 1187 1
## 1188 1
## 1189 1
## 1190 1
## 1191 1
## 1192 1
## 1193 1
## 1194 1
## 1195 1
## 1196 1
## 1197 1
## 1198 1
## 1199 1
## 1200 1
## 1201 1
## 1202 1
## 1203 1
## 1204 1
## 1205 1
## 1206 1
## 1207 1
## 1208 1
## 1209 1
## 1210 1
## 1211 1
## 1212 1
## 1213 1
## 1214 1
## 1215 1
## 1216 1
## 1217 1
## 1218 1
## 1219 1
## 1220 1
## 1221 1
## 1222 1
## 1223 1
## 1224 1
## 1225 1
## 1226 1
## 1227 1
## 1228 1
## 1229 1
## 1230 1
## 1231 1
## 1232 1
## 1233 1
## 1234 1
## 1235 1
## 1236 1
## 1237 1
## 1238 1
## 1239 1
## 1240 1
## 1241 1
## 1242 1
## 1243 1
## 1244 1
## 1245 1
## 1246 1
## 1247 1
## 1248 1
## 1249 1
## 1250 1
## 1251 1
## 1252 1
## 1253 1
## 1254 1
## 1255 1
## 1256 1
## 1257 1
## 1258 1
## 1259 1
## 1260 1
## 1261 1
## 1262 1
## 1263 1
## 1264 1
## 1265 1
## 1266 1
## 1267 1
## 1268 1
## 1269 1
## 1270 1
## 1271 1
## 1272 1
## 1273 1
## 1274 1
## 1275 1
## 1276 1
## 1277 1
## 1278 1
## 1279 1
## 1280 1
## 1281 1
## 1282 1
## 1283 1
## 1284 1
## 1285 1
## 1286 1
## 1287 1
## 1288 1
## 1289 1
## 1290 1
## 1291 1
## 1292 1
## 1293 1
## 1294 1
## 1295 1
## 1296 1
## 1297 1
## 1298 1
## 1299 1
## 1300 1
## 1301 1
## 1302 1
## 1303 1
## 1304 1
## 1305 1
## 1306 1
## 1307 1
## 1308 1
## 1309 1
## 1310 1
## 1311 1
## 1312 1
## 1313 1
## 1314 1
## 1315 1
## 1316 1
## 1317 1
## 1318 1
## 1319 1
## 1320 1
## 1321 1
## 1322 1
## 1323 1
## 1324 1
## 1325 1
## 1326 1
## 1327 1
## 1328 1
## 1329 1
## 1330 1
## 1331 1
## 1332 1
## 1333 1
## 1334 1
## 1335 1
## 1336 1
## 1337 1
## 1338 1
## 1339 1
## 1340 1
## 1341 1
## 1342 1
## 1343 1
## 1344 1
## 1345 1
## 1346 1
## 1347 1
## 1348 1
## 1349 1
## 1350 1
## 1351 1
## 1352 1
## 1353 1
## 1354 1
## 1355 1
## 1356 1
## 1357 1
## 1358 1
## 1359 1
## 1360 1
## 1361 1
## 1362 1
## 1363 1
## 1364 1
## 1365 1
## 1366 1
## 1367 1
## 1368 1
## 1369 1
## 1370 1
## 1371 1
## 1372 1
## 1373 1
## 1374 1
## 1375 1
## 1376 1
## 1377 1
## 1378 1
## 1379 1
## 1380 1
## 1381 1
## 1382 1
## 1383 1
## 1384 1
## 1385 1
## 1386 1
## 1387 1
## 1388 1
## 1389 1
## 1390 1
## 1391 1
## 1392 1
## 1393 1
## 1394 1
## 1395 1
## 1396 1
## 1397 1
## 1398 1
## 1399 1
## 1400 1
## 1401 1
## 1402 1
## 1403 1
## 1404 1
## 1405 1
## 1406 1
## 1407 1
## 1408 1
## 1409 1
## 1410 1
## 1411 1
## 1412 1
## 1413 1
## 1414 1
## 1415 1
## 1416 1
## 1417 1
## 1418 1
## 1419 1
## 1420 1
## 1421 1
## 1422 1
## 1423 1
## 1424 1
## 1425 1
## 1426 1
## 1427 1
## 1428 1
## 1429 1
## 1430 1
## 1431 1
## 1432 1
## 1433 1
## 1434 1
## 1435 1
## 1436 1
## 1437 1
## 1438 1
## 1439 1
## 1440 1
## 1441 1
## 1442 1
## 1443 1
## 1444 1
## 1445 1
## 1446 1
## 1447 1
## 1448 1
## 1449 1
## 1450 1
## 1451 1
## 1452 1
## 1453 1
## 1454 1
## 1455 1
## 1456 1
## 1457 1
## 1458 1
## 1459 1
## 1460 1
## 1461 1
## 1462 1
## 1463 1
## 1464 1
## 1465 1
## 1466 1
## 1467 1
## 1468 1
## 1469 1
## 1470 1
## 1471 1
## 1472 1
## 1473 1
## 1474 1
## 1475 1
## 1476 1
## 1477 1
## 1478 1
## 1479 1
## 1480 1
## 1481 1
## 1482 1
## 1483 1
## 1484 1
## 1485 1
## 1486 1
## 1487 1
## 1488 1
## 1489 1
## 1490 1
## 1491 1
## 1492 1
## 1493 1
## 1494 1
## 1495 1
## 1496 1
## 1497 1
## 1498 1
## 1499 1
## 1500 1
## 1501 1
## 1502 1
## 1503 1
## 1504 1
## 1505 1
## 1506 1
## 1507 1
## 1508 1
## 1509 1
## 1510 1
## 1511 1
## 1512 1
## 1513 1
## 1514 1
## 1515 1
## 1516 1
## 1517 1
## 1518 1
## 1519 1
## 1520 1
## 1521 1
## 1522 1
## 1523 1
## 1524 1
## 1525 1
## 1526 1
## 1527 1
## 1528 1
## 1529 1
## 1530 1
## 1531 1
## 1532 1
## 1533 1
## 1534 1
## 1535 1
## 1536 1
## 1537 1
## 1538 1
## 1539 1
## 1540 1
## 1541 1
## 1542 1
## 1543 1
## 1544 1
## 1545 1
## 1546 1
## 1547 1
## 1548 1
## 1549 1
## 1550 1
## 1551 1
## 1552 1
## 1553 1
## 1554 1
## 1555 1
## 1556 1
## 1557 1
## 1558 1
## 1559 1
## 1560 1
## 1561 1
## 1562 1
## 1563 1
## 1564 1
## 1565 1
## 1566 1
## 1567 1
## 1568 1
## 1569 1
## 1570 1
## 1571 1
## 1572 1
## 1573 1
## 1574 1
## 1575 1
## 1576 1
## 1577 1
## 1578 1
## 1579 1
## 1580 1
## 1581 1
## 1582 1
## 1583 1
## 1584 1
## 1585 1
## 1586 1
## 1587 1
## 1588 1
## 1589 1
## 1590 1
## 1591 1
## 1592 1
## 1593 1
## 1594 1
## 1595 1
## 1596 1
## 1597 1
## 1598 1
## 1599 1
## 1600 1
## 1601 1
## 1602 1
## 1603 1
## 1604 1
## 1605 1
## 1606 1
## 1607 1
## 1608 1
## 1609 1
## 1610 1
## 1611 1
## 1612 1
## 1613 1
## 1614 1
## 1615 1
## 1616 1
## 1617 1
## 1618 1
## 1619 1
## 1620 1
## 1621 1
## 1622 1
## 1623 1
## 1624 1
## 1625 1
## 1626 1
## 1627 1
## 1628 1
## 1629 1
## 1630 1
## 1631 1
## 1632 1
## 1633 1
## 1634 1
## 1635 1
## 1636 1
## 1637 1
## 1638 1
## 1639 1
## 1640 1
## 1641 1
## 1642 1
## 1643 1
## 1644 1
## 1645 1
## 1646 1
## 1647 1
## 1648 1
## 1649 1
## 1650 1
## 1651 1
## 1652 1
## 1653 1
## 1654 1
## 1655 1
## 1656 1
## 1657 1
## 1658 1
## 1659 1
## 1660 1
## 1661 1
## 1662 1
## 1663 1
## 1664 1
## 1665 1
## 1666 1
## 1667 1
## 1668 1
## 1669 1
## 1670 1
## 1671 1
## 1672 1
## 1673 1
## 1674 1
## 1675 1
## 1676 1
## 1677 1
## 1678 1
## 1679 1
## 1680 1
## 1681 1
## 1682 1
## 1683 1
## 1684 1
## 1685 1
## 1686 1
## 1687 1
## 1688 1
## 1689 1
## 1690 1
## 1691 1
## 1692 1
## 1693 1
## 1694 1
## 1695 1
## 1696 1
## 1697 1
## 1698 1
## 1699 1
## 1700 1
## 1701 1
## 1702 1
## 1703 1
## 1704 1
## 1705 1
## 1706 1
## 1707 1
## 1708 1
## 1709 1
## 1710 1
## 1711 1
## 1712 1
## 1713 1
## 1714 1
## 1715 1
## 1716 1
## 1717 1
## 1718 1
## 1719 1
## 1720 1
## 1721 1
## 1722 1
## 1723 1
## 1724 1
## 1725 1
## 1726 1
## 1727 1
## 1728 1
## 1729 1
## 1730 1
## 1731 1
## 1732 1
## 1733 1
## 1734 1
## 1735 1
## 1736 1
## 1737 1
## 1738 1
## 1739 1
## 1740 1
## 1741 1
## 1742 1
## 1743 1
## 1744 1
## 1745 1
## 1746 1
## 1747 1
## 1748 1
## 1749 1
## 1750 1
## 1751 1
## 1752 1
## 1753 1
## 1754 1
## 1755 1
## 1756 1
## 1757 1
## 1758 1
## 1759 1
## 1760 1
## 1761 1
## 1762 1
## 1763 1
## 1764 1
## 1765 1
## 1766 1
## 1767 1
## 1768 1
## 1769 1
## 1770 1
## 1771 1
## 1772 1
## 1773 1
## 1774 1
## 1775 1
## 1776 1
## 1777 1
## 1778 1
## 1779 1
## 1780 1
## 1781 1
## 1782 1
## 1783 1
## 1784 1
## 1785 1
## 1786 1
## 1787 1
## 1788 1
## 1789 1
## 1790 1
## 1791 1
## 1792 1
## 1793 1
## 1794 1
## 1795 1
## 1796 1
## 1797 1
## 1798 1
## 1799 1
## 1800 1
## 1801 1
## 1802 1
## 1803 1
## 1804 1
## 1805 1
## 1806 1
## 1807 1
## 1808 1
## 1809 1
## 1810 1
## 1811 1
## 1812 1
## 1813 1
## 1814 1
## 1815 1
## 1816 1
## 1817 1
## 1818 1
## 1819 1
## 1820 1
## 1821 1
## 1822 1
## 1823 1
## 1824 1
## 1825 1
## 1826 1
## 1827 1
## 1828 1
## 1829 1
## 1830 1
## 1831 1
## 1832 1
## 1833 1
## 1834 1
## 1835 1
## 1836 1
## 1837 1
## 1838 1
## 1839 1
## 1840 1
## 1841 1
## 1842 1
## 1843 1
## 1844 1
## 1845 1
## 1846 1
## 1847 1
## 1848 1
## 1849 1
## 1850 1
## 1851 1
## 1852 1
## 1853 1
## 1854 1
## 1855 1
## 1856 1
## 1857 1
## 1858 1
## 1859 1
## 1860 1
## 1861 1
## 1862 1
## 1863 1
## 1864 1
## 1865 1
## 1866 1
## 1867 1
## 1868 1
## 1869 1
## 1870 1
## 1871 1
## 1872 1
## 1873 1
## 1874 1
## 1875 1
## 1876 1
## 1877 1
## 1878 1
## 1879 1
## 1880 1
## 1881 1
## 1882 1
## 1883 1
## 1884 1
## 1885 1
## 1886 1
## 1887 1
## 1888 1
## 1889 1
## 1890 1
## 1891 1
## 1892 1
## 1893 1
## 1894 1
## 1895 1
## 1896 1
## 1897 1
## 1898 1
## 1899 1
## 1900 1
## 1901 1
## 1902 1
## 1903 1
## 1904 1
## 1905 1
## 1906 1
## 1907 1
## 1908 1
## 1909 1
## 1910 1
## 1911 1
## 1912 1
## 1913 1
## 1914 1
## 1915 1
## 1916 1
## 1917 1
## 1918 1
## 1919 1
## 1920 1
## 1921 1
## 1922 1
## 1923 1
## 1924 1
## 1925 1
## 1926 1
## 1927 1
## 1928 1
## 1929 1
## 1930 1
## 1931 1
## 1932 1
## 1933 1
## 1934 1
## 1935 1
## 1936 1
## 1937 1
## 1938 1
## 1939 1
## 1940 1
## 1941 1
## 1942 1
## 1943 1
## 1944 1
## 1945 1
## 1946 1
## 1947 1
## 1948 1
## 1949 1
## 1950 1
## 1951 1
## 1952 1
## 1953 1
## 1954 1
## 1955 1
## 1956 1
## 1957 1
## 1958 1
## 1959 1
## 1960 1
## 1961 1
## 1962 1
## 1963 1
## 1964 1
## 1965 1
## 1966 1
## 1967 1
## 1968 1
## 1969 1
## 1970 1
## 1971 1
## 1972 1
## 1973 1
## 1974 1
## 1975 1
## 1976 1
## 1977 1
## 1978 1
## 1979 1
## 1980 1
## 1981 1
## 1982 1
## 1983 1
## 1984 1
## 1985 1
## 1986 1
## 1987 1
## 1988 1
## 1989 1
## 1990 1
## 1991 1
## 1992 1
## 1993 1
## 1994 1
## 1995 1
## 1996 1
## 1997 1
## 1998 1
## 1999 1
## 2000 1
## 2001 1
## 2002 1
## 2003 1
## 2004 1
## 2005 1
## 2006 1
## 2007 1
## 2008 1
## 2009 1
## 2010 1
## 2011 1
## 2012 1
## 2013 1
## 2014 1
## 2015 1
## 2016 1
## 2017 1
## 2018 1
## 2019 1
## 2020 1
## 2021 1
## 2022 1
## 2023 1
## 2024 1
## 2025 1
## 2026 1
## 2027 1
## 2028 1
## 2029 1
## 2030 1
## 2031 1
## 2032 1
## 2033 1
## 2034 1
## 2035 1
## 2036 1
## 2037 1
## 2038 1
## 2039 1
## 2040 1
## 2041 1
## 2042 1
## 2043 1
## 2044 1
## 2045 1
## 2046 1
## 2047 1
## 2048 1
## 2049 1
## 2050 1
## 2051 1
## 2052 1
## 2053 1
## 2054 1
## 2055 1
## 2056 1
## 2057 1
## 2058 1
## 2059 1
## 2060 1
## 2061 1
## 2062 1
## 2063 1
## 2064 1
## 2065 1
## 2066 1
## 2067 1
## 2068 1
## 2069 1
## 2070 1
## 2071 1
## 2072 1
## 2073 1
## 2074 1
## 2075 1
## 2076 1
## 2077 1
## 2078 1
## 2079 1
## 2080 1
## 2081 1
## 2082 1
## 2083 1
## 2084 1
## 2085 1
## 2086 1
## 2087 1
## 2088 1
## 2089 1
## 2090 1
## 2091 1
## 2092 1
## 2093 1
## 2094 1
## 2095 1
## 2096 1
## 2097 1
## 2098 1
## 2099 1
## 2100 1
## 2101 1
## 2102 1
## 2103 1
## 2104 1
## 2105 1
## 2106 1
## 2107 1
## 2108 1
## 2109 1
## 2110 1
## 2111 1
## 2112 1
## 2113 1
## 2114 1
## 2115 1
## 2116 1
## 2117 1
## 2118 1
## 2119 1
## 2120 1
## 2121 1
## 2122 1
## 2123 1
## 2124 1
## 2125 1
## 2126 1
## 2127 1
## 2128 1
## 2129 1
## 2130 1
## 2131 1
## 2132 1
## 2133 1
## 2134 1
## 2135 1
## 2136 1
## 2137 1
## 2138 1
## 2139 1
## 2140 1
## 2141 1
## 2142 1
## 2143 1
## 2144 1
## 2145 1
## 2146 1
## 2147 1
## 2148 1
## 2149 1
## 2150 1
## 2151 1
## 2152 1
## 2153 1
## 2154 1
## 2155 1
## 2156 1
## 2157 1
## 2158 1
## 2159 1
## 2160 1
## 2161 1
## 2162 1
## 2163 1
## 2164 1
## 2165 1
## 2166 1
## 2167 1
## 2168 1
## 2169 1
## 2170 1
## 2171 1
## 2172 1
## 2173 1
## 2174 1
## 2175 1
## 2176 1
## 2177 1
## 2178 1
## 2179 1
## 2180 1
## 2181 1
## 2182 1
## 2183 1
## 2184 1
## 2185 1
## 2186 1
## 2187 1
## 2188 1
## 2189 1
## 2190 1
## 2191 1
## 2192 1
## 2193 1
## 2194 1
## 2195 1
## 2196 1
## 2197 1
## 2198 1
## 2199 1
## 2200 1
## 2201 1
## 2202 1
## 2203 1
## 2204 1
## 2205 1
## 2206 1
## 2207 1
## 2208 1
## 2209 1
## 2210 1
## 2211 1
## 2212 1
## 2213 1
## 2214 1
## 2215 1
## 2216 1
## 2217 1
## 2218 1
## 2219 1
## 2220 1
## 2221 1
## 2222 1
## 2223 1
## 2224 1
## 2225 1
## 2226 1
## 2227 1
## 2228 1
## 2229 1
## 2230 1
## 2231 1
## 2232 1
## 2233 1
## 2234 1
## 2235 1
## 2236 1
## 2237 1
## 2238 1
## 2239 1
## 2240 1
## 2241 1
## 2242 1
## 2243 1
## 2244 1
## 2245 1
## 2246 1
## 2247 1
## 2248 1
## 2249 1
## 2250 1
## 2251 1
## 2252 1
## 2253 1
## 2254 1
## 2255 1
## 2256 1
## 2257 1
## 2258 1
## 2259 1
## 2260 1
## 2261 1
## 2262 1
## 2263 1
## 2264 1
## 2265 1
## 2266 1
## 2267 1
## 2268 1
## 2269 1
## 2270 1
## 2271 1
## 2272 1
## 2273 1
## 2274 1
## 2275 1
## 2276 1
## 2277 1
## 2278 1
## 2279 1
## 2280 1
## 2281 1
## 2282 1
## 2283 1
## 2284 1
## 2285 1
## 2286 1
## 2287 1
## 2288 1
## 2289 1
## 2290 1
## 2291 1
## 2292 1
## 2293 1
## 2294 1
## 2295 1
## 2296 1
## 2297 1
## 2298 1
## 2299 1
## 2300 1
## 2301 1
## 2302 1
## 2303 1
## 2304 1
## 2305 1
## 2306 1
## 2307 1
## 2308 1
## 2309 1
## 2310 1
## 2311 1
## 2312 1
## 2313 1
## 2314 1
## 2315 1
## 2316 1
## 2317 1
## 2318 1
## 2319 1
## 2320 1
## 2321 1
## 2322 1
## 2323 1
## 2324 1
## 2325 1
## 2326 1
## 2327 1
## 2328 1
## 2329 1
## 2330 1
## 2331 1
## 2332 1
## 2333 1
## 2334 1
## 2335 1
## 2336 1
## 2337 1
## 2338 1
## 2339 1
## 2340 1
## 2341 1
## 2342 1
## 2343 1
## 2344 1
## 2345 1
## 2346 1
## 2347 1
## 2348 1
## 2349 1
## 2350 1
## 2351 1
## 2352 1
## 2353 1
## 2354 1
## 2355 1
## 2356 1
## 2357 1
## 2358 1
## 2359 1
## 2360 1
## 2361 1
## 2362 1
## 2363 1
## 2364 1
## 2365 1
## 2366 1
## 2367 1
## 2368 1
## 2369 1
## 2370 1
## 2371 1
## 2372 1
## 2373 1
## 2374 1
## 2375 1
## 2376 1
## 2377 1
## 2378 1
## 2379 1
## 2380 1
## 2381 1
## 2382 1
## 2383 1
## 2384 1
## 2385 1
## 2386 1
## 2387 1
## 2388 1
## 2389 1
## 2390 1
## 2391 1
## 2392 1
## 2393 1
## 2394 1
## 2395 1
## 2396 1
## 2397 1
## 2398 1
## 2399 1
## 2400 1
## 2401 1
## 2402 1
## 2403 1
## 2404 1
## 2405 1
## 2406 1
## 2407 1
## 2408 1
## 2409 1
## 2410 1
## 2411 1
## 2412 1
## 2413 1
## 2414 1
## 2415 1
## 2416 1
## 2417 1
## 2418 1
## 2419 1
## 2420 1
## 2421 1
## 2422 1
## 2423 1
## 2424 1
## 2425 1
## 2426 1
## 2427 1
## 2428 1
## 2429 1
## 2430 1
## 2431 1
## 2432 1
## 2433 1
## 2434 1
## 2435 1
## 2436 1
## 2437 1
## 2438 1
## 2439 1
## 2440 1
## 2441 1
## 2442 1
## 2443 1
## 2444 1
## 2445 1
## 2446 1
## 2447 1
## 2448 1
## 2449 1
## 2450 1
## 2451 1
## 2452 1
## 2453 1
## 2454 1
## 2455 1
## 2456 1
## 2457 1
## 2458 1
## 2459 1
## 2460 1
## 2461 1
## 2462 1
## 2463 1
## 2464 1
## 2465 1
## 2466 1
## 2467 1
## 2468 1
## 2469 1
## 2470 1
## 2471 1
## 2472 1
## 2473 1
## 2474 1
## 2475 1
## 2476 1
## 2477 1
## 2478 1
## 2479 1
## 2480 1
## 2481 1
## 2482 1
## 2483 1
## 2484 1
## 2485 1
## 2486 1
## 2487 1
## 2488 1
## 2489 1
## 2490 1
## 2491 1
## 2492 1
## 2493 1
## 2494 1
## 2495 1
## 2496 1
## 2497 1
## 2498 1
## 2499 1
## 2500 1
## 2501 1
## 2502 1
## 2503 1
## 2504 1
## 2505 1
## 2506 1
## 2507 1
## 2508 1
## 2509 1
## 2510 1
## 2511 1
## 2512 1
## 2513 1
## 2514 1
## 2515 1
## 2516 1
## 2517 1
## 2518 1
## 2519 1
## 2520 1
## 2521 1
## 2522 1
## 2523 1
## 2524 1
## 2525 1
## 2526 1
## 2527 1
## 2528 1
## 2529 1
## 2530 1
## 2531 1
## 2532 1
## 2533 1
## 2534 1
## 2535 1
## 2536 1
## 2537 1
## 2538 1
## 2539 1
## 2540 1
## 2541 1
## 2542 1
## 2543 1
## 2544 1
## 2545 1
## 2546 1
## 2547 1
## 2548 1
## 2549 1
## 2550 1
## 2551 1
## 2552 1
## 2553 1
## 2554 1
## 2555 1
## 2556 1
## 2557 1
## 2558 1
## 2559 1
## 2560 1
## 2561 1
## 2562 1
## 2563 1
## 2564 1
## 2565 1
## 2566 1
## 2567 1
## 2568 1
## 2569 1
## 2570 1
## 2571 1
## 2572 1
## 2573 1
## 2574 1
## 2575 1
## 2576 1
## 2577 1
## 2578 1
## 2579 1
## 2580 1
## 2581 1
## 2582 1
## 2583 1
## 2584 1
## 2585 1
## 2586 1
## 2587 1
## 2588 1
## 2589 1
## 2590 1
## 2591 1
## 2592 1
## 2593 1
## 2594 1
## 2595 1
## 2596 1
## 2597 1
## 2598 1
## 2599 1
## 2600 1
## 2601 1
## 2602 1
## 2603 1
## 2604 1
## 2605 1
## 2606 1
## 2607 1
## 2608 1
## 2609 1
## 2610 1
## 2611 1
## 2612 1
## 2613 1
## 2614 1
## 2615 1
## 2616 1
## 2617 1
## 2618 1
## 2619 1
## 2620 1
## 2621 1
## 2622 1
## 2623 1
## 2624 1
## 2625 1
## 2626 1
## 2627 1
## 2628 1
## 2629 1
## 2630 1
## 2631 1
## 2632 1
## 2633 1
## 2634 1
## 2635 1
## 2636 1
## 2637 1
## 2638 1
## 2639 1
## 2640 1
## 2641 1
## 2642 1
## 2643 1
## 2644 1
## 2645 1
## 2646 1
## 2647 1
## 2648 1
## 2649 1
## 2650 1
## 2651 1
## 2652 1
## 2653 1
## 2654 1
## 2655 1
## 2656 1
## 2657 1
## 2658 1
## 2659 1
## 2660 1
## 2661 1
## 2662 1
## 2663 1
## 2664 1
## 2665 1
## 2666 1
## 2667 1
## 2668 1
## 2669 1
## 2670 1
## 2671 1
## 2672 1
## 2673 1
## 2674 1
## 2675 1
## 2676 1
## 2677 1
## 2678 1
## 2679 1
## 2680 1
## 2681 1
## 2682 1
## 2683 1
## 2684 1
## 2685 1
## 2686 1
## 2687 1
## 2688 1
## 2689 1
## 2690 1
## 2691 1
## 2692 1
## 2693 1
## 2694 1
## 2695 1
## 2696 1
## 2697 1
## 2698 1
## 2699 1
## 2700 1
## 2701 1
## 2702 1
## 2703 1
## 2704 1
## 2705 1
## 2706 1
## 2707 1
## 2708 1
## 2709 1
## 2710 1
## 2711 1
## 2712 1
## 2713 1
## 2714 1
## 2715 1
## 2716 1
## 2717 1
## 2718 1
## 2719 1
## 2720 1
## 2721 1
## 2722 1
## 2723 1
## 2724 1
## 2725 1
## 2726 1
## 2727 1
## 2728 1
## 2729 1
## 2730 1
## 2731 1
## 2732 1
## 2733 1
## 2734 1
## 2735 1
## 2736 1
## 2737 1
## 2738 1
## 2739 1
## 2740 1
## 2741 1
## 2742 1
## 2743 1
## 2744 1
## 2745 1
## 2746 1
## 2747 1
## 2748 1
## 2749 1
## 2750 1
## 2751 1
## 2752 1
## 2753 1
## 2754 1
## 2755 1
## 2756 1
## 2757 1
## 2758 1
## 2759 1
## 2760 1
## 2761 1
## 2762 1
## 2763 1
## 2764 1
## 2765 1
## 2766 1
## 2767 1
## 2768 1
## 2769 1
## 2770 1
## 2771 1
## 2772 1
## 2773 1
## 2774 1
## 2775 1
## 2776 1
## 2777 1
## 2778 1
## 2779 1
## 2780 1
## 2781 1
## 2782 1
## 2783 1
## 2784 1
## 2785 1
## 2786 1
## 2787 1
## 2788 1
## 2789 1
## 2790 1
## 2791 1
## 2792 1
## 2793 1
## 2794 1
## 2795 1
## 2796 1
## 2797 1
## 2798 1
## 2799 1
## 2800 1
## 2801 1
## 2802 1
## 2803 1
## 2804 1
## 2805 1
## 2806 1
## 2807 1
## 2808 1
## 2809 1
## 2810 1
## 2811 1
## 2812 1
## 2813 1
## 2814 1
## 2815 1
## 2816 1
## 2817 1
## 2818 1
## 2819 1
## 2820 1
## 2821 1
## 2822 1
## 2823 1
## 2824 1
## 2825 1
## 2826 1
## 2827 1
## 2828 1
## 2829 1
## 2830 1
## 2831 1
## 2832 1
## 2833 1
## 2834 1
## 2835 1
## 2836 1
## 2837 1
## 2838 1
## 2839 1
## 2840 1
## 2841 1
## 2842 1
## 2843 1
## 2844 1
## 2845 1
## 2846 1
## 2847 1
## 2848 1
## 2849 1
## 2850 1
## 2851 1
## 2852 1
## 2853 1
## 2854 1
## 2855 1
## 2856 1
## 2857 1
## 2858 1
## 2859 1
## 2860 1
## 2861 1
## 2862 1
## 2863 1
## 2864 1
## 2865 1
## 2866 1
## 2867 1
## 2868 1
## 2869 1
## 2870 1
## 2871 1
## 2872 1
## 2873 1
## 2874 1
## 2875 1
## 2876 1
## 2877 1
## 2878 1
## 2879 1
## 2880 1
## 2881 1
## 2882 1
## 2883 1
## 2884 1
## 2885 1
## 2886 1
## 2887 1
## 2888 1
## 2889 1
## 2890 1
## 2891 1
## 2892 1
## 2893 1
## 2894 1
## 2895 1
## 2896 1
## 2897 1
## 2898 1
## 2899 1
## 2900 1
## 2901 1
## 2902 1
## 2903 1
## 2904 1
## 2905 1
## 2906 1
## 2907 1
## 2908 1
## 2909 1
## 2910 1
## 2911 1
## 2912 1
## 2913 1
## 2914 1
## 2915 1
## 2916 1
## 2917 1
## 2918 1
## 2919 1
## 2920 1
## 2921 1
## 2922 1
## 2923 1
## 2924 1
## 2925 1
## 2926 1
## 2927 1
## 2928 1
## 2929 1
## 2930 1
## 2931 1
## 2932 1
## 2933 1
## 2934 1
## 2935 1
## 2936 1
## 2937 1
## 2938 1
## 2939 1
## 2940 1
## 2941 1
## 2942 1
## 2943 1
## 2944 1
## 2945 1
## 2946 1
## 2947 1
## 2948 1
## 2949 1
## 2950 1
## 2951 1
## 2952 1
## 2953 1
## 2954 1
## 2955 1
## 2956 1
## 2957 1
## 2958 1
## 2959 1
## 2960 1
## 2961 1
## 2962 1
## 2963 1
## 2964 1
## 2965 1
## 2966 1
## 2967 1
## 2968 1
## 2969 1
## 2970 1
## 2971 1
## 2972 1
## 2973 1
## 2974 1
## 2975 1
## 2976 1
## 2977 1
## 2978 1
## 2979 1
## 2980 1
## 2981 1
## 2982 1
## 2983 1
## 2984 1
## 2985 1
## 2986 1
## 2987 1
## 2988 1
## 2989 1
## 2990 1
## 2991 1
## 2992 1
## 2993 1
## 2994 1
## 2995 1
## 2996 1
## 2997 1
## 2998 1
## 2999 1
## 3000 1
## 3001 1
## 3002 1
## 3003 1
## 3004 1
## 3005 1
## 3006 1
## 3007 1
## 3008 1
## 3009 1
## 3010 1
## 3011 1
## 3012 1
## 3013 1
## 3014 1
## 3015 1
## 3016 1
## 3017 1
## 3018 1
## 3019 1
## 3020 1
## 3021 1
## 3022 1
## 3023 1
## 3024 1
## 3025 1
## 3026 1
## 3027 1
## 3028 1
## 3029 1
## 3030 1
## 3031 1
## 3032 1
## 3033 1
## 3034 1
## 3035 1
## 3036 1
## 3037 1
## 3038 1
## 3039 1
## 3040 1
## 3041 1
## 3042 1
## 3043 1
## 3044 1
## 3045 1
## 3046 1
## 3047 1
## 3048 1
## 3049 1
## 3050 1
## 3051 1
## 3052 1
## 3053 1
## 3054 1
## 3055 1
## 3056 1
## 3057 1
## 3058 1
## 3059 1
## 3060 1
## 3061 1
## 3062 1
## 3063 1
## 3064 1
## 3065 1
## 3066 1
## 3067 1
## 3068 1
## 3069 1
## 3070 1
## 3071 1
## 3072 1
## 3073 1
## 3074 1
## 3075 1
## 3076 1
## 3077 1
## 3078 1
## 3079 1
## 3080 1
## 3081 1
## 3082 1
## 3083 1
## 3084 1
## 3085 1
## 3086 1
## 3087 1
## 3088 1
## 3089 1
## 3090 1
## 3091 1
## 3092 1
## 3093 1
## 3094 1
## 3095 1
## 3096 1
## 3097 1
## 3098 1
## 3099 1
## 3100 1
## 3101 1
## 3102 1
## 3103 1
## 3104 1
## 3105 1
## 3106 1
## 3107 1
## 3108 1
## 3109 1
## 3110 1
## 3111 1
## 3112 1
## 3113 1
## 3114 1
## 3115 1
## 3116 1
## 3117 1
## 3118 1
## 3119 1
## 3120 1
## 3121 1
## 3122 1
## 3123 1
## 3124 1
## 3125 1
## 3126 1
## 3127 1
## 3128 1
## 3129 1
## 3130 1
## 3131 1
## 3132 1
## 3133 1
## 3134 1
## 3135 1
## 3136 1
## 3137 1
## 3138 1
## 3139 1
## 3140 1
## 3141 1
## 3142 1
## 3143 1
## 3144 1
## 3145 1
## 3146 1
## 3147 1
## 3148 1
## 3149 1
## 3150 1
## 3151 1
## 3152 1
## 3153 1
## 3154 1
## 3155 1
## 3156 1
## 3157 1
## 3158 1
## 3159 1
## 3160 1
## 3161 1
## 3162 1
## 3163 1
## 3164 1
## 3165 1
## 3166 1
## 3167 1
## 3168 1
## 3169 1
## 3170 1
## 3171 1
## 3172 1
## 3173 1
## 3174 1
## 3175 1
## 3176 1
## 3177 1
## 3178 1
## 3179 1
## 3180 1
## 3181 1
## 3182 1
## 3183 1
## 3184 1
## 3185 1
## 3186 1
## 3187 1
## 3188 1
## 3189 1
## 3190 1
## 3191 1
## 3192 1
## 3193 1
## 3194 1
## 3195 1
## 3196 1
## 3197 1
## 3198 1
## 3199 1
## 3200 1
## 3201 1
## 3202 1
## 3203 1
## 3204 1
## 3205 1
## 3206 1
## 3207 1
## 3208 1
## 3209 1
## 3210 1
## 3211 1
## 3212 1
## 3213 1
## 3214 1
## 3215 1
## 3216 1
## 3217 1
## 3218 1
## 3219 1
## 3220 1
## 3221 1
## 3222 1
## 3223 1
## 3224 1
## 3225 1
## 3226 1
## 3227 1
## 3228 1
## 3229 1
## 3230 1
## 3231 1
## 3232 1
## 3233 1
## 3234 1
## 3235 1
## 3236 1
## 3237 1
## 3238 1
## 3239 1
## 3240 1
## 3241 1
## 3242 1
## 3243 1
## 3244 1
## 3245 1
## 3246 1
## 3247 1
## 3248 1
## 3249 1
## 3250 1
## 3251 1
## 3252 1
## 3253 1
## 3254 1
## 3255 1
## 3256 1
## 3257 1
## 3258 1
## 3259 1
## 3260 1
## 3261 1
## 3262 1
## 3263 1
## 3264 1
## 3265 1
## 3266 1
## 3267 1
## 3268 1
## 3269 1
## 3270 1
## 3271 1
## 3272 1
## 3273 1
## 3274 1
## 3275 1
## 3276 1
## 3277 1
## 3278 1
## 3279 1
## 3280 1
## 3281 1
## 3282 1
## 3283 1
## 3284 1
## 3285 1
## 3286 1
## 3287 1
## 3288 1
## 3289 1
## 3290 1
## 3291 1
## 3292 1
## 3293 1
## 3294 1
## 3295 1
## 3296 1
## 3297 1
## 3298 1
## 3299 1
## 3300 1
## 3301 1
## 3302 1
## 3303 1
## 3304 1
## 3305 1
## 3306 1
## 3307 1
## 3308 1
## 3309 1
## 3310 1
## 3311 1
## 3312 1
## 3313 1
## 3314 1
## 3315 1
## 3316 1
## 3317 1
## 3318 1
## 3319 1
## 3320 1
## 3321 1
## 3322 1
## 3323 1
## 3324 1
## 3325 1
## 3326 1
## 3327 1
## 3328 1
## 3329 1
## 3330 1
## 3331 1
## 3332 1
## 3333 1
## 3334 1
## 3335 1
## 3336 1
## 3337 1
## 3338 1
## 3339 1
## 3340 1
## 3341 1
## 3342 1
## 3343 1
## 3344 1
## 3345 1
## 3346 1
## 3347 1
## 3348 1
## 3349 1
## 3350 1
## 3351 1
## 3352 1
## 3353 1
## 3354 1
## 3355 1
## 3356 1
## 3357 1
## 3358 1
## 3359 1
## 3360 1
## 3361 1
## 3362 1
## 3363 1
## 3364 1
## 3365 1
## 3366 1
## 3367 1
## 3368 1
## 3369 1
## 3370 1
## 3371 1
## 3372 1
## 3373 1
## 3374 1
## 3375 1
## 3376 1
## 3377 1
## 3378 1
## 3379 1
## 3380 1
## 3381 1
## 3382 1
## 3383 1
## 3384 1
## 3385 1
## 3386 1
## 3387 1
## 3388 1
## 3389 1
## 3390 1
## 3391 1
## 3392 1
## 3393 1
## 3394 1
## 3395 1
## 3396 1
## 3397 1
## 3398 1
## 3399 1
## 3400 1
## 3401 1
## 3402 1
## 3403 1
## 3404 1
## 3405 1
## 3406 1
## 3407 1
## 3408 1
## 3409 1
## 3410 1
## 3411 1
## 3412 1
## 3413 1
## 3414 1
## 3415 1
## 3416 1
## 3417 1
## 3418 1
## 3419 1
## 3420 1
## 3421 1
## 3422 1
## 3423 1
## 3424 1
## 3425 1
## 3426 1
## 3427 1
## 3428 1
## 3429 1
## 3430 1
## 3431 1
## 3432 1
## 3433 1
## 3434 1
## 3435 1
## 3436 1
## 3437 1
## 3438 1
## 3439 1
## 3440 1
## 3441 1
## 3442 1
## 3443 1
## 3444 1
## 3445 1
## 3446 1
## 3447 1
## 3448 1
## 3449 1
## 3450 1
## 3451 1
## 3452 1
## 3453 1
## 3454 1
## 3455 1
## 3456 1
## 3457 1
## 3458 1
## 3459 1
## 3460 1
## 3461 1
## 3462 1
## 3463 1
## 3464 1
## 3465 1
## 3466 1
## 3467 1
## 3468 1
## 3469 1
## 3470 1
## 3471 1
## 3472 1
## 3473 1
## 3474 1
## 3475 1
## 3476 1
## 3477 1
## 3478 1
## 3479 1
## 3480 1
## 3481 1
## 3482 1
## 3483 1
## 3484 1
## 3485 1
## 3486 1
## 3487 1
## 3488 1
## 3489 1
## 3490 1
## 3491 1
## 3492 1
## 3493 1
## 3494 1
## 3495 1
## 3496 1
## 3497 1
## 3498 1
## 3499 1
## 3500 1
## 3501 1
## 3502 1
## 3503 1
## 3504 1
## 3505 1
## 3506 1
## 3507 1
## 3508 1
## 3509 1
## 3510 1
## 3511 1
## 3512 1
## 3513 1
## 3514 1
## 3515 1
## 3516 1
## 3517 1
## 3518 1
## 3519 1
## no duplicates in the final_data right now, but only have 3519 records so I'm missing 438 records compared to final index and 504 from the inital 4023 records downloaded from Nexis uni 
final_data$title <- unlist(final_data$title)
dupe_data <- rio::import("/Users/tiasiasaunders/Desktop/code/comp_text/DEI_updated_files/final_index.xlsx") |> 
  clean_names() |> 
   #create an matching file name
  mutate(index = tolower(gsub("[[:punct:][:space:]|]", "", title))) |> 
  mutate(index = tolower(index)) |> 
  mutate(index = str_sub(index, 1, 25))
report <- dupe_data |> 
   dplyr:: count(title) |> 
  arrange(desc(n)) |> 
  filter(n > 1) |> 
  select(n, everything())
final_index <- final_data |> 
  inner_join(files, c("index")) |> 
#you need the actual hard-coded path on this line below to the text
  mutate(filepath = paste0("./file_raw_text/", filename))
head(final_index)
##                                                            title published_date
## 1 Trump is attacking DEI. Big businesses believe DEI is valuable     2025-01-31
## 2                         Apple investors defy Trump to back DEI     2025-02-25
## 3   Judge Blocks Parts Of Trump s Executive Orders Targeting DEI     2025-02-22
## 4                     The Memo: Trump goes full bore against DEI     2025-01-24
## 5                  DEI leaders scramble to counter Trump actions     2025-02-04
## 6        Trump Takes Necessary Action To Eradicate DEI | Opinion     2025-02-04
##   publication_location                     publication_4 publication_type_5
## 1         U.S. Federal                          CNN Wire               News
## 2        International                   telegraph.co.uk               News
## 3         U.S. Federal Forbes.com (Forbes, Incorporated)               News
## 4    Dist. of Columbia                       TheHill.com               News
## 5    Dist. of Columbia                       TheHill.com               News
## 6         U.S. Federal                      Newsweek.com               News
##   length            section word_count
## 1    809               <NA>        809
## 2    482 BUSINESS;Version:1        482
## 3    679               <NA>        679
## 4   1080               <NA>       1080
## 5   1202               <NA>       1202
## 6    775               <NA>        775
##                                              countries
## 1                                                 <NA>
## 2 United Kingdom of Great Britain and Northern Ireland
## 3                                                 <NA>
## 4                                                 <NA>
## 5                                                 <NA>
## 6                                                 <NA>
##                                byline agg_copyright                        cite
## 1         By Nathaniel Meyersohn, CNN            NA BOSTON CONSULTING GROUP INC
## 2 By James Titcomb, Technology Editor            NA                   APPLE INC
## 3           Conor Murray Forbes Staff            NA            GETTY IMAGES INC
## 4                                <NA>            NA        WORLD ECONOMIC FORUM
## 5                 Cheyanne M. Daniels            NA                        <NA>
## 6                          Casey Ryan            NA                        <NA>
##                       company
## 1 BOSTON CONSULTING GROUP INC
## 2                   APPLE INC
## 3            GETTY IMAGES INC
## 4        WORLD ECONOMIC FORUM
## 5                        <NA>
## 6                        <NA>
##                                                         headline
## 1 Trump is attacking DEI. Big businesses believe DEI is valuable
## 2                         Apple investors defy Trump to back DEI
## 3   Judge Blocks Parts Of Trump s Executive Orders Targeting DEI
## 4                     The Memo: Trump goes full bore against DEI
## 5                  DEI leaders scramble to counter Trump actions
## 6        Trump Takes Necessary Action To Eradicate DEI | Opinion
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       hlead
## 1                                                                             Trump is attacking DEI. Big businesses believe DEI is valuable New York (CNN) - President Donald Trump on Thursday blamed the Federal Aviation Administration's "diversity push" in part for the plane collision that killed 67 people in Washington, DC . But DEI backers, including most top US companies, believe a push for diversity has been good for their businesses. Trump did not cite any evidence for how efforts to hire more minorities, people with disabilities and other groups less represented in American workforces led to the crash, saying "it just could have been" and that he had "common sense." But Trump criticized the FAA's effort to recruit people with disabilities during Joe Biden's administration, even though the FAA's Aviation Safety Workforce Plan for the 2020-2029 period, issued under Trump's first administration, promoted and supported "the hiring of people with disabilities and targeted disabilities."
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Apple investors defy Trump to back DEI Tech giant bucks Silicon Valley trend by voting against proposal to abolish diversity programmes Apple shareholders have thrown their support behind the company’s diversity policies in defiance of Donald Trump and despite a wider retreat across Silicon Valley. A majority of shareholders at the technology giant’s annual meeting on Tuesday voted against a proposal calling for Apple to abolish its inclusion and diversity programme.
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Judge Blocks Parts Of Trump s Executive Orders Targeting DEI A federal judge said President Donald Trump s executive orders targeting DEI are too vague and infringe on rights to free speech. A federal judge blocked parts of President Donald Trump s executive orders targeting diversity, equity and inclusion on Friday, arguing his orders directing government grant recipients to halt DEI programs are too vague to be enforced or infringe on free speech. <figure>
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Memo: Trump goes full bore against DEI President Trump is taking full aim at diversity, equity and inclusion (DEI) programs, apparently making the calculation that the peak for such initiatives has passed and that they are viewed with growing skepticism by the public. There is little doubt the Trump base is opposed to DEI, given his voters are customarily set against anything that has a whiff of cultural liberalism or “wokeness.” But there is a bigger question about whether the extent of Trump’s push against such measures will draw any kind of pushback.
## 5 DEI leaders scramble to counter Trump actions Diversity, equity and inclusion (DEI) proponents are scrambling to find ways to counter President Trump as he moves to dismantle some of the programs and policies intended to bolster their movement. Trump has signed multiple executive orders aimed at terminating DEI efforts in the federal government, including the military, and most recently took aim at DEI following the fatal plane crash at Reagan National Airport. Now Democrats and others who see DEI as essential to maintaining diversity in the ranks of government and other sectors are struggling to find ways to combat the administration’s aggressive tactics. “It is restoring barriers to equality, to opportunity and to access. When you take those things out, you are undermining the ability of the government … and you are ensuring that there is discrimination, that there is unfairness, that there is inequality,” Andrea Abrams, executive director of American Pride Rises (APR), told The Hill.
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump Takes Necessary Action To Eradicate DEI | Opinion DEI has no place in our government and is an impediment to progress. This administration understands the importance of meritocracy. Since assuming office on January 20, President Donald Trump has taken swift but necessary action to eliminate diversity, equity, and inclusion (DEI) projects and initiatives from all federal agencies and institutions. For too long, our government worked against the interests of Americans rather than for the American people. Take our education system, for example.
##    publication_16        publication_type_17 pub_copyright show term ticker
## 1        CNN Wire                   Newswire            NA <NA>   NA     NA
## 2 telegraph.co.uk Newspaper; Web Publication            NA <NA>   NA     NA
## 3      Forbes.com            Web Publication            NA <NA>   NA     NA
## 4     TheHill.com                  Newspaper            NA <NA>   NA     NA
## 5     TheHill.com                  Newspaper            NA <NA>   NA     NA
## 6    Newsweek.com            Web Publication            NA <NA>   NA     NA
##                       index
## 1 trumpisattackingdeibigbus
## 2 appleinvestorsdefytrumpto
## 3 judgeblockspartsoftrumpse
## 4 thememotrumpgoesfullborea
## 5 deileadersscrambletocount
## 6 trumptakesnecessaryaction
##                                                             filename
## 1 Trump is attacking DEI. Big businesses believe DEI is valuable.txt
## 2                         Apple investors defy Trump to back DEI.txt
## 3   Judge Blocks Parts Of Trump s Executive Orders Targeting DEI.txt
## 4                     The Memo_ Trump goes full bore against DEI.txt
## 5                  DEI leaders scramble to counter Trump actions.txt
## 6        Trump Takes Necessary Action To Eradicate DEI _ Opinion.txt
##                                                                             filepath
## 1 ./file_raw_text/Trump is attacking DEI. Big businesses believe DEI is valuable.txt
## 2                         ./file_raw_text/Apple investors defy Trump to back DEI.txt
## 3   ./file_raw_text/Judge Blocks Parts Of Trump s Executive Orders Targeting DEI.txt
## 4                     ./file_raw_text/The Memo_ Trump goes full bore against DEI.txt
## 5                  ./file_raw_text/DEI leaders scramble to counter Trump actions.txt
## 6        ./file_raw_text/Trump Takes Necessary Action To Eradicate DEI _ Opinion.txt
# Assuming both have a column called "title"
missing_in_index <- final_data %>%
  anti_join(final_index, by = "title")

# View the articles in final_data that are not in final_index
missing_in_index
##                                                                                                                                                                                           title
## 1                                                                                            Janelle Monáe slams Nelly for performing at Donald Trump's inauguration during Grammys after-party
## 2                                                                                                                                           Daily Briefing: Beyoncé finally takes home the gold
## 3                                                                                                          Gallego Calls on Meta to Protect Free Speech and Stop Censoring Abortion Information
## 4                                                                                                             DOGE gets mixed reviews from conservatives who have long wanted major budget cuts
## 5                                                                                                              What's next on Musk's hit list? How the tech billionaire is rebooting Washington
## 6  ANDREW NEIL: A new age of geopolitics has begun. As Trump threatens to turn his back on Europe, will Starmer and EU leaders become masters of their own destinies - or shameful supplicants?
## 7                                                                                              Trump order to turn Guantánamo Bay into migrant detention center prompts outcry – as it happened
## 8                                                                                                                    Saturday Night Live: Timothée Chalamet hosts and sings in a decent episode
## 9                                                                                          Trump engaña al culpar a Biden y a las políticas de la DEI por el choque aéreo Verificación de datos
## 10                Beyoncé, Shakira, Alicia Keys and Kehlani are almost adorably upstaged by their own children as biggest names in music bring their kids to watch them win big at 2025 Grammys
## 11  Beyoncé fulfils her destiny with top Grammy The singer won Album of the Year for the first time in a ceremony that was a show of strength for Los Angeles after the fires. By Anna Nicolaou
## 12                                                                                                                                        Beyoncé finally wins Album of the Year at the Grammys
## 13                                                                                                              Grammy Awards: Beyoncé wins album of the year; Taylor Swift leaves empty-handed
## 14                                                                                                                                        Trump despide al militar de más alto rango de EE. UU.
## 15                                                                                                                                         Así fue la primera semana de Elon Musk en Washington
##    published_date publication_location                     publication_4
## 1      2025-02-03        International  The Independent (United Kingdom)
## 2      2025-02-03         U.S. Federal                  USA Today Online
## 3      2025-02-20         U.S. Federal             Targeted News Service
## 4      2025-02-14             New York              The Associated Press
## 5      2025-02-12         U.S. Federal                         USA Today
## 6      2025-02-24        International                        MailOnline
## 7      2025-01-29        International            The Guardian  (London)
## 8      2025-01-26        International            The Guardian  (London)
## 9      2025-01-31             New York                The New York Times
## 10     2025-02-03        International                        MailOnline
## 11     2025-02-04        International Financial Times (London, England)
## 12     2025-02-03        International            Financial Times Online
## 13     2025-02-02         U.S. Federal                  USA Today Online
## 14     2025-02-22             New York                The New York Times
## 15     2025-01-30             New York                The New York Times
##    publication_type_5 length                         section word_count
## 1                News    522           ENTERTAINMENT: LATEST        522
## 2                News   1097                         US NEWS       1097
## 3                News    424                            <NA>        424
## 4                News   1251    DOMESTIC NEWS;POLITICAL NEWS       1251
## 5                News   1584                     NEWS;Pg. A1       1584
## 6                News   1278                DEBATE;Version:1       1278
## 7                News  12135              US NEWS;Version:32      12135
## 8                News   1467    TELEVISION & RADIO;Version:1       1467
## 9                News   1612          ESPANOL;estados-unidos       1612
## 10               News   1508               SHOWBIZ;Version:3       1508
## 11               News   1144                 BUSINESS;Pg. 12       1144
## 12               News   1134                            <NA>       1134
## 13               News   2760 ENTERTAINMENT: LATEST & US NEWS       2760
## 14               News   2066          ESPANOL;estados-unidos       2066
## 15               News   2039          ESPANOL;estados-unidos       2039
##                                               countries
## 1                                       England & Wales
## 2                                                  <NA>
## 3                                                  <NA>
## 4                                                  <NA>
## 5                                                  <NA>
## 6  United Kingdom of Great Britain and Northern Ireland
## 7  United Kingdom of Great Britain and Northern Ireland
## 8  United Kingdom of Great Britain and Northern Ireland
## 9                                                  <NA>
## 10 United Kingdom of Great Britain and Northern Ireland
## 11 United Kingdom of Great Britain and Northern Ireland
## 12 United Kingdom of Great Britain and Northern Ireland
## 13                                                 <NA>
## 14                                                 <NA>
## 15                                                 <NA>
##                                                                                                                                                                                                                                           byline
## 1                                                                                                                                                                                                                                   Amber Raiken
## 2                                                                                                                                                                                                                      Nicole Fallert, USA TODAY
## 3                                                                                                                                                                                                                          Targeted News Service
## 4                                                                                                                                                                                                               THOMAS BEAUMONT Associated Press
## 5                                                                                                                                                                                                  By Joey Garrison and Erin Mansfield USA TODAY
## 6                                                                                                                                                                                                                        Andrew Neil, Daily Mail
## 7                                                                                                                                                                                 Robert Mackey, Lauren Gambino, Joan E Greve and Christy Cooney
## 8                                                                                                                                                                                                                                   Zach Vasquez
## 9                                             Linda Qiu Linda Qiu is a reporter who specializes in fact-checking statements made by politicians and public figures. She has been reporting and fact-checking public figures for nearly a decade.
## 10                                                                                                                                                                                                                   Milly Veitch For Mailonline
## 11                                                                                                                                                                                                                                 Anna Nicolaou
## 12                                                                                                                                                                                                                  Anna Nicolaou in Los Angeles
## 13                                                                                                                                                                                                   Charles Trepany and Kelly Lawler, USA TODAY
## 14 Eric Schmitt, Helene Cooper and Jonathan Swan Eric Schmitt is a national security correspondent for The Times, focusing on U.S. military affairs and counterterrorism issues overseas, topics he has reported on for more than three decades.
## 15                                                                                                              Theodore Schleifer and Madeleine Ngo Theodore Schleifer is a Times reporter covering billionaires and their impact on the world.
##    agg_copyright                           cite                        company
## 1             NA                           <NA>                           <NA>
## 2             NA      COUNTRY MUSIC ASSOCIATION      COUNTRY MUSIC ASSOCIATION
## 3             NA             META PLATFORMS INC             META PLATFORMS INC
## 4             NA               ASSOCIATED PRESS               ASSOCIATED PRESS
## 5             NA              NBC UNIVERSAL INC              NBC UNIVERSAL INC
## 6             NA                     ROOTS CORP                     ROOTS CORP
## 7             NA OFFICE OF PERSONNEL MANAGEMENT OFFICE OF PERSONNEL MANAGEMENT
## 8             NA                           <NA>                           <NA>
## 9             NA                           <NA>                           <NA>
## 10            NA                       BEST INC                       BEST INC
## 11            NA                       BEST INC                       BEST INC
## 12            NA                       BEST INC                       BEST INC
## 13            NA                           <NA>                           <NA>
## 14            NA          JOINT CHIEFS OF STAFF          JOINT CHIEFS OF STAFF
## 15            NA OFFICE OF PERSONNEL MANAGEMENT OFFICE OF PERSONNEL MANAGEMENT
##                                                                                                                                                                                        headline
## 1                                                                                            Janelle Monáe slams Nelly for performing at Donald Trump's inauguration during Grammys after-party
## 2                                                                                                                                           Daily Briefing: Beyoncé finally takes home the gold
## 3                                                                                                          Gallego Calls on Meta to Protect Free Speech and Stop Censoring Abortion Information
## 4                                                                                                             DOGE gets mixed reviews from conservatives who have long wanted major budget cuts
## 5                                                                                                              What's next on Musk's hit list? How the tech billionaire is rebooting Washington
## 6  ANDREW NEIL: A new age of geopolitics has begun. As Trump threatens to turn his back on Europe, will Starmer and EU leaders become masters of their own destinies - or shameful supplicants?
## 7                                                                                              Trump order to turn Guantánamo Bay into migrant detention center prompts outcry – as it happened
## 8                                                                                                                    Saturday Night Live: Timothée Chalamet hosts and sings in a decent episode
## 9                                                                                          Trump engaña al culpar a Biden y a las políticas de la DEI por el choque aéreo Verificación de datos
## 10                Beyoncé, Shakira, Alicia Keys and Kehlani are almost adorably upstaged by their own children as biggest names in music bring their kids to watch them win big at 2025 Grammys
## 11  Beyoncé fulfils her destiny with top Grammy The singer won Album of the Year for the first time in a ceremony that was a show of strength for Los Angeles after the fires. By Anna Nicolaou
## 12                                                                                                                                        Beyoncé finally wins Album of the Year at the Grammys
## 13                                                                                                              Grammy Awards: Beyoncé wins album of the year; Taylor Swift leaves empty-handed
## 14                                                                                                                                        Trump despide al militar de más alto rango de EE. UU.
## 15                                                                                                                                         Así fue la primera semana de Elon Musk en Washington
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      hlead
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Janelle Monáe slams Nelly for performing at Donald Trump's inauguration during Grammys after-party Janelle Monáe blasted Nelly for performing at Donald Trump's presidential inauguration last month. The 39-year-old rapper criticized Nelly at a Grammys afterparty in Los Angeles on Sunday, according to a video of the event obtained by TMZ . At the party, she and Anderson .Paak were performing Nelly's song, "Hot in Herre." However, Monáe decided to change up the lyrics a bit to insult Nelly for supporting Trump.
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Daily Briefing: Beyoncé finally takes home the gold Beyoncé took the Grammy Awards' highly coveted prize, album of the year, for her country record "Cowboy Carter." President Donald Trump's tariffs could hike prices for American consumers and increase inflation. Air crews head to work following horrendous deadly crashes last week. ‍♀️ I'm Nicole Fallert , Daily Briefing author. January is finally over !!!!
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Gallego Calls on Meta to Protect Free Speech and Stop Censoring Abortion Information Sen. Ruben Gallego, D- Arizona , issued the following news release: * * * Gallego Calls on Meta to Protect Free Speech and Stop Censoring Abortion Information WASHINGTON - Senator Ruben Gallego (D- AZ ) urged Meta to protect free speech and ensure its platforms, including Facebook and Instagram, do not hide or restrict important information about abortion access.
## 4                                                                                                          DOGE gets mixed reviews from conservatives who have long wanted major budget cuts DES MOINES, Iowa — Conservatives who have spent decades promoting deep cuts to government are giving mixed reviews to the Department of Government Efficiency , the Elon Musk-led project to slash the federal workforce and reduce or end disfavored programs. The Associated Press interviewed four veteran budget hawks, including some who have worked on Republican presidential campaigns predating Musk or President Donald Trump becoming dominant in GOP politics. Some say Musk’s early targets demonstrate success and show more potential than previous efforts to downsize government due to his unique access and influence. Others say it’s too early to tell and argue that DOGE has stoked conservative outrage about specific agencies without going after much bigger pieces of the federal budget, like defense spending or programs with bipartisan support like Medicare and Social Security. A list of savings provided by the White House last week noted at least $2.2 billion in initial savings identified by the group. The DOGE website has since noted at least $5.6 billion. Any total so far is a tiny fraction of Musk's initial goal of $2 trillion, the size of the federal budget deficit, or even the $1 trillion he has since mentioned more regularly.
## 5                                                                                                                                                                                                                                                                                                                                                       What's next on Musk's hit list? How the tech billionaire is rebooting Washington WASHINGTON   Elon Musk has mounted an onslaught on the federal government three weeks into President Donald Trump's second term, taking over federal infrastructure and feverishly gutting departments in a battle to produce the small government Republicans have long demanded. It's an arrangement like no other in U.S. history: Trump has empowered Musk, the richest man in the world, to take down the federal bureaucracy from within the White House alongside a group of 20-something lieutenants who make up his Department of Government Efficiency, or DOGE. The billionaire tech entrepreneur has installed loyalists into agencies and reveled in the chaos he has created, using the social media company he owns, X, to update the nation on his latest targets as the DOGE team moves systematically from one department to another. His efforts have created showdowns in court that could ultimately decide whether the president has the executive authority to dismantle the federal government in the way Musk envisions.
## 6  ANDREW NEIL: A new age of geopolitics has begun. As Trump threatens to turn his back on Europe, will Starmer and EU leaders become masters of their own destinies - or shameful supplicants? We are at a historic watershed in the transatlantic alliance which has protected Europe so well these past 80 years since our continent emerged from the ashes of World War II. President Donald Trump, for no good reason other than his reckless ego and unfathomable admiration for Russian dictator Vladimir Putin, is shattering the post-war consensus which bound America and Europe together in the defence of freedom and the pursuit of peace. What will replace it - if anything - is hard to divine. Pax Americana, for so long the reliable guarantor of our security, is crumbling before our very eyes. Suddenly, from London to Paris to Berlin to Warsaw, the world looks a lonelier, scarier place. Those who never much liked America 's ubiquitous presence in Europe in the first place are about to find out how dangerous and expensive life is without Uncle Sam. If you doubt that such a radical shift in our geopolitics is underway then look at the words of incoming German Chancellor Friedrich Merz. He is an Atlanticist, a pro- American centre-Right moderate. But he has reluctantly concluded that Trump's America is 'largely indifferent' to Europe's fate and that his priority now must be to end Germany 's reliance on the US for its security.
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump order to turn Guantánamo Bay into migrant detention center prompts outcry – as it happened This blog has now closed. Read our latest story here block-time published-time 3.08am GMT Closing summary Another very full day of news from the Trump restoration draws to a close, but your Guardian livebloggers will be back on Thursday to chronicle events as they unfold. Here are some of the main developments from the past few hours:
## 8                                                                                                                                Saturday Night Live: Timothée Chalamet hosts and sings in a decent episode The actor plays tribute to Bob Dylan in an episode that also pokes fun at the awfulness of AI and Trump’s first week as returning president The halfway mark of Saturday Night Live’s 50th season comes five days after the inauguration of Donald Trump. To mark this occasion, the show kicks its latest episode off by traveling back in time 250 years to the signing of the Declaration of Independence. Founding Father Alexander Hamilton (Lin-Manuel Miranda) starts in with a celebratory song and dance number, only to be interrupted by our current president Donald Trump (James Austin Johnson) – or king, as he likes to refer to himself. Trump brags about killing off DEI (“workplaces must go back to looking like the TV show The Office – mostly white people, but one funny black guy who’s having a really bad time”), his new favorite son Baron (“he’s smacking his head on every doorframe, it’s bad”), and his nerdy team of “broligarchs”: “Zuck, Bezos, Tim Apple, and, of course, Elon … we love Elon, but to quote some of his own children, I do not want him in my life.” Regarding the latter’s very clear Nazi salute during the inauguration, Trump doesn’t even attempt to deny it, casually remarking, “I think he did it a little bit.”
## 9                                                                                                                                                                                                                                                                                                       Trump engaña al culpar a Biden y a las políticas de la DEI por el choque aéreo Verificación de datos No hay pruebas de que los esfuerzos en materia de diversidad influyeran en el accidente, y sus declaraciones ignoraron las políticas de contratación de su propia administración. No hay pruebas de que los esfuerzos en materia de diversidad influyeran en el accidente, y sus declaraciones ignoraron las políticas de contratación de su propia administración. El jueves, el presidente de Estados Unidos, Donald Trump, se apresuró a criticar los objetivos de diversidad de sus predecesores demócratas y de la Administración Federal de Aviación al actualizar al público sobre la colisión mortal sobre el río Potomac. Incluso tras reconocer que no disponía de pruebas, sino que se basaba en el “sentido común”, sugirió que los esfuerzos por contratar a más personas con discapacidad y diversificar las filas de la Administración Federal de Aviación (FAA por su sigla en inglés) eran los culpables del accidente ocurrido a última hora del miércoles, en el que murieron 67 personas. Aquí tienes una verificación de los datos de sus declaraciones.
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Beyoncé, Shakira, Alicia Keys and Kehlani are almost adorably upstaged by their own children as biggest names in music bring their kids to watch them win big at 2025 Grammys • READ MORE: Sabrina Carpenter, Taylor Swift, and Cardi B lead best dressed • Have YOU got a a story? Email tips@dailymail.com Beyoncé, Shakira and Alicia Keys turned Sunday into 'Bring your kid to work day' as they led the stars bringing their children as their adorable plus-ones to the 2025 Grammy Awards at the Crypto.com Arena in Los Angeles. Despite their parents being some of the biggest names in music, the celebrity offspring managed to steal the show at the awards ceremony with their sweet outfits and heartwarming shows of support to their famous mums and dads. Beyoncé made sure she was joined by her husband Jay-Z and their eldest daughter Blue Ivy Carter, 13, for her big night, which saw her scoop three gongs.
## 11                                                                                                      Beyoncé fulfils her destiny with top Grammy The singer won Album of the Year for the first time in a ceremony that was a show of strength for Los Angeles after the fires. By Anna Nicolaou B eyoncé and Kendrick Lamar won music's most coveted prizes at Sunday's Grammy awards, in a star-studded ceremony that doubled as a show of strength for Los Angeles after wildfires ravaged the city. Beyoncé's Cowboy Carter won three awards including Album of the Year - her first win in the category after four previous nominations - and Best Country Album, making her the first Black woman to win the accolade. Lamar's "Not Like Us", a diss track he lodged during a frenetic rap feud with Drake last summer, nabbed both Song and Record of the Year, a rarity for a rap song in two of the most competitive categories of the night. The spectacle-filled evening - in which Taylor Swift danced the night away with a champagne glass in hand and Chappell Roan rode a giant pink pony on stage - was hard to imagine just a few weeks ago. Raging wildfires ensnared LA in early January, displacing tens of thousands of residents and destroying thousands of structures. The disaster decimated large portions of Pacific Palisades, an idyllic neighbourhood by the sea that was home to many music executives, including Universal Music chief Lucian Grainge.
## 12                                                                                                                                                                                                                                             Beyoncé finally wins Album of the Year at the Grammys Beyoncé and Kendrick Lamar won music’s most coveted prizes at Sunday’s Grammy awards, in a star-studded ceremony that doubled as a show of strength for Los Angeles after wildfires ravaged the city. Beyoncé’s Cowboy Carter won three awards including Album of the Year — her first win in the category after four previous nominations — and Best Country Album, making her the first Black woman to win the accolade. Lamar’s “Not Like Us”, a diss track he lodged during a frenetic rap feud with Drake last summer, nabbed both Song and Record of the Year, a rarity for a rap song in two of the most competitive categories of the night. The spectacle-filled evening — in which Taylor Swift danced the night away with a champagne glass in hand and Chappell Roan rode a giant pink pony on stage — was hard to imagine just a few weeks ago. Raging wildfires ensnared LA in early January, displacing tens of thousands of residents and destroying thousands of structures. The disaster decimated large portions of Pacific Palisades, an idyllic neighbourhood by the sea that was home to many music executives, including Universal Music chief Lucian Grainge.
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grammy Awards: Beyoncé wins album of the year; Taylor Swift leaves empty-handed The Grammys have come and gone – and music lovers have a lot of mixed feelings about music's biggest night. Beyoncé fans are probably feeling awesome right now. The singer took home three trophies, including one, finally, for album of the year. It was a rough night for Swifties , however, as Taylor Swift lost every category she competed in. So did Billie Eilish . But that’s not all. Kendrick Lamar swept, Sabrina Carpenter picked up two wins and Chappell Roan came out on top in arguably the most competitive best new artist race in recent years. Plus there was bold fashion, high-energy performances and plenty of touching tributes to Los Angeles , which hosted the ceremony after being ravaged by wildfires in one of our country's worst natural disasters. There was a lot packed into one awards show, but we’ve got you covered. Here are all the highlights from the 67th annual Grammys.
## 14                                                   Trump despide al militar de más alto rango de EE. UU. La decisión de despedir al general Charles Q. Brown Jr., jefe del Estado Mayor Conjunto, es parte de una purga en las fuerzas armadas que le inyecta política a la selección de los principales líderes militares de la nación. La decisión de despedir al general Charles Q. Brown Jr., jefe del Estado Mayor Conjunto, es parte de una purga en las fuerzas armadas que le inyecta política a la selección de los principales líderes militares de la nación. El presidente Trump despidió al militar de más alto rango del país como parte de una extraordinaria purga en el Pentágono el viernes por la noche que inyectó política en la selección de los principales líderes militares de la nación. El general Charles Q. Brown Jr. , un piloto de combate de cuatro estrellas, conocido como CQ, quien se convirtió en tan solo el segundo afroestadounidense en ocupar el puesto de jefe , será sustituido por un general retirado de tres estrellas de la Fuerza Aérea poco conocido, Dan Caine , que se ganó la estima del presidente cuando se conocieron en Irak hace seis años. En total, fueron despedidos seis funcionarios del Pentágono, entre ellos la almirante Lisa Franchetti, la primera mujer que dirigió la Marina; el general James Slife, subjefe de la Fuerza Aérea, y los principales abogados del Ejército, la Marina de Guerra y la Fuerza Aérea.
## 15                                                             Así fue la primera semana de Elon Musk en Washington El multimillonario y sus aliados de Silicon Valley aterrizaron en la capital y se movilizaron para reducir el tamaño del gobierno federal, retomando la estrategia que usaron tras comprar Twitter en 2022. El multimillonario y sus aliados de Silicon Valley aterrizaron en la capital y se movilizaron para reducir el tamaño del gobierno federal, retomando la estrategia que usaron tras comprar Twitter en 2022. El viernes por la tarde, la persona más rica del mundo se presentó en lo que parece ser una de las agencias más aburridas del mundo para exigir una lista. Elon Musk había llegado a la Oficina de Gestión de Personal, una agencia que suena mundana pero con un vasto poder para supervisar la fuerza de trabajo civil federal. Durante su primer mandato, el presidente Donald Trump utilizó la agencia para imponer la lealtad a su agenda. Durante su segundo periodo, parece que Musk podría utilizar la oficina para imponer la lealtad a su propia agenda. Musk ha irrumpido en Washington con una multitud de amigos y empleados, decidido a dejar rápidamente su impronta. Nunca antes en los tiempos modernos alguien tan rico había desempeñado un papel tan activo en el gobierno estadounidense. Musk se ha hecho omnipresente en Washington desde que voló para la toma de posesión de Trump. Su avión no se ha movido de allí.
##                       publication_16 publication_type_17 pub_copyright show
## 1   The Independent (United Kingdom)     Web Publication            NA <NA>
## 2                   USA Today Online     Web Publication            NA <NA>
## 3              Targeted News Service            Newswire            NA <NA>
## 4               The Associated Press            Newswire            NA <NA>
## 5                          USA Today           Newspaper            NA <NA>
## 6                         MailOnline     Web Publication            NA <NA>
## 7              The Guardian (London)           Newspaper            NA <NA>
## 8              The Guardian (London)           Newspaper            NA <NA>
## 9                 The New York Times     Web Publication            NA <NA>
## 10                        MailOnline     Web Publication            NA <NA>
## 11 Financial Times (London, England)           Newspaper            NA <NA>
## 12                            FT.com     Web Publication            NA <NA>
## 13                  USA Today Online     Web Publication            NA <NA>
## 14                The New York Times     Web Publication            NA <NA>
## 15                The New York Times     Web Publication            NA <NA>
##    term ticker                     index
## 1    NA     NA janellemonáeslamsnellyfor
## 2    NA     NA dailybriefingbeyoncéfinal
## 3    NA     NA gallegocallsonmetatoprote
## 4    NA     NA dogegetsmixedreviewsfromc
## 5    NA     NA whatsnextonmuskshitlistho
## 6    NA     NA andrewneilanewageofgeopol
## 7    NA     NA trumpordertoturnguantánam
## 8    NA     NA saturdaynightlivetimothée
## 9    NA     NA trumpengañaalculparabiden
## 10   NA     NA beyoncéshakiraaliciakeysa
## 11   NA     NA beyoncéfulfilsherdestinyw
## 12   NA     NA beyoncéfinallywinsalbumof
## 13   NA     NA grammyawardsbeyoncéwinsal
## 14   NA     NA trumpdespidealmilitardemá
## 15   NA     NA asífuelaprimerasemanadeel

Fact Check

anti_final_index <- final_data |> 
  anti_join(files, c("index"))

Checking for duplicates

final_index |> 
    dplyr:: count(title) |> 
  arrange(desc(n))
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                title
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 "Arab Americans For Trump" Changes Name Over Gaza Comments; NLRB Leader Ousted By Trump Speaks Out After Filing Lawsuit; Supervisors Withdraw Sade Robinson Memorial; NFL Removing "End Racism" From End Zones Ahead Of Trump Super Bowl Appearance. Aired 8-9a ET
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                              "Elon Musk...Shared Staggering Data Showing...Millions Of Dead Americans Still Eligible For Social Security Payments."; DOGE Finds Millions Of Instances Of Social Security Fraud In Database Including A 360- year-old; The Coming Democratic Baby Bust; Which Issues Are Americans Most Likely To Trust Donald Trump To Handle As President?; "Playboy" Magazine Announces Return To Original Content; Donald Trump Jr. And Others Invest Millions Of Dollars Into Sporting Event Allowing Participants To Use Legal Performance Enhancing Drugs; Disney Reportedly Rolling Back Trigger Warnings For Some Classic Titles On Its Streaming Service.
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    "Otherwise, we might just go down quietly": students protest in Trump's America
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             "Qualifications, Not Quotas" IW Features Unveils Documentary Trailer of U.S. Secret Service Agent's Fight Against Harmful DEI Policies
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       "Rest is resistance": Black women ignore Trump to find peace
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   "Sesame Street" Legend Reacts To Purge Of DEI Initiatives; Venezuelan Trump Supporters Fight To Preserve Policy; States Fight Back With Thousands Of Federal Workers In Limbo; "Sesame Street" Legend Reacts To Pressure On PBS Over DEI; Man Pleads Guilty In Shooting Of U.S. Teen Ralph Yarl; Missouri Sues Starbucks Over Its Diversity Programs; Military Cuts Recruiting Efforts At Black Engineering Event. Aired 8-9a ET
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      "The Goal Was to Safeguard Our Work:" WCU Office of Diversity, Equity and Inclusion is Renamed Amidst National DEI Challenges
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           $10 Million Was Spent on Transgender Animal Testing, Watchdog Group Says
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    $50M in condoms for Gaza and 'trans operas' in Colombia : The staggering foreign aid projects Trump is blocking
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1,400 more VA employees laid off in Trump's latest purge of federal workers
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10 things Dan Bongino, Trump's FBI No. 2 pick, has said in the last year
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 NFL teams have never had a Black head coach. Players find that disappointing
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                17 days of DOGE: Inside Trump and Musk's rapid disruption of the federal workforce
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2025 Federal Outlook for Higher Education
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2025 Grammy Awards highlights: Political statements, Beyoncé's album of the year win
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2025 style guide - Washington Square News
## 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2025 survey named Trump as top peace threat? No, that's from 2019 | Fact check
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2025-11 JOINT STATEMENT FROM 13 ATTORNEY'S GENERAL: PRESIDENT TRUMP IS MISLEADING THE AMERICAN PEOPLE ON PURPOSE OF DIVERSITY, EQUITY, INCLUSION AND ACCESSIBILITY INITIATIVES
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2025-24 ATTORNEY GENERAL LOPEZ ISSUES MULTISTATE GUIDANCE FOR BUSINESSES ON DIVERSITY, EQUITY, INCLUSION AND ACCESSIBILITY EMPLOYMENT INITIATIVES
## 20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            22 States Are Suing Trump Over Effort to Halt Spending
## 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           4 LGBTQ+ novels Trump doesn't want you to read - Washington Square News
## 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       40 Bodies Recovered so Far from Crash, Black Box Found; Probe Intensifies in Deadliest U.S. Plane Crash in 24 Years; Trump Baselessly Blames Democrats, DEI for Deadly Plane Crash. Rescuers Scouring For More Debris; Nine Lives Lost From Fairfax County; President Trump Points His Finger to Democrats. Aired 10-11p ET
## 23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5 'Gossip Girl'-inspired outfits for a posh Valentine's evening - Washington Square News
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5 luxury fragrances to wear in 2025 - Washington Square News
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 5 takeaways from Trump’s briefing on National Airport plane crash
## 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   5 takeaways from Trump’s whirlwind week back at the White House
## 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5 things to know for Jan. 22: Winter whiteout, Immigration crackdown, Tariffs, California wildfires, Netflix
## 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               5 things to know for Jan. 29: Federal funding, Google Maps, Immigration raids, New Jersey drones, India crowd crush
## 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   5 ways Elon Musk is working to dismantle the federal government
## 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            50501 Protest gathers community members at Wisconsin State Capitol - The Badger Herald
## 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     50501 protest comes to Harrisburg - The Voice
## 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     67 Feared Dead After Helicopter, Jet Collide Over D.C. ; Tulsi Gabbard And Kash Patel Face Senate Confirmation Hearings; Going To Gitmo: Trump: Preparing Migrant Facility At Guantanamo Bay; Ugly Smear: Democrats And Media Lash Out At New WH Press Secretary; Dems In The Dumps: The Left Is The Most Unpopular On Record
## 33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             8 must-watch films by Black female directors - Washington Square News
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A Christian against Christian nationalism on 'Freethought Matters'
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A MAGA star is born! On her first day, Trump's sparkling new press secretary Karoline Leavitt, age 27, hits the 'legacy media' with brilliantly barbed remark
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A Muted Black History Month As DEI Cuts Continue
## 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A NEW DAY IN FEDERAL ANTI-DISCRIMINATION LAW
## 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A Nation Backward: The Cost of Ending DEI - The Villanovan
## 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A National Debt Strike May Be the Way to Stop Trump and Musk | Opinion
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A Point of Order: Attacks on DEI mischaracterize initiatives, deepen social divisions
## 41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A Summary of Trump's Executive Orders for January
## 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A Trump tribute act would be able to wreak chaos here
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A WIN FOR THE AAUP, HIGHER ED, AND OUR COMMUNITIES
## 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A brave new world of world traffic control awaits – and it’s moulded by Elon Musk
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A call for revolutionary optimism in the second Trump era
## 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A catastrophe over the Potomac
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A conversation on the humanities at Lawrence
## 48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A dozen West Point cadet clubs ordered to disband, all others paused
## 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A first taste': Trump DEI war escalates, reshaping diversity in corporate America
## 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A flurry of orders: Trump in office - The Maroon
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A former top Biden DEI chief says companies should 'bunker down' and stand up for diversity
## 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A freeze on federal funding has been paused, but many facets of American life are left in limbo. Here's what we know - KentStater
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A freeze on federal loans and grants: Trump's gamble with American lives - The Pace Press
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A hotter-than-expected inflation report highlights what could be the economy's new normal
## 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A judge paused a freeze on federal funding, but many facets of American life are left in limbo. Here's what we know
## 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A look into New York City 's first teahouse-inspired festival - Washington Square News
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A look into the history of the impact of DEI in the Air Force - The Charger Bulletin
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A pilot's take on the DCA midair collision
## 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A plea to Duke's administration: Will you stand for higher education?
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A presidential first: Trump at the Super Bowl, latest chapter in a complicated legacy with football
## 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A quarter of US shoppers have dumped favorite stores over political stances
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A spiritual act of resistance': Black consumers are boycotting corporations retreating from DEI
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A televised revolution: Kendrick Lamar's halftime show - The Wellesley News
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A trans National Guard pilot was falsely accused of flying the helicopter in the fatal plane collision
## 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A&M halts research to comply with executive orders, federal funding freeze - The Battalion
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.I. Giants Double Down on Spending, Even as DeepSeek Looms DealBook Newsletter
## 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.I. Race; Eagles Win Super Bowl; Interview With U.S. Energy Secretary Chris Wright; Interview With Sen. Tommy Tuberville (R- AL )
## 68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.I. Revolution; Interview With Lara Trump; Interview With Sen. Mike Lee (R- UT ); Jeff Bezos Announces Changes at Washington Post; President Trump Holds First Cabinet Meeting
## 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AAUP JOINS LAWSUIT TO BLOCK TRUMP'S UNLAWFUL AND UNCONSTITUTIONAL DEI ORDERS
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ACE, HIGHER EDUCATION GROUPS URGE DEPARTMENT OF EDUCATION TO RESCIND DEI "DEAR COLLEAGUE" LETTER
## 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ACTING' LIKE LEADERS AT THE DEPARTMENT OF EDUCATION
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ADF Applauds Trump Effort to Ditch Divisive DEI Through Federal Govt, Corporate America
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ADF Calls on SEC to Swat Down 'absurd' Attempt From Gov't Contractor IBM to Plead Ignorance on Definition of DEI
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ADMINISTRATION RESCINDS MEMO PAUSING FEDERAL GRANTS, LOANS AND OTHER FINANCIAL ASSISTANCE PROGRAMS
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ADVOCACY AND POLICY UPDATE
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     AFGE: Eliminating Federal Diversity Programs Is Smokescreen for Undoing Merit-Based Workforce
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AG Campbell Issues Guidance For Businesses On Diversity, Equity, Inclusion And Accessibility Employment Initiatives In The Workplace
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AG Pam Bondi Targets DEI At Private Companies And Universities On Day One
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AMERICA IS BACK AND PRESIDENT TRUMP IS JUST GETTING STARTED
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AMID TRUMP THREATS, LOCAL NONPROFITS ARE STRATEGIZING TO STAY ACTIVE
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     AMID TRUMP'S WAR ON DEI, ADVOCATES FEAR JOB TRAININGS, SCHOLARSHIPS FOR DISADVANTAGED GROUPS COULD BE AT RISK
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AN UPDATE ON THIS WEEK'S FEDERAL GRANT AND LOAN PAUSE
## 83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ANDREW NEIL: Trump's bombastic blizzard of an inauguration speech threatened to provoke chaos. Then a startling realisation dawned on me...
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ANTI-DEI CRUSADE IN US ALLOWS DISCRIMINATION
## 85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ANTI-WOKE CAUCUS CALLS FOR TRANSPARENCY IN DEPARTMENT OF EDUCATION SPENDING
## 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AP News in Brief at 11:04 p.m. EST
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AP News in Brief at 11:09 p.m. EST
## 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AP News in Brief at 6:04 p.m. EST
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AP News in Brief at 6:09 p.m. EST
## 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ARIZONA SPEAKER OF THE HOUSE PUTS STATE CONSTITUTION ON TRACK TO BANISH DEI
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASU community and state senators respond to DEI actions taken state and nationwide
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ASUN sends support for Department of Education, DEI at all Big Ten schools
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AT ANNUAL MEETING, COSTCO REFUSES TO JOIN OTHERS RETREATING FROM DEI
## 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ATTORNEY GENERAL CLARK ISSUES MULTISTATE GUIDANCE FOR BUSINESSES ON DIVERSITY, EQUITY, INCLUSION AND ACCESSIBILITY EMPLOYMENTS INITIATIVES IN THE WORKPLACE
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ATTORNEY GENERAL KEN PAXTON CALLS ON COSTCO TO END WOKE DEI PRACTICES AND UNLAWFUL DISCRIMINATION
## 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ATTORNEY GENERAL RAOUL ISSUES MULTISTATE GUIDANCE FOR BUSINESSES ON DIVERSITY, EQUITY, INCLUSION AND ACCESSIBILITY EMPLOYMENT INITIATIVES IN THE WORKPLACE
## 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AYN RAND: AFFIRMATIVE ACTION, RACIAL QUOTAS ARE "UNFAIR, UN- AMERICAN , UNJUST"
## 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Accenture ditches diversity and inclusion goals
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Accenture joins rush to ditch diversity targets as US executive orders take toll
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Accenture scraps its diversity targets
## 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Accountability Arrives In D.C. ; Free Beacon: Biden Advisor's Group Got $30 Billion In Taxpayer Cash; Promises Made, Promises Kept; Trump: War Could End Within Weeks; Apple Invests $500 Billion In U.S. ; MSNBC Admits Trump Is Winning; Biden Treated Migrants Like Celebrities; Dan Bongino Tapped As FBI Deputy Director; Donors Aren't Happy With The Democrats; Maher: If You Want To Keep Losing, Keep It Up
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Accusations of an Elon Musk takeover
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Act of intimidation': Education Dept. suspends officials following Trump's DEI order
## 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Acting Representative to U.N. Economic & Social Council Shrier Issues Remarks on UNICEF Country Program Documents
## 105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Acting VA secretary warns against disguising DEI programs targeted for termination
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Activist investor reveals Costco's defiant DEI stance is 'not as meaningful' as it may appear
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Activists call for action as inauguration, MLK Day align
## 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Admin discuss DEI office closure, Research Office funding cut
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Admin remain vague on potential Trump policy changes - Washington Square News
## 110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Adviser behind ‘DOGE dividend’ check program: It’s reasonable
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Advocates call out Trump for linking DEI to deadly plane crash: 'It's offensive.'
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        After Trump's DEI remarks on DC crash, here are the facts about air traffic control hires
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ag Commissioner Takes Executive Action; Issues Order Reaffirming Merit-Based Principles and Prohibiting Discriminatory DEI Practices
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Agency Affinity Groups Disband Following Trump Orders On Gender Ideology, DEI
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Aides Defend U.S. Takeover of Gaza, Back Off Some Elements; Backlash Against Elon Musk; Trump White House Targets Federal Workers for Mass Layoffs; Sweden Mourns Worst Mass Shooting in Country's History; Price of Eggs Jump Due to Bird Flu Outbreaks. Aired 4-4:30a ET
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Aides Defend U.S. Takeover, Back Of Some Elements; Gaza Resident We Will Not Leave, We Will Die Here; Palestinians Push Back Against Gaza Takeover Idea; Syria Sees Long Road Ahead as It Starts to Rebuild; U.N. Says Nearly 3,000 People Killed in Battle for Goma; Nevada Dairy Herds Test Positive for Bird Flu; Scientists Use IVF to Produce World's First Kangaroo Embryo. Aired 2-2:45a ET
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Air Force restores use of Tuskegee Airmen training videos as Hegseth starts first day
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Air Force resumes instruction with Tuskegee Airmen video after review
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Air Traffic Control Staffing Issues in Spotlight After DC Plane Crash
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Air traffic controller ‘allowed to leave work early’ shortly before crash
## 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Air traffic controllers union responds to Trump’s DEI attacks
## 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Airbnb Co-Founder Joe Gebbia Joins Growing DOGE Team Under Elon Musk
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Al Sharpton's DEI stunt backfires spectacularly after liberal icon marches in support of Costco: 'kiss of death'
## 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Alabama teachers seek to halt state law limiting lessons on Black history and civil rights
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Alarmed, Employers Ask: What Is ‘Illegal D.E.I.’?
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Alarming Shift': Kansas AG Says Hiring DEI In Aviation Led To Increased Operational Errors
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Alicia Keys declares 'DEI is not a threat, it is a gift' in powerful Grammys speech
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Alicia Keys defends DEI at the Grammys amid Trump crackdown: 'It's a gift'
## 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Alicia Keys uses Grammy win to make impassioned plea for diversity: ‘DEI is not a threat, it’s a gift’
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     All 67 People Aboard Plane and Helicopter Presumed Dead; Investigation Intensifies into What Caused Fatal Crash; Loved Ones Mourn Plane Crash Victims; Trump Blames Crash on Diversity; Outrage Over Hostage Release Chaos. Aired 4-4:30a ET
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                All 67 People Involved In Plane-Helicopter Collision Killed; Trump Baselessly Links Diversity Initiatives To Collision; Figure Skating Community Mourns Members Killed In Crash. Aired 5:30-6a ET
## 132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               All 67 People Presumed Dead in the Midair Collision in Washington D.C. ; More Hostages, Prisoners Freed as Israel -Hamas Ceasefire is Still In Effect. Three of Trump's Cabinet Picks Grilled in a Series of Hearings; Benefit Concert Raised Funds for California Wildfire Victims. Aired 3-4a ET
## 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           All Day, Every Day: How Maxine Waters and Committee Democrats Are Standing Up for Consumers, Facing Down Elon Musk in No-Holds Barred Fight for the Future of the CFPB
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                All Federal DEI Staff Now Ordered On Leave After Deadline Passes; Crews Battling Rapidly Growing New Fire In Northern L.A. County; Rep. Mike Johnson (R- LA ) Announces New House Select Subcommittee To Continue Republicans' Investigation Of January 6; Musk Bashes $500 Billion A.I. Project Touted By Trump ; Crews Battling Rapidly Growing New Fire In Northern L.A. County. Aired 6-7p ET
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         All diversity staff on paid leave ahead of mass sackings
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          All of the anti-trans executive orders Trump has signed
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    All the 'crazy' USAID programs on blast by Republicans... including a bizarre $25K drag queen show in Ecuador
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               All the catastrophic mistakes that led to DC plane crash as it is revealed air traffic controller left tower early
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 All the executive orders Trump has signed so far
## 140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     All the shocking ways USAID spent your money
## 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Alston & Bird Launches Executive Order, Action & Proclamation Task Force
## 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Alums on the prairie: Why stay in Grinnell ? - The Scarlet & Black
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Amazon has licence to kill off the Bond I love 007 survived countless brushes with death ? but can he emerge intact from endless sequels, prequels and spin-offs?
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               America 's $500bn Stargate project could turn world into dystopian nightmare Tech giants are pouring capital into projects to create artificial intelligence on a staggering scale
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         America 's Largest Trading Partners React to Trump's Tariffs; Washington Air Disaster; Next Phase of Israeli -Hamas Ceasefire Talks; New Democratic Party Chair; Cleanup Underway After Deadly Eaton Fire. Aired 4-5a ET
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      America 's biggest companies are waging a stealth campaign to dismantle DEI
## 147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             America 's decline is over.' Trump returns to power: 5 takeaways on the inauguration
## 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            America 's largest companies hired more Black executives. Then came the DEI backlash.
## 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         America 's wokest company Disney makes major changes to classic films as it banishes DEI
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             America First Legal Demands Apple's Board End Illegal DEI Programs; Warns Shareholders and Consumers of Legal, Reputational, and Financial Risks Ahead of Annual Shareholder Meeting
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 America First Legal Sues University of California for Illegal Race-Based Discrimination Against White and Asian Applicants in Student Admissions
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   America First Legal Urges Department of Labor to Investigate Federal Contractors' DEI Programs
## 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   America Welcomes A No-Nonsense Administration; Open Border Uniparty Must Be Defeated; Democrats Lose Their Minds Over Trump's DEI Rollbacks; Democrats lose their minds over Trump's DEI rollbacks; Make America Healthy Again, Democrats freak out over Trump's healthcare agenda; CIA now favors the COVID-19 lab leak theory; MAGA mainstreamed, Trump has made conservatism cool again; Authentic Trump hits L.A.; Democrats suddenly care about inflation
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         America desperately needs more air traffic controllers. So why is it so tough to hire them? - KentStater
## 155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            America has a problem
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            America has turned on its friends Trump's abandonment of his country's allies is real and will endure
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       America ’s $500bn Manhattan project is an effort to make humanity obsolete
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Americans See Through Media's Fearmongering; Democrats Back To Their Failed Talking Points; Democrats Fake Outrage Over Pardons; Democrats Pretend They're The Party Of Law And Order; Philadelphia Mayor Spells Eagles Wrong; Trump Back To Sparring With The Media; Piles Of Abandoned Bags Left Outside Of Inauguration; Trump's DEI Promise Made And Kept
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Americans Who Think Country on Right Track Breaks 20-Year Trend: Pollster
## 160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Americans with disabilities warn protections are vanishing in Trump's DEI rollback
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Amid Onslaught on DEI, Pressley, Booker, Colleagues Reintroduce Historic Reparations Bill During Black History Month
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Amid Trump-era rollbacks, businesses stay quiet on DEI
## 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Amidst erasure of U.S. government websites, Kari Bassett `98 preserves Iowa 's oldest Black newspaper - The Scarlet & Black
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Amo says Trump’s DEI remarks on plane crash ‘beneath the office of the president’
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        An Analysis of President Elect Donald Trump's Inaugural Speech with Professor Engel and Kelley-Romano - The Bates Student
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     An advanced degree was once viewed as the best path toward job security. It's now proving to be a liability.
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An overview of Trump's new immigration policies and the UA community's response - The Daily Wildcat
## 168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Analyzing Trump's Anti-DEI Executive Order: What Does It Really Mean? - Jag Media
## 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Another DEI rollback as KPMG US ends strategy aimed at underrepresented groups
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Another Trump email sent: Air traffic controllers asked to quit
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Another Wall Street Giant Retreats From Its DEI Efforts
## 172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Antioch University: Understanding Threats to Higher Education
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Apple and the UK play a round of security tennis
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Apple braces for DEI showdown at annual shareholder meeting
## 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Apple defies Trump's executive order on DEI
## 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Apple fixing bug that caused dictation feature to type the word 'Trump' when users said 'racist'
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Apple investors defy Trump and vote to keep diversity policies
## 178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Apple investors defy Trump to back DEI
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Apple isn't jumping on the anti-DEI bandwagon
## 180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Apple joins race to win Trump's favour with $500bn plan for 20,000 US jobs
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Apple promises to fix dictation bug that replaces ‘racist’ with ‘Trump’
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Apple risks the wrath of Donald Trump as it defies executive order on DEI
## 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Apple shareholders not expected to scrap diversity programs despite broader backlash
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Apple shareholders reject plan to scrap DEI policies
## 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Apple shareholders reject proposal to scrap company's diversity programs
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Apple to fix iPhone dictation bug that replaces word ‘racist’ with ‘Trump’
## 187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Apple under shareholder attack on AI and DEI Technology
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Apple vows to fix bug that swaps 'racist' for 'Trump'
## 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Apple’s diversity policies and OpenAI deal targeted by shareholders
## 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Are Markets Taking the Latest Trump Trade Fight in Stride? DealBook Newsletter
## 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Are Paper Straws Bad for You? What We Know as Trump Suggests Ban
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Are we the bad guys? | Con-Current Events
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Arizona baseball earns fifth consecutive victory with late rally against Rice - The Daily Wildcat
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Arizona officials scrambled to determine the effects of Trump's order freezing federal funding
## 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Army Women's Museum website 'temporarily offline' over Trump's anti-DEI order
## 196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Army museum covers display honoring transgender soldiers
## 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Army top brass blast Pete Hegseth in foul-mouthed rant about DEI overhaul
## 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Artists demand National Endowment for the Arts roll back Trump restrictions
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As DEI dies down, Sam's Club CEO says his job is to create 'an environment of openness'
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As Hegseth takes charge at the Pentagon, here's what changes could be in store
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As Trump Cracks Down On DEI In Washington, Federal Agencies Caught Secretly Trying To Keep It Alive
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     As Trump Hands Out Pardons, Republicans Begin Planning How To Undo Years Of Government Abuse
## 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      As Trump cracks down on DEI, impact on Duke remains unclear
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             As Trump ends DEI programs, here's how to make sure your home is DEI-free! | Opinion
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As Trump's deadline to eliminate DEI nears, few schools openly rush to make changes
## 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As a white man, DEI means I get passed over. It's time to eliminate it. | Your Turn
## 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As many universities take down their DEI websites, Princeton's sites largely remain
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Aspiring autocrats like Trump are always more dangerous the second time in office
## 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   At Least 7 Killed, 19 Injured In Medevac Jet Crash In Philadelphia; Hamas Releases 3 Hostages From Gaza, Including Israeli - American ; Key Group Of Arab Nations Reject Trump's Call To Relocate Gazans; Today: Trump To Impose Tariffs On Mexico , Canada And China. Officials: Crews Recover 41 Bodies From Site, 28 Identified; Gabbard Won't Say If NSA Leaker Edward Snowden Is A Traitor; Right Now: Dems Meeting To Pick New DNC Chair. Aired 12-1p ET
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             At Least Five Tech CEOs To Attend Trump Inauguration; Soon: Trump Caps Political Comeback With Second Inauguration; Trump Promises To Release JFK, RFK And MLK Assassination Files. Aired 5:30-6a ET
## 211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          At least five senior FBI leaders reportedly demoted or moved as Trump’s nominee is grilled by senators – as it happened
## 212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Athens City Council continues efforts toward racial equity
## 213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Atlanta’s homelessness non-profits face ‘daunting’ future after federal grant pause
## 214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Attempt to erase trans people off the map:' UNL faculty respond to removal of 'X' on passports
## 215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Attorney General Bird Puts Costco on Notice for Doubling Down on Discriminatory DEI
## 216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Attorney General Bonta Provides Guidance for Businesses on Diversity, Equity, Inclusion, and Accessibility Initiatives in the Workplace
## 217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Attorney General Pam Bondi Dismisses DEI Lawsuits Involving Police Officers and Firefighters, Advances President Trump's Mandate to End Illegal DEI Policies
## 218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Attorney General Pam Bondi sworn in, vows to end 'weaponization' of Justice Department
## 219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Attorney General Tong Issues Guidance for Businesses on Diversity, Equity, Inclusion and Accessibility Employment Initiatives in the Workplace
## 220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Australia news live: Malcolm Turnbull says ‘we cannot assume we can rely on America ’ under Trump
## 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Australia news live: WA police officers found not to have performed duty ahead of Perth double murder
## 222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Australia news live: thunderstorms set to hit Queensland amid heatwave
## 223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Aviation chiefs 'were recruiting people with targeted disabilities including intellectual problems and hearing/vision issues until last year' - as Trump vows to tackle 'diversity' in wake of crash disaster
## 224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Aviation experts have been warning about the risk of a passenger aircraft collision for years
## 225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Axe-wielding squatters, pepper spray while I walk the dog... but the scariest part of my beloved LA's descent into squalor is the celeb I'm hearing could replace Newsom
## 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Axelrod rips Trump’s ‘craven’ remarks on deadly Potomac crash
## 227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BARR: 'JUST SAY NO' To DEI At FAA
## 228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BC Makes Revisions and Redactions to Office of Institutional Diversity Website
## 229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BHC honors Black culture, history amid federal threats of DEI crackdown - The GW Hatchet Donation Button
## 230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BOB EHRLICH: Things Are Changing Fast
## 231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BOB EHRLICH: Trump Plays Chess While His Opponents Play Checkers
## 232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BP boss says oil company went ‘too far, too fast’ in green energy transition – as it happened
## 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BRACING FOR IMPACT
## 234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BREAKING: AU mobilizes resources to respond to Trump executive orders - The Eagle
## 235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSU and Cornell Dining Collaborate to Celebrate Black History Month
## 236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BT axes diversity targets from bonuses
## 237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BT ditches diversity targets from managers’ bonuses
## 238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BT dumps diversity targets from bonuses
## 239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BT jettisons diversity goals from bonus schemes Telecoms giant follows US companies in rolling back DEI initiatives in the wake of Trump's re-election
## 240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BT scraps diversity targets from bonuses BUSINESS
## 241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BU SJP referendum results nullified, future divestment efforts uncertain
## 242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Back to petroleum at last: BP's switch back to fossil fuels is a seismic U-turn, says MAGGIE PAGANO
## 243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Background On Trump Day One Executive Orders Impacting The LGBTQ+ Community
## 244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Backlash against DEI is changing corporate culture with drastic U-turns
## 245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Backlash greets Target after diversity retreat Fall in number of people entering stores coincides with activists urging consumers to avoid retailer since policy change
## 246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bad Bunny's new album fuses Puerto Rican music, culture, and politics - The Tribune
## 247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Badenoch condemned for 'parroting Trump' in speech
## 248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Badenoch takes aim at 'poison of left-wing progressivism'
## 249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Baldwin, Murray, DeLauro Blast Trump Administration on Halt of Vital Work at Nation's Largest Public Health Agency
## 250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ball State takes preemptive measures in response to anti-DEI legislation, canceling LGBTQ+ events
## 251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Baltimore Judge blocks enforcement of Trump's executive orders related to DEI
## 252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Baltimore mayor fights back against attacks on DEI initiatives with 'Definitely Earned It' campaign
## 253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Baseball hopes for successful season, bigger turnout at games - The Scarlet & Black
## 254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Baylor, uphold your DEI practices
## 255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Beach Weekly S14E2: Black History Month events, a commercial airplane collision & more
## 256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Behind closed doors': Ibram X. Kendi departs BU, Center for Antiracist Research to close after 5 years
## 257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Behind the Curtain: The Trump actions actually busting boundaries
## 258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Behind the Curtain: Trump and Musk's masculine maximalism reshapes government
## 259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ben and Jerry's Ice Cream proves corporations can be activists - KentStater
## 260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bernie Sanders warns of 'Trumpism' at IC event - The Daily Iowan
## 261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Between Nostalgia and Dreams: how immigrant identity is informed by possessions
## 262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Beyonce clinches first album of the year Grammy with Cowboy Carter
## 263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Beyond NYU: Shaking up the restaurant industry one article at a time - Washington Square News
## 264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Beyond The Dome: Target shoppers push for a boycott after change in DEI policies
## 265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Beyond the Left & Right
## 266                                                                                                                                                                                                                                                                                                                                                                                                                        Biden Least Popular Living President, Poll Says: "Ms. Li SaidBiden Was Doped Up For Campaign Events"; Video Appears To Show Kayaker Swallowed By Whale In Chile ; 104-Year-Old Woman Celebrates Birthday By Going To Jail; NASA Says Chance Of Asteroid Hitting Earth In 2032 Is 2.3 Percent; 10,000 Organic Eggs Worth $40,000 From Pennsylvania Farm Stolen From Back Of Truck; World Athletics Toughens Transgender And DSD Rules By Introducing Cheek Swabs; Record Store Puts Out List of 10 Breakup Albums for Valentine's Day; Study Finds Only 12 Percent of Liberal Women Reporting They's Completely Satisfied with Life; Viewers Submits Questions Asking Panelists Lies They Told as Children
## 267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Biden Signs With Powerhouse Hollywood Talent Agency CAA; Mexico President Makes Deal With Trump To Pause Tariffs For A Month, Put 10K Troops On Border; Livestock Auctions Could Be Coming To An End At America 's Last Big-City Stockyard; "Fewer Than 600 Illegal Crossings Were Recorded At The Southern Border"; USAID Spent Funds On DEI, Transgender Initiatives, Terrorist Groups; Former President Biden Signs With Talent Agency For Appearances And Book Deal; New Jersey Governor Phil Murphy Claims Illegal Immigrant Lives In His House; Will Smith's Son Jaden Smith Wears Black Castle On His Head At Grammys.
## 268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Biden put DEI first and students fell behind. Linda McMahon will fix schools. | Opinion
## 269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Big Tech wants everyone to use AI, just not when applying for jobs
## 270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bill Maher eviscerates former Obama speechwriter over Dems obsession with trans issues: 'You want to lose every election?'
## 271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bill Maher praises Trump for mocking reporter's 'stupid question'... as he jokes about DC plane crash
## 272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bill Maher slams woke left's latest change to the Boy Scouts of America
## 273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bill Maher's audience goes WILD as Kid Rock drops surprising view on Democrats
## 274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bill banning all forms of DEI in city, county offices advanced by Iowa lawmakers - The Daily Iowan
## 275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bill would create government faith-based support office
## 276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bills eliminating DEI programs in schools advance in state House and Senate
## 277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Black Excellence in Sports: Former Seattle Seahawks Super Bowl champion Doug Baldwin  - The Seattle Collegian
## 278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Black Hawk Helicopter May Have Gone Off Flight Path: Report
## 279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Black Hawk Pilot's Name Being Withheld Sparks Questions
## 280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Black Hawk didn't follow air traffic controller's route before DC plane crash
## 281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Black History Month Starts Amid Trump DEI Crackdown. What Lawmakers Say
## 282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Black History Month faces uncertainty under President Trump's diversity rollback
## 283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Black History Month honors the legacy of labor leaders Theme resonates amid DEI attacks by president
## 284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Black History Month must be honored nationwide - KentStater
## 285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Black History, Pride Month and other events quietly vanish from Google calendars
## 286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Black Struggles in 2025
## 287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Black Voters Have Doubts About Democratic Strategy: Poll
## 288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Black box' flight data recorder recovered in DC plane crash: Recap
## 289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Black boxes recovered from crashed plane in Washington DC
## 290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Black boxes recovered from wreckage of Washington plane crash
## 291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Black educators warn of what is lost if Education Department is shuttered
## 292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Black faith leaders call for Target boycott for backing off diversity initiatives
## 293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Black maternal health efforts face unclear future under Trump
## 294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Black workers face DEI setback Trump's attacks shifting outlook, affecting careers
## 295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Blackburn Congratulates President Trump Ahead of Inauguration
## 296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Blue State Insists On Teaching Children Gender Ideology In Defiance Of Trump
## 297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Board of Trustees talks impact of Trump executive orders, update on chancellor search
## 298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bondi orders DOJ to throw out DEI lawsuits against police, firefighters
## 299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bondi scraps Biden-era environmental justice enforcement policy
## 300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bonfire of bureaucracy as Trump begins 'common sense revolution' Republican administration targets diversity initiatives, birthright citizenship and Biden's TikTok ban
## 301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Borderland: The Line Within' screening fosters dialogue on immigration in the U.S.
## 302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Born Privilege—Musk's White Pass Trumps Obama's Birth Certificate | Opinion
## 303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bosses battle HR chiefs ‘blindly defending’ corporate Britain ’s diversity drive
## 304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Boston, Chelsea, Somerville defend sanctuary city policies amid increased ICE activity
## 305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Both Black Boxes From Plane Recovered After Deadly Crash; Trump Blames DEI, Without Evidence, For Deadly Crash; Sen. Hassan Questions RFK Jr. On Past Autism Comments. Aired 9-10p ET
## 306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bowdoin professors offer thoughts on intersection of politics and academics
## 307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Boycotts Over DEI Decisions; EPA Staff to be Slashed by 65 Percent; Several Injured in Suspected Car Ramming Attack in Israel . Aired 10:30-11a ET
## 308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Brash, energetic and results-driven — Ireland could do with a Trump
## 309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Britain funded Mauritius diversity scheme during islands talks
## 310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Britain has one last hope - if we go unashamedly, full throttle Trumpian This week has shown that another world is possible. Unshackling the economy can still turn us around
## 311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Britain is being systematically lied to by our delusional political elite
## 312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Britain is inexorably lurching towards total bankruptcy. I know who is really to blame
## 313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Britain needs its own DOGE
## 314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Britain still acts as if it has money to burn
## 315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           British Paralympian is first person with physical disability cleared for space mission
## 316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        British broadband giant’s US co-owner defies Trump on DEI
## 317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      British firms not swayed by US push to scrap diversity goals, says minister
## 318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             British pharma company GSK pauses diversity work citing Trump orders
## 319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  British voters support raft of Donald Trump 's policies in blind polling test - but how many do YOU agree with?
## 320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Brits split on Trump-style ditching of diversity and equity goals
## 321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Brown faces funding risks after Trump admin declares race-conscious programs illegal - The Brown Daily Herald
## 322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Building belonging in uncertain times
## 323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Business leaders must stand up against attacks on diversity and democracy
## 324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business news in brief
## 325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Business schools get ready for a new term As Donald Trump takes office, the sector is bracing for clarification of the president's stance on topics from ESG to diversity and visas. By Andrew Jack
## 326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Businesses That Changed DEI Policies Prior to Trump's Executive Order
## 327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Buttigieg fires back at Trump after remarks on midair collision: ‘Despicable’
## 328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CABINET CONFIRMATION HEARINGS LARGELY IGNORE LGBTQ ISSUES DESPITE DISPARATE IMPACT OF AGENCY POLICY ON LGBTQ PEOPLE
## 329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CAPITOL TO CAPITOL | JAN. 27, 2025
## 330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CARLY ATCHISON BIRD: Congressional Republicans Need To Move Faster Than They Ever Have Before
## 331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CASTRO, LEADING FOREIGN AFFAIRS DEMOCRATS URGE SECRETARY RUBIO TO REVERSE PURGE OF STATE DEPT. AND USAID WORKFORCE, RELEASE CRITICAL FOREIGN ASSISTANCE FUNDS, AND FOLLOW LAW ON DEIA INITIATIVES
## 332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CATO EXPERT ON TRUMP ADMINISTRATION'S DEI MEMO
## 333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CATO SCHOLAR AVAILABLE TO COMMENT ON DEI MEASURES
## 334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CBC blasts Trump’s DEI comments after Potomac plane crash
## 335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CBS anchor defends ludicrous USAID spending on trans operations and atheism overseas
## 336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CDC webpages go dark as Trump targets public health information
## 337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CEA Responds to Trump Administration's Executive Order to End 'Radical Indoctrination in K-12 Schooling'
## 338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CEO confidence in communications dwindles, new report
## 339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CHAIRMAN COMER APPLAUDS PRESIDENT TRUMP'S EXECUTIVE ORDERS TO BRING ACCOUNTABILITY, REFORM TO THE FEDERAL WORKFORCE
## 340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CHAIRMAN MAST ISSUES STATEMENT ON SECRETARY OF STATE MARCO RUBIO'S CONFIRMATION
## 341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CHAIRMAN WALBERG DELIVERS OPENING STATEMENT AT "THE STATE OF AMERICAN EDUCATION" HEARING
## 342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CHAIRMAN WALBERG ON TRUMP'S DEI EXECUTIVE ORDERS
## 343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       CHAIRMAN WICKER STATEMENT ON PENTAGON BUDGET REALLOCATIONS
## 344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CHARLIE KIRK: President Trump's Shock-And-Awe Strategy Is The Way To Overwhelm The Left
## 345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CHARLIE KIRK: Trump Is Restoring The Presidency To The Founders' Vision
## 346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CHRISTINE MURRAY AND MICHAEL STOTT Rubio to shun South African G20 meeting over drive for 'equality' Boycott
## 347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       CIA Reportedly Planning To Fire Officers Involved With DEI
## 348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CIA Sends Unclassified Email to White House Listing Names of New Hires; DOGE to Keep Limited Access to Treasury Payments System; Chiefs Chasing First-Ever Super Bowl Three-Peat. Aired 7-7:30a ET
## 349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CLARKE RELEASES STATEMENT ON TRUMP'S EXECUTIVE ORDERS, INCLUDING HIS DECREE TO END BIRTHRIGHT CITIZENSHIP
## 350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CNN International: 1,500 U.S. Troops Ordered to the Southern Border; Fast-Spreading Hughes Fire Raging out of Control in Los Angeles ; Visas Can Mean Grueling Work, But an American Dream; Trump: "Sad Thing" Biden Didn't Pardon Himself; Soon: Trump to Make Virtual Address to World Economic Forum; Right Now: Oscar Nominations Being Announced. Aired 8-9a ET
## 351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CNN International: American Airlines Flight Collides Midair With Army Helicopter; No Survivors In Midair Collision Near Reagan National Airport; President Trump Gives Briefing After Midair Collision. Aired 11a-12p ET
## 352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CNN International: Bodies of Four Hostages Returned to Israel ; Zelenskyy to Meet with Trump's Russia - Ukraine Envoy Kellogg; Hegseth Seeks Budget Cuts, Tells Pentagon to Slash Waste; Trump Aligns with Russian Narrative, Calls Zelenskyy "Dictator"; CNN Fact Check on Donald Trump's First Month in Office; Elon Musk's $44B Investment in X May Soon Pay Off. Aired 8-9a ET
## 353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CNN International: DHS Secretary Kristi Noem Addresses Department Amid Immigration Raids; Freeze On Federal Grants And Loans Takes Effect At 5PM Tonight; China Celebrates Success Of AI Startup DeepSeek; North Korean Soldiers Use Near-Suicidal Tactics In Battle. Aired 3-4p ET
## 354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CNN International: Experts: Helicopter may have Mistaken Bright Light for Plane; UNRWA Chief: Israeli Ban will have "Disastrous" Consequences; What we know about Deadly Collision Over Potomac River ; Trump Again Threatens 100 Percent Tariffs on BRICS Nations; German Lawmakers Debate Immigration Restrictions. Aired 9-9:45a ET
## 355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CNN International: FAA Indefinitely Closes Helicopter Routes Near Reagan National Airport; Investigation Into Deadly Collision Intensifying; Remembering The Victims Of Deadly Plane-Helicopter Crash. Aired 11a-12p ET
## 356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CNN International: Israeli PM Netanyahu Meeting U.S. Lawmakers Today; WH Defends Gaza takeover Plan, Backs Off Some Elements; Source: At Least 40,000 Federal Workers Accept Offer To Leave. Aired 11a-12p ET
## 357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CNN International: Key Players Discuss Middle East's Future at Davos ; Trump Speaks with Saudi Crown Prince; 2025 Oscar Nominations Announced; Trump to Address World Economic Forum as he Threatens Higher Tariffs; Musk Casts Doubt on Trump's $500B AI Project. Aired 9-9:45a ET
## 358                                                                                                                                                                                                                                                                                                                                                                 CNN International: RFK Jr. Faces Confirmation Hearing for Health Secretary; Judge Pauses Trump's Federal Aid Freeze Amid Confusion; U.S. Middle East Envoy to Meet Netanyahu Today; U.N. Calls for Immediate International Action in Goma; Rwanda -backed Rebels Claim Takeover of Goma; Multiple Deaths Reported at World's Largest Religious Festival in India ; Plane Catches Fire in South Korea While Preparing for Takeoff; Trump to Sign Laken Riley Act Into Law; Trump Administration Continues Crackdown on Undocumented Immigrants; Fed Likely to Pause Rate Cuts Thanks to a Strong Economy; Former Senator Bob Menendez to Be Sentenced; Analysts Ask for More Info on DeepSeek's Lofty Claims; Lunar New Year Celebrations Underway. Aired 8-9a ET
## 359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CNN International: Soon: Trump And Jordan 's King To Meet At White House; Hamas Says It Will Postpone Next Hostage Release; Watchdog Warns Trump's Dismantling Of USAID Means Funds Could Fall Into Hands Of Terrorist Groups. Aired 11a-12p ET
## 360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CNN International: Sources: Putin is Not Seriously Prepared To Engage In Peace Talks; No Joint News Conference With Zelenskyy, Trump 's Envoy; Trump Escalates His Criticism Of Zelenskyy. Aired 11a- 12p ET
## 361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CNN International: Today: Trump Meeting With GOP Congressional Leadership; Trump Pardons Nearly All January 6 Rioters Charged Or Convicted In Attack; Trump Signs Executive Actions Cracking Down On Immigration; Marco Rubio Sworn In As Secretary Of State; Trump To Implement Tariffs On Canada And Mexico February 1; Police: Several Injured In Suspected Stabbing Attack In Tel Aviv. Aired 3-4p ET
## 362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CNN International: Trump Admin. Tries to Clarify Remarks on Taking Over Gaza; Trump Orders Ban on Transgender Women in Women's Sports; CIA Offer "Buyouts" to Workforce; Doubts Over Trump's Immigration Policy in Red Nebraska ; U.S. Postal Service Briefly Pausing Package Deliveries from China. Aired 6-7p ET
## 363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CNN International: Trump Moves Quickly to Reshape Federal Government; Once-In-A-Generation Storm Brings Record Snowfall to U.S. South; ICRC Head on Upcoming Hostage and Prisoner Exchange; Trump Issues Slew of Executive Orders on Energy; Trump Indicates He's Open to New Sanctions on Russia ; Pardoned January 6 Defendants Being Released from Prison. Aired 9-10a ET
## 364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CNN International: Trump To Have First Oval Office Interview With Sean Hannity; Trump Says He'll Apply New Sanctions And Tariffs If Russia Doesn't End Ukraine War; Trump Pardons Founder Of Silk Road, A Dark Web Marketplace. Aired 11a-12p ET
## 365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CNN International: Trump: Russia And Ukraine To Begin Peace Negotiation; Hegseth Rules Out Ukraine 's NATO Membership; Trump Holds Call With Putin; Alexander Vinnik Exchanged For Marc Fogel; Trump To Impose Reciprocal Tariffs On Trade Partners; U.S. Inflation Accelerates; China To Help Stop Ukraine - Russia War; Senate Confirms Gabbard; Judge Lets Trump's Buyout Proceed; Associated Press Banned From White House. Aired 6-7p ET
## 366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CNN International: White House Pauses All Federal Grants And Loans; Justice Dept. Fires Officials Who Investigated Trump; Trump: Chinese AI "A Wake-Up Call" To Silicon Valley. Aired 11a-12p ET
## 367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CNN International: Zelenskyy Meets with U.S. Special Envoy; Trump 's Approval Rating at 47 Percent; Kash Patel Confirmed as FBI Director; Elon Musk Meets with President Milei; Pope Francis Remains in Hospital; Body Retrieved Not Shiri Bibas. Aired 6-7p ET
## 368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CNN Panelists Push Back Against Analyst Lamenting Trump's Ban On DEI
## 369                                                                                                                                                                                                                                                                                                                                                                                                                                CNN Saturday Morning Table for Five. President Trump Blames Federal Government Diversity, Equity, and Inclusion Policies for Commercial Plane and Military Helicopter Midair Collision Near Washington D.C. ; Elon Musk's Possible Influence in Trump Administration Examined; Robert F. Kennedy Jr. and Tulsi Gabbard Face Tough Questions at Senate Confirmation Hearings for Their Nominations to Trump Administration; Paramount Settling Lawsuit with Donald Trump over Editing of Televised Interview with Kamala Harris; Senate Minority Leader Chuck Schumer Says Democrats Aroused after Trump Administration's Order of Freezing of Federal Grants and Loans Rescinded. Aired 10-11a ET
## 370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CNN gives Karoline Leavitt nasty new nickname after first White House briefing
## 371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CNN hammers 'king of callousness' Jesse Watters for flip-flopping on DOGE cuts
## 372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CNN heaps shock praise on Donald Trump as he completes first week in office
## 373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CNN panel explodes into heated clash as pundit fumes she gets paid less than white male colleagues
## 374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CNN panelists at each other's throats over resigned DOGE staffer's 'racist' posts in fiery exchange
## 375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CNN pundit apologizes after sparking right-wing fury for blaming DC plane crash on Trump
## 376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CNN star Jake Tapper blasted for penning new book 'exposing' the cover up of Biden's health decline he 'actively participated in'
## 377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CNN's Coverage of the Inauguration of President Donald Trump; Trump to Hold Signing Ceremonies; Families of Israeli Hostages in Gaza Seen in the crowd. Aired 5-5:30p ET
## 378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CNN's Laura Coates Reports About the Tragedy on the Potomac ; Trump Blames DEI for Deadly Crash; CNN Remembers the Lives Lost on Flight 5432. Aired 11p-12a ET
## 379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CNN's Scott Jennings gives liberals a blistering reality check on Elon Musk's DOGE
## 380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CNN's Special Coverage on the Inauguration of Donald Trump as the 47th President of the United States . Aired 3-4a ET
## 381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CNN's shocking on-air dig at Trump during DC plane crash press conference
## 382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              COLUMN | Do you need to know someone to get a job after graduation?
## 383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      COLUMN: Breaking down Kendricks performance
## 384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    COMMITTEE DEMOCRATS OUTLINE THREATS TO FEDERAL JUDICIARY INDEPENDENCE POSED BY TRUMP AND MUSK
## 385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CONGRESSMAN AL GREEN JOINS CONGRESSMAN SYLVESTER TURNER TO ADDRESS THE IMPACTS OF PRESIDENT TRUMP'S CONTROVERSIAL EXECUTIVE ORDERS
## 386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CONGRESSMAN SYLVESTER TURNER TO HOST PRESS CONFERENCE ON PRESIDENT TRUMP'S RECENT EXECUTIVE ORDERS
## 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CONGRESSWOMAN FREDERICA WILSON'S STATEMENT ON PRESIDENT TRUMP'S COMMENTS REGARDING THE AIRCRAFT CRASH OVER THE POTOMAC RIVER
## 388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CONGRESSWOMAN KING-HINDS GIVES UPDATE ON TRUMP ADMINISTRATION'S GRANT FREEZE
## 389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CONGRESSWOMAN RIVAS HOSTS LISTENING SESSION WITH COMMUNITY HEALTH ORGANIZATIONS ON PRESIDENT TRUMP'S FEDERAL FUNDING FREEZE THE REPUBLICAN RIP OFF
## 390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           COTTON STATEMENT ON RFK JR. NOMINATION
## 391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         COVID Source?; Trump Reinstates Service Members Over COVID Vaccine Refusal; China's DeepSeek Making Gains in A.I. Race; Interview With Rep. Buddy Carter (R- GA ); Immigration Crackdown; Colombia Agrees to Take Immigrants; Interview With Sen. Bernie Moreno (R- OH )
## 392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CPSC: Acting Chairman Feldman Ends DEI at CPSC
## 393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CRENSHAW INTRODUCES LEGISLATION TO DEFUND UNIVERSITIES THAT MANDATE DEI STATEMENTS
## 394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CRUZ-LED INVESTIGATION UNCOVERS $2 BILLION IN WOKE DEI GRANTS AT NSF, RELEASES FULL DATABASE
## 395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CSG talks Trump administration, passes resolutions
## 396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CSU administration responds to federal actions impacting community - The Rocky Mountain Collegian
## 397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              California Suffered Major Air Traffic Control Issue
## 398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              California congresswoman and her fellow liberals users blame Trump for deadly mid-air collision near Reagan airport
## 399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            California judge blocks Trump administration’s mass firings of federal workers – live
## 400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cameras installed in Steiner testing rooms to handle increasing usage - The Scarlet & Black
## 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Campus Coalition Protests
## 402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Campus Crime Logs: Jan. 10-17
## 403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Campus Democrats Reflect on Broad Electoral Defeat in 2024
## 404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Campus closed to public amidst winter storm, classes still held - The Scarlet & Black
## 405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Campus in chaos - The Observer
## 406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Can America 's kids read? It'll be harder to know after Trump's education cuts, researchers say
## 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Can DEI be banned in schools?
## 408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Can a 28 Feb economic blackout day really harm Trump and Musk?
## 409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Can businesses ever run a true meritocracy?
## 410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Canada and Mexico order retaliatory tariffs after Trump signs order marking start of US trade war: Live
## 411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Capitol Hill Hearing Draws Scrutiny On Elon Musk; Number Of Gotaways At Southern Border Drops; Anderson Cooper Snaps At Guest Over DOGE; Dems Attack Musk In DOGE Subcommittee Hearing; Biden Admin Slow-Walked Marc Fogel Release; Trump Admin Entering Negotiations Over Ukraine War; Department of Education Leaders Rally Against DOGE; Worcester, MA Votes To Become Trans Sanctuary City
## 412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Captain America ' Fights Off Poor Reviews and a Backlash
## 413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Captain Sully 'Disgusted' by Trump's Remarks on DC Plane Crash
## 414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Caroline Kennedy Accuses Cousin RFK Jr Of Being A "Predator" And Urges Senators To Reject His Nomination As HHS Secy; Patel's Personal Battles With Intel Community Shaped His Views Of FBI; WH: NJ Drones That Caused Hysteria Were "Not The Enemy"; Trump Calls China's DeepSeek A "Wake-Up Call" For U.S. Industries; Beauty Company Embraces DEI As Other Brands Ditch Programs. Aired 2:30-3p ET
## 415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Carter Delivers Opening Remarks at Budget Markup
## 416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Celebrities rail against Trump’s policies — but hesitate to say his name
## 417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Center for Anti-Racist Research To Close Down
## 418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Center for Law and Social Policy: EEOC, NLRB Firings Plus Federal Buyouts Will Harm Workers and Our Economy
## 419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Chairman Carr Ends FCC's Promotion of DEI
## 420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Chancellor Tillis Hosts Town Hall on Recent Federal Actions
## 421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Changes to National Endowment for the Arts grants alarm local artists
## 422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Changing picture Walt Disney removes its diversity metric from executive pay scheme
## 423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Chaos, Confusion Erupts After Trump Halts Federal Money; Judge Temporarily Blocks Trump's Plans To Freeze Federal Aid; Trump Officials Issue Quotas To ICE Officers To Up Arrests; Oklahoma Official Supports Trump Agenda On Deportation Of Undocumented Migrants; Armed Man Arrested At The Capitol; RFK Jr. Slammed By Own Cousin. Aired 10-11p ET
## 424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Charlamagne Tha God gives brutal take on Vivek Ramaswamy's DOGE exit and predicts Elon Musk will 'crash and burn'
## 425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Charli XCX and Sabrina Carpenter gave the Grammys exactly what it needed – pop, not politics
## 426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Chicago slapped with lawsuit over sanctuary laws; Woke gender policies put girls in danger; Virginia school board thinks signs will keep women safe; Sex offender allegedly exposed himself to girls; Trump restores faith in America ; Teacher who refused to hide crucifix sues district; Common sense prevails in trans sports debate; Earlier, Zuckerberg seen leaving the White House, Democrats Apocalyptic Over Spending Cuts; Waste Watching Government Spending; DOJ Sues Illinois , Chicago Over Immigration Policy
## 427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Chiefs and Eagles players speak out on playing in front of Donald Trump with president set to attend the Super Bowl
## 428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Children with disabilities swept up in DEI fight, advocates say
## 429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Chilling 'conspiracy theory' about Black Hawk helicopter in DC plane crash is TRUE
## 430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     China Winning A.I. Race?; Robert F. Kennedy Set For Confirmation Hearings; Interview With Sen. Markwayne Mullin (R- OK ); Kristi Noem Joins ICE Raid; White House Holds First Press Briefing
## 431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Chrisette Michelle sang for Trump in 2017. The backlash lasted years: ‘I thought they’d never stop hating me’
## 432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cisco CEO Chuck Robbins defends DEI
## 433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Citi becomes latest US company to abandon diversity targets
## 434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Citigroup drops its diversity targets, renames its DEI unit
## 435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               City Council discusses federal funding freeze and Black History Month, celebrates Groundcover News
## 436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      City body abandons diversity requirements as backlash grows
## 437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           City chiefs must speak out about maintaining diversity
## 438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Civil Rights Groups Sue Trump Administration to Challenge Anti-DEI Executive Orders on Behalf of Nonprofit Serving Diverse Group of Women in the Skilled Trades
## 439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Civil and human rights groups sue over Trump diversity, transgender orders
## 440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Civil rights activists call for a Target boycott after retailer backs away from diversity programs
## 441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Civil rights groups ask court to overturn Donald Trump's anti-diversity, transgender orders
## 442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Claims about USAID funding are spreading online. Many are not based on facts
## 443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Clarence Thomas in the spotlight, cardiac clearance, how running became fashionable: Catch up on the day's stories
## 444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Clay Travis makes shock Donald Trump ESPN prediction and says they regret being 'too left wing and woke'
## 445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Climate change is a subject for action in and out of class - PNW Pioneer
## 446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Clock ticking toward possible Costco strike Saturday
## 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Coastguard boss fired over diversity
## 448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Coca-Cola boycott brewing amid rumors staff are 'reporting colleagues to ICE'
## 449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Colbert on Trump’s second week: ‘ America is having some second thoughts’
## 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Coleman Hughes is Interviewed about the Anti-DEI Push; Art delaCruz is Interviewed about Helping Wildfire Recovery Efforts; Pandas Make Public Debut in Washington. Aired 9:30-10a ET
## 451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Collective punishment': NYU suspends 13 students after pro- Palestinian sit-in - Washington Square News
## 452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      College Football Playoff National Championship Game: Ohio State v Notre Dame – live updates
## 453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               College considers Trump policy impacts on research, endowment, DEI
## 454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 College student groups based on race, ethnicity could be in jeopardy under Trump
## 455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Colleges around the US cautiously navigate Trump's DEI crackdown
## 456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Colman Domingo says we all have 'responsibility' to close racial equality gap
## 457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Colombia backs down on deportation flights after Donald Trump's tariff threats; ICE agents busted a Tren de Aragua; Now, President Trump Speak To House GOP Members
## 458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Colorado Attorney General joins 22 states in lawsuit over cut in federal research funds
## 459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Columbia Caves After Trump Tariff Threat; Columbia Agrees To Deportation Flights; The Fearmongering Over ICE Deportations Continues; Democrats React To Colombia 's Deportations Deal; Rufo Says He Was Targeted For Opposing DEI; CIA Changes Tune On COVID Lab Leak Theory; Mystery Drone Sightings Surge As FAA Lifts Limits; Survivor Mark Holocaust Remembrance Day; Palisades Resident Want Answers From Officials
## 460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Columbus leaders troubled by federal funding threats
## 461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Comes back to the African American community': Bloomington kicks off Black History Month - Indiana Daily Student
## 462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Commissioner Roger Goodell talks DEI efforts, officiating, 18-game schedule, Justin Tucker ahead of Super Bowl LIX
## 463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Commitment to Inclusion: How Bloomsburg will protect DEI - The Voice
## 464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Community members gather for "Defend Democracy" protest
## 465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Companies are running away from DEI. One of America 's biggest beauty brands is standing firm
## 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Companies like McDonald's and Meta are changing DEI in the Trump era
## 467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Companies never truly cared about DEI  | The Daily Campus Centered Divider Line
## 468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Comparing Donald Trump And Joe Biden Presidencies; Illegal Immigrant Arrests Soar Under Donald Trump; Hamas Names Three Israeli Hostages To Be Released; More Americans Think U.S. Us On The Right Track; Donald Trump Takes A Dig At CNN's Credibility; JPMorgan CEO Jamie Dimon Slams Remote Workers; Jon Stewart Says MSNBC Is Wildly Redundant; Trump Administration Faces Court Challenges; 19 Attorneys General Challenging DOGE Access; Lawsuit Challenges Access To Treasury System
## 469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Confusion persists over Trump Administration federal research funding policy | Campus | dailycal.org
## 470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Confusion rules as Trump stalls grants
## 471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Congress eyes probe, reforms in response to aircraft tragedy
## 472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Congressional Black Caucus Statement on President Trump's Executive Actions on Diversity, Equity, and Inclusion
## 473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Congressional Black Caucus blasts Trump DEI action as step backward
## 474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Congressional Hispanic Caucus Denounces Trump's Executive Order Ending Federal DEI Programs
## 475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Congressional Research Service Issues Insight White Paper on Recent Executive Actions on Diversity, Equity & Inclusion
## 476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Congressman Hank Johnson's Statement Following President Trump's Executive Order Targeting DEI
## 477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Congresswoman Cherfilus-McCormick's Statement on the Removal of the Tuskegee Airmen from the Air Force's History
## 478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Congresswoman Randall Leads Effort to Demand Reinstatement of Remote Work and Telework Agreements for Eligible Military Spouses
## 479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Congresswomen Cherfilus-McCormick, Chu, Pressley, and Morrison Demand Restoration of the Office of Research on Women's Health
## 480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Consultancy giant scraps diversity targets in wake of Trump order
## 481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Consumers are boycotting major retailers. Here's what they plan for 'blackout' on Feb. 28
## 482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Consumers are planning a one-day economic blackout on Feb. 28. Here's what to know.
## 483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Consumers rally behind DEI
## 484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Control tower staffing faulted Army identifies third pilot on the helicopter
## 485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Coralville Costco customers support the company's decision to keep DEI programs - The Daily Iowan
## 486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Cornyn Praises Pres. Trump for Dismantling Biden's Discriminatory DEI Regime
## 487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Cornyn, McCaul Op-Ed: President Trump Must Focus on CHIPS Act for Texas , U.S. Manufacturing Success
## 488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Corporate America discovers that activists can judge-shop too
## 489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Corrections and clarifications
## 490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Cost of campus diversity staff soars
## 491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Costco 's DEI clash has companies taking notes. Some, like Disney , are making changes.
## 492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Costco Rejects Shareholder Proposal to Scale Back DEI
## 493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Costco Should Think Twice About Doubling Down On Its 'Illegal' DEI Policies, Republican AGs Warn
## 494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Costco Takes Stand Against Donald Trump
## 495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Costco Under Fire in 19 States for Taking Stand Against Trump
## 496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Costco boldly defies Donald Trump's executive order
## 497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Costco confirms major food court change
## 498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Costco confirms switch of food court sodas from Pepsi to Coca-Cola
## 499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Costco defends its diversity policies as other US companies scale theirs back
## 500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Costco facing serious pressure from Republican attorneys general to ditch DEI policies
## 501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Costco plummets down list of top supermarkets as biggest customer bugbears damage its reputation
## 502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Costco shareholders reject push to reconsider DEI More than 98% show opposition to proposal
## 503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Costco shareholders vote against anti-DEI proposal
## 504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Costco successfully defends its diversity policies as other US companies scale theirs back
## 505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Costco unseated as top wholesale store by rival pushing high-tech checkouts
## 506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Costco won't join DEI backlash. Why shareholders rejected anti-'woke' proposal.
## 507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Costco’s board rejects anti-DEI motion, defends ‘respect and inclusion’
## 508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Could DEI rollbacks affect HBCU students' career development?
## 509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Could McDonald's Bring Back Beef Tallow?
## 510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Could Trump's freeze on federal loans and grants impact my student aid?
## 511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Could the US really take over Gaza?
## 512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Court Rules U.S. Treasury Department Officials Affiliated with Department of Government Efficiency May Access Treasury Department Systems as Read Only; President Trump to Speak at National Prayer Breakfast; NTSB, FAA Investigators to Brief Lawmakers on Midair Collision. Aired 8-8:30a ET
## 513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Court battles loom as Trump's Environmental Justice reversal begins
## 514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Courts Temporarily Rule Against White House Policies
## 515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Cowboy Carter' takes country crown at 67th Grammy Awards
## 516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crashes, Collisions, Flipped Landings; Democrats, Media Blame Donald Trump Again; MAGA movement versus Democrat panic; Dallas DEI obsession under fire; Dallas police won't work with ICE; Trump cleans house; Boy wins girls' pole vault as another title stolen; Maine 's trans-mania; Kamala still serves up word salad; Wicker star Cynthia Erivo cast as Jesus Christ; JFK's grandson freaks out after JFK library closes
## 517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Critical moment in history': Protests across US target Trump, Musk
## 518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Critics Choice Awards 2025: Chelsea Handler ROASTS Justin Baldoni and Blake Lively in opener
## 519                                                                                                                                                                                                                                                                                                                                                                                                                            Critics Say Democrats Refused To Listen To RFK JR; Officials Recover Two Black Boxes From Wreckage; What Went Wrong In Midair Collision Near DCA ; Hegseth: There Was An "Elevation Issue" In Crash; Former Pilot: Night Vision Goggles Could Cause Issues; What We're Learning About Victims Of Air Disaster; Remembering The Victims Of Fatal Plane Crash; Dem Senator Says "Millions Will Die" Under RFK Jr; Trump Attacks DEI Policies After Mid-Air Collision; Key Trump Picks Work To Win Over Skeptics; FBI, DNI Nominees Grilled In Confirmation Hearings; RFK Works To Win Over Hesitant Republicans; Gabbard Pressed By GOP And Democrat Skeptics; Patel And Schiff Spar Over Weaponization
## 520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Crowds Line Streets To Mourn Bibas Family Who Were Killed In Gaza; Fired Cybersecurity Official: Veterans' Sensitive Data At Risk; Supreme Court Hears Case On Reverse Discrimination; Gabbard: 100-Plus Intel Officers To Be Fired Over Explicit Work Chats. Aired 2:30-3p ET
## 521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              D.C. Crash, Black Boxes Found as Investigation Intensifies; Trump Blames DEI for Air Tragedy in D.C. ; Chaotic Scenes of Hostage Release in Gaza; Palestinians Return to Northern Gaza; Trump Nominees Grilled in the Senate; Trump Baselessly Blames DEI Initiatives For Air Disaster; Fireworks In Hong Kong To Celebrate The Year Of The Snake. Aired 2-2:45a ET
## 522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   D.C. Plane Crash Live Updates: Black Boxes Recovered From Plane And Helicopter
## 523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          D.C. business owners fight back against DEI rollbacks at mega-retailers
## 524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DARTMOUTH POLITICAL UNION HOLDS DEI DEBATE
## 525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DAVID BLACKMON: Trump Dresses Down The Davos Globalists
## 526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DAVID BOSSIE: Trump, Musk Are Sticking It To Administrative State Right Out Of The Gate
## 527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DC Black Hawk Crash Leaves No Survivors; Recovery Efforts Underway in DC Black Hawk Crash; Deadly Midair Collision Kills Dozens; FAA Short- Staffed on Air Traffic Controllers; Biden FAA Had Diverse Priorities; Trump Nominees Take Over Capitol Hill; Gabbard: I am Nobody's Puppet; Kash Promises to Clean Up the FBI; Interview with Sen. Josh Hawley (R- MO ); Trump Announces Tariffs for Mexico and Canada; Bureaucrats Furious Over In-Office Mandate
## 528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DC Plane Crash: NTSB Provides Update on Black Hawk Data
## 529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DC plane crash is a terrible tragedy. Trump, Democrats must stop the blame game. | Opinion
## 530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DC plane crash latest updates: Crews work to find remaining victims as investigators recover black boxes
## 531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DC plane crash latest: Families visit crash site as officials yet to find bodies of 12 victims
## 532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DC plane crash latest: First parts of plane wreckage are lifted from Potomac after families visit disaster site
## 533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DC plane crash latest: US army identifies third pilot taking part in 'doomsday' training as black box recovered
## 534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DC plane crash widow reveals fateful choice that killed husband and saved her life
## 535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DEI AND ACCESSIBILITY, EXPLAINED
## 536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DEI Another Day Britain should follow America in re-examining counterproductive diversity policies
## 537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DEI Guidance Removed from Federal Agency Websites Amid New Trump Measures
## 538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DEI In The Dumps
## 539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DEI Isn't For Us': Some Black-Owned Businesses Say Diversity Policies Don't Work
## 540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DEI Means Upholding Our Shared Values | Opinion
## 541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DEI Removal Setting America Back in Equality
## 542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DEI information disappears from University web pages, drawing community concern Login or create an account
## 543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DEI is dead in America – now the City wants to kill it in Britain
## 544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DEI is good for our business, Coca-Cola says
## 545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DEI is not a bad thing - The Hawk News
## 546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DEI is not over for corporate America , but needs to be reinvented
## 547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DEI is not over, but it will have to be reinvented
## 548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DEI is on Trump's chopping block. See how Democrats are fighting back.
## 549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DEI is out but it won’t die quickly in the arts
## 550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DEI is to blame for Trump's near-assassination claims Secret Service agent
## 551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DEI isn't dead - in Britain it is burgeoning Trump has declared that the woke dogma has had its day in the United States . But it lives on unchallenged here
## 552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DEI isn’t just a waste of money. It’s dangerous
## 553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DEI leaders scramble to counter Trump actions
## 554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DEI obliterated as Trump issues scathing order
## 555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DEI programs benefit many groups, not just Black and brown communities
## 556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DEI protesters take a musical approach to peace
## 557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DEI s  Inclusive Culture, Diverse Representation  Is Important, Leadership Firm Says
## 558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DEI work will continue, even amid today's wave of attacks, executive says
## 559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DEI, gender ideology executive orders spark divided responses among Bostonians
## 560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DEI: What you need to know about programs at local, state and national levels
## 561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DEL. PLASKETT RELEASES STATEMENT ON WHITE HOUSE ATTEMPT TO PAUSE FEDERAL FUNDING
## 562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DEMOCRATIC WOMEN'S CAUCUS ANNOUNCES EXECUTIVE STEERING COMMITTEE, FIGHTING FOR WOMEN'S RIGHTS AMIDST A SECOND TRUMP TERM
## 563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DHS Secretary Kristi Noem Tags Along For First New York City ICE Raids; Federal Judge Pauses Donald Trump Admin Funding Freeze; Kind And Cordial: Fetterman Praises Trump After Meeting At Mar-A-Lago; New Media Boom: WH: Podcasters, Influencers Welcome At Briefings; Google Maps Will Use Gulf Of America
## 564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DHS Secretary Speaks as ICE Raids Continue Across U.S. ; DHS Secretary Noem Joins Fed Agencies in New York City Raids; Trump Says, Chinese App a Wakeup Call to U.S. on A.I.
## 565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DL Hughley tells Snoop Dogg to look at 'the man in the mirror' after Trump inauguration backlash
## 566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DOD Orders Purge Of All Agency Media Promoting DEI
## 567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DOE Investigates ICSD Over Alleged Discrimination Towards White Students
## 568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DOGE AND THE DEPARTMENT OF TRANSPORTATION
## 569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DOGE Claims Billions in Savings; Trump Reverses Stance toward Ukraine ; McConnell Announces Retirement. Aired 6:30-7a ET
## 570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DOGE Plans to Slash Agency Overstaffing; DOGE Hunts Fraud Across Government; Trump Team Kicks Things Into Overdrive; Clay Travis Schools Democrats on Masculinity
## 571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DOGE SUBCOMMITTEE CHAIRWOMAN GREENE OPENS HEARING BY EXPOSING THE "DARK TRUTH" ABOUT USAID'S MISSION TO UNDERMINE U.S. INTERESTS
## 572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DOGE Sniffs Out More Waste, Fraud And Abuse; Clay Travis Calls Out Liberal Men For Being Weak; Where Is Everybody Else? Jamie Dimon Scolds Remote Workers For Being Slakers; Happy Valentine's Day! City Killer Asteroid Speeding Towards Earth
## 573                                                                                                                                                                                                                                                                                                                                                                                                                    DOGE Starts FEMA Purge; DOGE Dismantling Department of Education; DOGE Shreds Blank Checks for Scammers; Democrats Want Elon Behind Bars; Trump and DOGE Aim Wrecking Ball at Bureaucrats; World Leaders Want a Taste of the Golden Age; Trump Bringing Peace and Prosperity to Middle East; Hegseth Works Out with Troops; Vance Asserts Dominance in AI Race; Interview with Sen. Josh Hawley (R- MO ); Biden Takes a Late Night Beating; Democrats Cook Up a Constitutional Crisis; Rogan: The Democrat Establishment Sucks; Deluded Democrats Face Political Extinction; House Launches Federal Secrets Task Force; Bad Actors Try to Exploit Major Events; Hansen Catches Pervert Trying to Pick Up Teen
## 574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DOGE Targeting Non-DEI Staff, Starting With Probationary Workers—Reports
## 575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DOGE finds millions of instances of social security fraud in database including a 360-year-old and 'vampires'
## 576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DOGE for all: States are now looking to create their own cost-cutting agencies
## 577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DOGE prepares gold reserve 'audit' after top Republican invites Elon Musk to review Fort Knox
## 578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DOGE rips apart half a BILLION in DEI grants to 'develop anti-racist mindsets' at Education Department
## 579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DOGE slashes millions from Education Department research
## 580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DOGE to Make 'Rapid Safety Upgrades' to Air Traffic Control: Elon Musk
## 581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DOGE uncovers farcical $2.3m program training soldiers to 'speak and act in a DEI friendly' way
## 582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DOGE' Ranks Agencies By How Much Money They Cut; Progressives Blast 'DOGE' And "Stupid" Americans; iPhone Sparks Controversy With Voice-To-Text Bug; Rachel Maddow Slams MSNBC For Firing Joy Reid; Virginia Parent Opposes Gender Studies Curriculum; Pam Bondi Warns California , Maine And Minnesota To Comply With Federal Law; Southwest Plane Dodges Private Jet On Runway In Chicago; Former Federal Worker Has "No Sympathy" For Fed Employees
## 583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOGE's " America first" philosophy causes global and national harm - The Mass Media
## 584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOGE's inner workings - and workers
## 585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOGE's latest request came with plenty of confusion
## 586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DOGE's next target: federal officials monitoring civil rights and discrimination, report says
## 587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DOJ Moves To Dismiss Mayor Eric Adams (D- New York City , NY ) Case Amid Protest Resignations; Trump White House Didn't Realize Firings Included Nuke Stockpile Staff; Vice President Vance Railed On European Leaders In Munich; J.D. Vance Meets With Far-Right Party Leader Of Germany ; Associated Press Barred From Oval Office And Travelling With President Trump. Aired 10-11p ET
## 588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DOJ Officials Who Prosecuted Trump Fired; Trump to Address House Republicans in Miami; Sen. Ruben Gallego (D- AZ ) is Interviewed on the Crackdown of Unlawful Immigrants All Across the U.S. ; U.S Tech Stocks Plunge Sparked by New Chinese AI. Aired 5-6:00p ET
## 589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DOJ Proposes 20-Year Sentence for Convicted January 6 Riot Leader
## 590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOJ fires employees who worked on Trump prosecutions under Jack Smith | The Excerpt
## 591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DOJ under Trump administration halts civil rights litigation, freezes investigation against Worcester PD
## 592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DONATION PLUG - PLEASE DO NOT TOUCH
## 593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DOTEDU LIVE: NAVIGATING TRUMP'S FIRST WEEK
## 594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DOTEDU LIVE: NEW ORDERS AND NEW CHALLENGES FOR HIGHER EDUCATION
## 595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DOZENS OF LAWSUITS AGAINST THE TRUMP ADMINISTRATION: SAY "BYE, BYE" TO DEI
## 596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DR TIM HAMES: The seven ways that Donald Trump will send shockwaves around the world
## 597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DUFFY MOVES TO RESCIND GREENHOUSE GAS MANDATE, RESET DOT POLICIES
## 598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Daily Briefing: 'Not logistically or technically feasible'
## 599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Daily Briefing: A 'big, beautiful bill'
## 600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Daily Briefing: A chilling effect on corporate DEI efforts
## 601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Daily Briefing: Federal DEI workers placed on leave
## 602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Daily Briefing: Upping America 's AI competition
## 603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Daily Briefing: Who are the Zizians?
## 604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Dan Bongino: Trump nominates podcast pundit as deputy FBI director
## 605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Dark clouds on the horizon': Top UW officials react to federal funding freeze
## 606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Dashcam Shows Philadelphia Plane Crash From Stunning Angle
## 607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Daughters of Target cofounder 'alarmed' at retailer's DEI rollback
## 608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             David Axelrod Is Very Distraught That Trump, Musk Are Saving Taxpayer Dollars By Gutting Foreign Aid
## 609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  De Anza community reacts to Trump 's inauguration - La Voz News
## 610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DePaul is standing firm on DEI, won't be 'bullied' - The DePaulia
## 611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DePauw received Department of Education letter instructing U.S. schools to cease DEI efforts - The DePauw
## 612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DeSantis' Hold on Florida Is Slipping. Trump Could Deliver the Final Blow | Opinion
## 613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Deadline for assessment of DEI programs nears
## 614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Debrief with Diermeier: Civil discourse, campus safety, federal administrative changes and more - The Vanderbilt Hustler
## 615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Decades of betrayal
## 616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Decision to remove Black WWII pilots history from Air Force training reversed
## 617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Deep State Fights Back Against Trump
## 618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Defending DOGE: Musk & Trump Questioned On Aggressive Overhaul; Trump Repeats Gaza Plan: "We're Going To Take It"; Marc Fogel Lands In U.S. After Trump Secures Release. Aired 9-10p ET
## 619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Defense Secretary Directs Creation of Task Force to Restore America 's Fighting Force
## 620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Defense Secretary in Offense Mode
## 621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Defense secretary orders military to prepare for major budget cuts
## 622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Deloitte UK refuses to scrap DEI rules in split with US office
## 623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Deloitte UK signals splits with Trump's US over diversity commitments
## 624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Deloitte UK to prioritise diversity schemes in split from US arm
## 625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Deloitte asks consultants to US government to remove gender pronouns from emails
## 626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deloitte ditches diversity policies in the US — but not Britain
## 627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Deloitte tells US staff working on government contracts to ditch pronouns from emails
## 628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Deloitte tells some US staff to drop email pronouns Financial services
## 629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Deloitte, the largest of the Big Four firms, is split over DEI
## 630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Delta to "Continue moving forward" with equity work
## 631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Delta's DEI Stance Called Out After Toronto Plane Crash
## 632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Dem Gov's Budget Proposal Doubles Down On Some Of The Left's Most Unpopular Priorities
## 633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Dem Rep's Minutes-Long Tirade About 'Mediocre White Boys' Somehow Veers Into ICE, Black Colleges
## 634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Dem Senator Supports Spending Millions For Sesame Street Program In Iraq Amid USAID Cuts
## 635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Democracy Forward: Higher Education Officials, Restaurant Workers, City of Baltimore Challenge Trump Administration's Violation of Free Speech Protections, Separation of Powers In Suit to Block Anti-DEIA Executive Orders
## 636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Democrat Questions Elon Musk Loyalty to US Because of His Citizenship
## 637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Democrat Smear Campaign In Full Force Against RFK Jr.; Nonprofits Are Making Billions Off Border Crisis; Gender Radicals Recruiting Kids; Kansas Debates Ban On Transition Care For Minors; New Chinese Security Threat; China's DeepSeek Rattles A.I. World; U.S. Navy Orders Not To Download DeepSeek
## 638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Democrat calls firing of FBI officials ‘deeply alarming’ as some federal websites appear to go dark – live
## 639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Democratic Governor Praises Trump's 'Great' Penny Decision
## 640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Democratic Party Handed Polling Blow on Heels of Second Trump Term
## 641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Democratic candidates for next NJ governor meet at 'informational forum'
## 642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Democrats Ambush Department Of Education; President Donald Trump Caps Off Third Week With Wild News Conference; John Fetterman Says Democratic Party Brand Is "Toxic"; Shaming and Scolding: Fetterman Slams Democrats Over Their Messaging; Countdown To Super Bowl LIX On Fox
## 643                                                                                                                                                                                                                                                                                                                                                                                                                                                             Democrats Are Rooting Against America ; Donald Trump's Transforming Washington; Media Elites Flounder Against J.D. Vance; Companies learning The Hard Way; Woke Target Gets Wake Up Call As Target Under Fire For DEI lunacy; Buttigieg Takes Aim At Democrats' Diversity Approach; Biden Imported Millions Of Illegals; Rape, Drugs, And Abuse In Massachusetts Shelters; Massachusetts Governor Says No Background Checks On Shelter Residents; Madonna Isn't Laughing At Trump's King Joke; Elon's Son Boogied All Over Resolute Desk; Meghan Markle Announces New Brand, As Ever; Trump Goes After The Cartels As Mexico Pushes Back On Trump's Cartel Crackdown
## 644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Democrats Are Storming Federal Buildings; DOGE Takes Aim At Department Of Education; Elon's Nerd Army Is Getting Cozy; DOGE Is Expanding Operations; The Pentagon Is Getting Audited; USAID's Waste And Abuse Runs Deep; USAID Whistleblower Speaks Out; Japan 's Prime Minister Meets With Trump; Japan Pledges $1 Trillion US Investment; Japanese PM Manhandles US Press; Europe Cutting Tariffs On US Car Imports; Trump Revokes Biden's Security Clearance; Countries Line Up To Cut Deals With Trump; The Era Of DEI Is Over; Democrats Are Lost In The Wilderness; Sink Or Swim
## 645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Democrats Can't Stop Blaming Elon Musk For Everything; Donald Trump Slaps Reciprocal Tariffs On U.S. Trading Partners; Sanctuary Smackdown: Trump DOJ Sues NY Officials For Prioritizing Migrants; Transgender Sanctuary City: Worcester , MA Caves To Activists After Chaotic Meeting; Sounds Like A Guy: Illinois Democrats Lawmaker Slams Term Manufacturing
## 646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Democrats Descend Into Chaos At DOGE Hearing
## 647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Democrats Fight For Their Constituents: Government Workers; Runaway Judges Protect Runaway Spending; Donald Trump Unites America ; DOGE Cuts $101 Million In DEI Grants; DOGE Outworks, Outsmarts Bureaucrats; Democrats Try To Barge Their Way Into Government Buildings And Thinks The Rules Don't Apply To Them; Lee Zeldin Shakes Up EPA; Ray Talks To Super Bowl Expo Attendees About Trump; Americans Are Ready For Unity Under Trump; Kedrick Lamar's Performance Gets Political; The Last Straw; Trump's Making Change
## 648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Democrats Freak Out As Elon Musk Takes Axe To Bloated Bureaucracy; Media Chocked By How Fast Donald Trump Is Moving On His Agenda; Dems Ditch Kamala; Fmr DNC Official Says No Dems Want Harris To Run Again; It's A Great Honor: Kelce: Awesome That Trump Will Be At Super Bowl; Baddie, Gigachad, Mewing: Parents Struggle To Keep Up With Their Kids' New Lingo
## 649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Democrats Have A Simple Message For Republicans: Stop Playing Politics With Disaster Aid For Fire Victims
## 650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Democrats Rage Over Elon Musk; Interview With Gov. Glenn Youngkin (R- VA ); Trump Proposes U.S. Forces in Gaza; Trump Signs Executive Order on Women's Sports
## 651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Democrats Rip Trump, Musk As DOGE Targets Fed Agencies; Russia Frees American , Trump Talks Gaza And Hostages; Soon, Trump Signs New Exec Orders To Bolster DOGE; Senator Collins TO Support RFK Jr For HHS Secretary; Vance Warns Europe Against Over-Regulating AI; Trump DOJ Moves To Dismiss Case Against NYC Mayor; Trump Pardons Former Illinois Governor Blagojevich
## 652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Democrats Shriek And Lie, Rinse, Repeat; Democrats' Trans Mania Stymies Appeal; The Trans Resistance Is Losing Its Mind; Democrats lied about economy for years and blame Trump for Bidenomics; Democrats try to rebrand Biden-flation; Democrats suffer from DOGE derangement syndrome; Democrat representative call Elon Musk a dick; Anderson Copper to Chris Sununu, don't be a dick; FBI discovered 2,400 JFK-related files; Old Blake Lively interview shows true intentions; Left-wing resistance flops again; It's almost MAHA time
## 653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Democrats Want To Impeach Trump Again; Democrats Hold Rage Ritual Outside Capitol; Musk is Driving Democrats Crazy; Federal Agencies Are Getting DOGE'd; USAID's Long List Of Crap; POLITICO Payments Exploded Under Biden; USAID Whistleblower Speaks Out; USAID's Waste And Abuse Runs Deep; Uncut "60 Minutes" Kamala Interview Released; The War On Women's Sports Is Over; What Is The Ick
## 654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Democrats and former defense officials rail against ‘pure pettiness’ of Trump Pentagon firings
## 655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Democrats and protesters rally outside treasury department to protest Elon Musk’s access to sensitive information – live
## 656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Democrats are fast losing the argument on Elon Musk’s Doge revolution
## 657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Democrats call for Education Department to rescind threats to end federal funding for schools with DEI programs
## 658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Democrats denied access to EPA during attempt to meet with DOGE officials
## 659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Democrats introduce bill to protect transgender service members
## 660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Democrats prepare for war with Trump over "illegal" funding freeze
## 661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Democrats refuse to vote on Trump budget pick: ‘So clearly unfit for office’
## 662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Democrats tear into Trump for blaming the DC plane crash on DEI
## 663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Democrats tears into 'vile' and 'grotesque' Trump for blaming the plane crash on DEI
## 664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Democrats, what do you stand for?
## 665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Demonstrators gather at Capitol to protest Trump administration policies, executive orders - The Daily Texan
## 666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Demonstrators protest next to Downtown Phoenix campus as students join in
## 667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Department of Education Orders Academic Institutions to End All Race-Based Programs Within Two Weeks
## 668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Department of Education contract cuts spur ‘chaos and confusion’
## 669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Department of Education could be next on Trump’s chopping block
## 670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Department of Education rolls back DEI initiatives
## 671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Department of Education warns schools to cut DEI policies or lose funding
## 672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Department of Education's Dear Colleague letter challenges DEI policies in education - The Rocky Mountain Collegian
## 673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Department of Education's New DEI Portal Sparks Backlash: 'Snitch Line'
## 674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Department of Education's Two-Week Deadline
## 675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Department of Education, LBCC Assure Federal Funding Pause Does Not Affect Student Financial Aid
## 676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Despite Executive Order, Carleton to continue DEI programming - The Carletonian
## 677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Despite federal DEI changes, SAC continues inclusivity goals - The Saint Anselm Crier
## 678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Despite protest, Iowa lawmakers advance bill ending civil rights protections for trans Iowans - The Daily Iowan
## 679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Details about Trump’s executive orders around DEI are causing confusion
## 680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Devastating Pennsylvania plane crash scene pics emerge as American flyers unnerved by second deadly accident
## 681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Did America just get pranked... again? - The Northerner
## 682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Did Donald Trump Freeze Hiring of Air Traffic Controllers? What We Know
## 683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Did FAA Reject Air Traffic Controllers Based on Race? What We Know
## 684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Did Trump revoke the Equal Employment Opportunity Act? Here's what to know
## 685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Differences bubble up between PepsiCo and Coca-Cola on diversity programs
## 686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Director of Equal Opportunity & Title IX responds to federal order for school's to follow Trump's 2020 Title IX Rule - The George-Anne Media Group
## 687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Director of National Intelligence Tulsi Gabbard vows to crack down after kinky sex chats among NSA agents exposed
## 688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Disabled Americans Deserve Better
## 689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Disabled pilot responds after Trump blames diversity and inclusion policies for DC crash
## 690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Disappointed but not surprised: New DEI changes maintain the 'status quo'
## 691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Disgraceful reason American flag was hung upside-down in Yosemite
## 692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Dismissed EEOC commissioner warns that Trump plans to 'erase the existence of trans people'
## 693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Disney Becomes Latest Company To Scale Back DEI Initiatives During Trump Era
## 694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Disney Drops Diversity Programs in Win for Trump
## 695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Disney appears to walk back DEI policies in latest investor filing
## 696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Disney cuts trigger labels down to the bare necessities in DEI purge
## 697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Disney ditches trigger warnings in DEI bonfire
## 698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Disney is retreating from the frontline of the culture wars – one trigger warning at a time
## 699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Disney is the latest company to shake up its DEI initiatives. Read the memo to staff.
## 700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Disney scraps woke trigger warnings on family favourites such as Dumbo and Peter Pan in a bonfire of diversity, equity and inclusion policies
## 701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Disney waters down content warnings in retreat from diversity
## 702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Disney+ changing content warning about stereotypes, 'negative depictions' before some films: Reports
## 703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Disney, amid changes to DEI initiatives, will alter content warning ahead of ‘Peter Pan,’ ‘Dumbo’ and other older films
## 704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ditch diversity if you want but don't be the poster child for mean bosses
## 705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diversity in the NHS means staff are now promoting 'anti-whiteness', warns Health Secretary
## 706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diversity is the future ? better get used to it Trump is trampling DEI initiatives but, virtue-signalling silliness apart, firms see value in reflecting changing Britain
## 707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diversity jobs die out as Britain passes ‘peak woke’
## 708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diversity, equity and inclusion office rescinds award from Pro- Palestinian group after public criticism from university president
## 709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do Trump and co want a world reclaimed by straight white men? It’s not certain they’ll get it
## 710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do you care about DEI when it comes to where you spend your money? Tell us. | Opinion
## 711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Does D.E.I. Help or Hurt Jewish Students?
## 712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Does my country want me? Germany 's historic far-right election gain worries me. | Opinion
## 713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Domingo, Gabby Thomas put DEI on menu
## 714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Don Lemon blasts 'nepo baby' Trump in furious rant about his DEI crackdown
## 715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Don't lament the death of USAID  | The Daily Campus Centered Divider Line
## 716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Don't stop at DOGE: Trump can be the transformative president America needs now | Opinion
## 717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Donald Trump Administration Hit With Slew of Legal Challenges
## 718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Donald Trump And Benjamin Netanyahu Meet At The White House; Elon Musk Takes DOGE Hammer To Bloated Fed Government; Trump Train Steams Ahead: President Moving Quickly To Cross Off His To-Do List; Good Luck: NJ Gov Murphy Dares ICE Arrest Immigrant Living In Home; Eating For Lunch: Democrats Furious As Trump Stacks Up Early Wins
## 719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Donald Trump And Elon Musk Rip Democrats' Meltdown Over DOGE; Stephen A. Smith Slams Democrats For Weak 2028 Candidates; Cartel Crackdown: CIA Using Drones To Hunt For Fentanyl Labs, Trafficking; Now: Trump Delivers Remarks At Tech Summit In FL ; Man Of The Moment: Greg Graces Cover Of Variety: Late Night's New King; Battle For Overhead Bins Is Raging
## 720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Donald Trump Announces Plans For U.S. To "Take Over" Gaza Strip; Democrats Rage Over DOGE Cuts At "Nobody Elected Elon Musk" Rally; No Men In Women's Sports: Trump Bans Transgender Athletes From Women's Sports; Oval Office Showdown: Soon: Newsom Faces Trump Over L.A. Fire Aid And Water; Romance Reading: Men Are Picking Up More Salty Novels Than Women
## 721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Donald Trump At Risk for an Unemployment 'Valentine's Day Massacre'
## 722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Donald Trump Blames Obama, Biden, DEI for DC Plane Crash
## 723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Donald Trump Executives Order Targets Transgender Athletes; Donald Trump Suggests Gaza Takeover; Donald Trump Pick Takes Over Justice Department; Democrats Struggle To Unify Their Opposition To Donald Trump; Two Men Accused Of Involvement In Burglaries Involving Wealthy And Famous Victims; President Trump Suggests U.S. Should Oversee Rebuilding Of Gaza Strip During Press Conference; President Trump Signs Executive Order Withholding Federal Funds From Schools That Allow Biological Males In Women's Sports; Democrats Criticize Trump Administration Suspending USAID Operations
## 724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Donald Trump Gets Warm Reception At Super Bowl; Trump Administration Says 'DOGE' Is Reducing Government Waste; Super Bowl Crowd Reacts To Donald Trump And Taylor Swift; Kristi Noem Visits Gitmo As Migrant Planes Arrive; Elon Musk: FEMA Sent $59 Million To Luxury Hotels For Migrants; One Killed In Plane Collision At Scottsdale Airport; Gabbard DNI Confirmation Vote Expected This Week; Controversial Cabinet Picks Face Senate Votes; Trump Applauded By Fans At Super Bowl LIX; Eagles Praise God After Super Bowl Win
## 725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Donald Trump Hit With Major DEI Legal Setback
## 726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Donald Trump Hopes Super Bowl Attendance Helps Unite America ; Donald Trump Hits Highest Approval Mark Of Either Term; DOGE Derangement Syndrome Takes Over Capitol Hill; Democrats Rage As DOGE Cuts Waste In Govt; DEFCON 5 Dems: Golden: Quit Hyperventilating Over Trump's Every Move; Trump's Two Cents: President Declares War On The Penny
## 727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Donald Trump Is Already in Reverse
## 728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Donald Trump Making 'Sweeping Cuts' to Homeland Security—What to Know
## 729                                                                                                                      Donald Trump Moves To "Significantly" Reduce Federal Workforce; Republican Lawmakers Push For Border Security; Slew Of Challenges To Donald Trump Agenda; Federal Funds For New York City Migrant Program; Sen. Dave McCormick (R- PA ) Is Interviewed About President Trump's Efforts To Bring Home Marc Fogel; Pennsylvania Teacher Released From Russian Custody; Biden Criticized For Not Bringing Gogel Home; Trump Foreign Policy Agenda For Second Term; Vice President J.D. Vance Speaks To European Leaders About Partnering With America Or China In Development Of Artificial Intelligence; Severe Winter Weather Expected To Hit U.S. South And Northeast; Defense Secretary Pete Hegseth Visits U.S. Troops Overseas; Hamas Given Deadline To Release Most Hostages To Israel To Maintain Ceasefire; King Abdullah II Of Jordan Offers To Take Sick Palestinian Children Into His Country; President Trump Speaks About Terms For Continued Support To Ukraine In War Against Russian Invasion
## 730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Donald Trump Navy Pick Said Recruits Must Be Willing To 'Rip Out' Own Guts
## 731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Donald Trump Opens Second Term With Several Shots In War Against The Deep State
## 732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Donald Trump Praises Work Being Done By DOGE; Democrats Try To Frankenstein A Left-Wing Joe Rogan; Blame Game: Media Stretches To Find Any Way To Tie Crash To Trump; Liberal Bubble: Whoopi: Don't Need To Talk To Trump Supporters; Pint-Sized Portions: The Adults Who Swear By The Kids' Menu
## 733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Donald Trump Removes First Female Coast Guard Commandant: Reports
## 734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Donald Trump Review Orders DEI Review Of Aviation; Democrats Still Blaming Loss On Racism And Misogyny; Trump's Tariff Toolbox: Tomorrow: 25 Percent Tax On Canada And Mexico , 10 Percent On China; Now: NTSB Gives Update On D.C. Crash Investigation
## 735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Donald Trump Shakes Up Global Elite At Davos ; Donald Trump Confident His Admin Can Get U.S. Back On Track; Biden Forever! Illegal Gangbanger Says F Trump As He's Nabbed; Son Goes Maga: Liberal Parents Struggle With Trump-Supporting Kids; Work From Home Crybabies! Federal Workers Freak Out Over Back-To-Office Orders
## 736                                                                                                                                                                                                                          Donald Trump Signs Laken Riley Act Into Law; Robert F. Kennedy Jr. Grilled During Contentious Testimony; Two Cabinet Picks To Testify; Bob Menendez Convicted Of Accepting Bribes; Charges Dropped Against Trump Codefendants; Trump Rescinds Federal Grant Freeze Memo; Trump Nominees Face More Scrutiny In Senate; Migrant Encounters at U.S. Southern Border Fall Precipitously After Inauguration Of President Trump; ICE Raids In U.S. Cities Leading To Plane Flights Of Migrants Being Repatriated To Home Country; Health And Human Services Secretary Nominee Robert F. Kennedy Jr. Testifies To Senate For His Confirmation Hearing; FBI Director Nominee Kash Patel And Director Of National Intelligence Nominee Tulsi Gabbard To Face Senate Confirmation Hearings; Trump Administration Rescinds Office Of Management And Budget Memo On Freezing Of Federal Government Grants And Loans
## 737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Donald Trump Starts Cleaning House; Trump Scores $500 Billion AI Investment; Media Realizes Democrats Have It All Wrong; Interview With Sen. Markwayne Mullin (R- OK ); Biden Escapes to California ; Biden Pardons Set Bad Precedent; Media Pumps Out New Sloppy Hoaxes; The New Resistance Is Screechy And Annoying; Trump Eliminates Federal DEI Programs
## 738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Donald Trump Stream Rolls Through First Month In Office; President Donald Trump Calls Taxpayer Refunds "A Great Idea"; Trump Takeover: MAGA Movement Is Taking Back Culture From The Left; Long Live The King: Trump Hails Move To Kill NYC Congestion Pricing; No Strings Attached: Delta Offers $30K To Passengers After Plane Crash
## 739                                                                                                                                                                                                                                                                                                                                                      Donald Trump Takes Questions After A.I. Announcement; Donald Trump Announces Artificial Intelligence Investment; Race To Confirm Remaining Donald Trump Nominees; Biden And Trump Issue Sweeping Pardons; Trump Issues Sweeping Pardons For January 6 Rioters; Many Of Biden Justice Department Prosecutions Undone; New Artificial Intelligence Infrastructure Initiative A.I. Investment Backed By Oracle; Marco Rubio Confirmed By Senate As U.S. Secretary Of State; President Trump Orders Active Duty U.S. Troops To Southern Border; Coast Guard Commandant Relieved Of Duty By President Trump; Trump Administration Cancels Migrants' Appointments Made Through CBP One App; President Trump Draws Criticizes For Pardoning Violent Offenders At January 6th Riots
## 740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Donald Trump Wants a D.C. Takeover; DOGE is Sniffing Around in Sensitive Spots; Americans Deserve a Rebate Check; Elon is Too Big to Rig; Trump Team Launches Operation Whirlwind; Schumer is Issued a Warning; Miller Gives Media a Civic Lesson; Fraudsters Always Complain the Loudest; Florida Cracks Down on Illegal Immigration; Kash Patel Confirmed as FBI Director; Trump Honors Black History Month; Trump Shakes Up the World Order; Interview with Sen. Josh Hawley (R- MO ); Democrat Favorability is in the Tank; Elitist Democrats Alienated America ; DEI is on Life Support
## 741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Donald Trump blames Democrats and DEI for fatal Washington mid-air collision
## 742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Donald Trump finally reveals Elon Musk's real job in federal government
## 743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Donald Trump fires first female Coast Guard leader over her obsession with DEI
## 744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Donald Trump fires top US military officer in Pentagon shake-up
## 745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Donald Trump is a Great Man of History
## 746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Donald Trump is a fascist
## 747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Donald Trump is already giving his voters exactly what they asked for
## 748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Donald Trump is serving a second presidential term. Here's the lowdown on his personal life, career, and politics.
## 749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Donald Trump returns to the White House - Mace & Crown
## 750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Donald Trump says there are no exemptions on 25% aluminum and steel tariffs – as it happened
## 751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Donald Trump to ban transgender troops and DEI military programs in latest executive order flurry
## 752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Donald Trump to be the 47th President of the United States ; Second Day of Israel -Hamas Ceasefire Updates; World Leaders Brace for Trump's Second Presidency; Donald Trump's Second Inauguration Just Hours Away; Trump Hails TikTok's Return Hours Ahead of Inauguration; Trump Promises Tough Crackdown On Immigration. Aired 2-3a ET
## 753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Donald Trump's America will make Harry and Meghan 'more unpopular than ever': Royal experts say new president's inauguration is a 'day of fear' for the Sussexes with their US residency under threat
## 754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Donald Trump's Approval Rating Higher With Black People Than White People
## 755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Donald Trump's First Month in Office Compared to First Term
## 756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Donald Trump's Gen Z Popularity Plunges
## 757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Donald Trump's Move to Ban DEI in FAA Backed by Aviation Lawyer
## 758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Donald Trump's Plans Exposed As Journalist Receives 'Most Ever' Leaked Docs
## 759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Donald Trump's ex Marla Maples makes appearance at 2025 Grammys as former husband is blasted by stars
## 760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Donald Trump's new Transportation Secretary Sean Duffy seen performing raunchy dance in embarrassing video
## 761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Donald Trump: Igniting A Human Rights Crisis - Whitman Wire
## 762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Donald Trump’s administrative self-coup
## 763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Donald Trump’s frenetic first week leaves corporate America struggling to keep up
## 764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doocy Asks Press Sec If It Is 'Safe To Fly Commercially' As Trump Laments Hiring Process For Air Traffic Controllers
## 765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doomed Black Hawk chopper was rehearsing Trump's evacuation to a nuclear bunker when it slammed into American Airlines jet, online sleuths claim as more wild conspiracy theories emerge
## 766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doomed Black Hawk helicopter's call sign sparks fresh mystery following DC plane crash
## 767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Dozens of Education Department staffers on leave amid Trump’s DEI purge
## 768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Dr. Arza's Powerful Takeaways From Washington, D.C. Meeting: A Bold Vision for the Golden Age of School Choice
## 769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Dr. Jonathan Reiner is Interviewed about the Measles Outbreak; Trump Takes First Appeal to Supreme Court ; Mark McKinnon is Interviewed about Trump's Russia / Ukraine Comments. Aired 6:30-7a ET
## 770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Draft of Brown's institutional values to be released in March - The Brown Daily Herald
## 771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Drexel responds to DEI policy shift
## 772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Drone Video Shows Aftermath of Philadelphia Plane Crash
## 773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Duckworth Speaks at Asian American Coalition of Chicago 's Lunar New Year Celebration
## 774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Duke, don't comply': Duke, Durham community members protest to demand University stand up to Trump, end PPD policy
## 775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Durbin Files Amendments To Republicans' Budget Bill
## 776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            During An Angry Rant About DOGE On The Daily Show, Jon Stewart Accidentally Smashed A Coffee Mug And Bloodied His Hand; Our New Survey Says 81 percent of Americans Said They Support Deporting Illegal Immigrants Who Have Committed Crimes; White House Press Secretary Announces White House Press Team Will Determine Outlets in White House Press Pool; President Trump Announces Plan to Sell $5 Million Gold Cards to Wealthy Foreigners Granting Them Green Card Residency and Path to U.S. Citizenship; CNN Anchor Jake Tapper Publishing Book on Democratic Party's Cover Up of Former President Biden's Cognitive Decline.
## 777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        During Trump's Department of Education takedown, what happens to Chapman?
## 778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ECU's New Policy No Longer Requires DEI Courses
## 779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EDITORIAL | Penn State must defend its DEI initiatives
## 780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     EEOC CHAIR: AGENCY MUST RESCIND 'FLAWED' HARASSMENT GUIDANCE
## 781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             EIU responds to national DEI changes
## 782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ELON MUSK AND DOGE: A PRO-LIFE PUSH TO END TAXPAYER FUNDING FOR ABORTION AND RADICAL LEFT WASTE
## 783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            EMBRACING EXPRESSION AT META REQUIRES CHANGES THAT TRANSCEND POLITICS
## 784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ENSURE YOUR INCLUSION AND DIVERSITY INITIATIVES ARE IN COMPLIANCE
## 785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EPA ADMINISTRATOR LEE ZELDIN CANCELS NINE MORE CONTRACTS, SAVING NEARLY $60 MILLION
## 786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EPA Places 171 DEIA and Environmental Justice Employees on Administrative Leave
## 787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     EPA fires nearly 400 workers after OPM order
## 788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EPA places more than 160 environmental justice employees on paid leave
## 789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     EPA puts employees who tackle pollution in overburdened communities on leave
## 790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             EU 'should send troops to defend Greenland' Move would send a strong signal, says bloc's top general after US President threatens to seize territory
## 791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EVOLVE TO SOLVE: WORKFORCE INTEGRATION, IANDD, AND THE FUTURE OF WORK POST-TRUMP EO
## 792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EWU's International Affairs Club reacts to Trump's return to office - The Easterner
## 793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   EXCLUSIVE: Bureaucrats Privately Fume About Trump Abolishing DEI, Go Into Full Conspiracy Mode
## 794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            EXCLUSIVE: Education Groups Say Linda McMahon's Confirmation Is Essential To Overhaul 'Years Of Incompetence' At Dept
## 795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    EXCLUSIVE: GOP Senator Reintroduces Bill To Boot One Agency's Bureaucrats Outside The Beltway
## 796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          EXCLUSIVE: K-12 DEI program faces federal scrutiny amid Trump crackdown
## 797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EXCLUSIVE: Military Watchdog Sues Air Force, DOD To Obtain Records On Pentagon LGBT Pride Event
## 798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EXCLUSIVE: Musk Quietly Inserts DOGE Across Federal Agencies In Move That Could Uproot $162,000,000,000 Gov't Industry
## 799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      EXCLUSIVE: Republican Sen. Katie Britt Reintroduces Bill To Finish Border Wall Construction
## 800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EXCLUSIVE: Trump Axes Intern Program After Biden Officials Hid Signs Of DEI 'Cancelled due to recent Executive Orders'
## 801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EXCLUSIVE: Trump Must Purge Dozens More DEI Bureaucrats Burrowed Into Government, Watchdog Says
## 802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      EXCLUSIVE: Trump To Defund Schools That Teach Critical Race Theory, Radical Gender Ideology
## 803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 EXECUTIVE ORDER REQUIRES AGENCIES TO PARTICIPATE IN DEREGULATION
## 804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      EXECUTIVE ORDERS AND HIGHER ED | UPDATE ON JANUARY 23, 2025
## 805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        EXPLANATION OF VOTE ON UNICEF AGENDA ITEM 5(A): COUNTRY PROGRAM DOCUMENTS
## 806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Early moves by Trump are an assault on LGBT+ rights
## 807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Earned her place': Friends grieve Rebecca Lobach, US Army pilot killed in DC crash
## 808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     East Bay teacher facing controversy for showing off Pride flag, DEI books in 1st grade class
## 809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Economic Blackout: Will a 24-hour boycott make a difference?
## 810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Economists Warn of Trump's Federal Grant Freeze: 'Catastrophic Shock'
## 811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Editor Daily Rundown: Trump Shutters DEI Offices, Ends Race-Based Hiring Rules
## 812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Editorial Roundup: United States
## 813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Editorial | The Daily Collegian Board of Editors share value of student press freedom
## 814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Editorial: Erasure of DEI deepens American divide
## 815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Education Department creates ‘End DEI’ portal to field public complaints
## 816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Education Department employees placed on paid leave as part of Trump administration's DEI purge
## 817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Education Department issues guidance ordering universities to remove race-based programs
## 818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Education Department letter threatens federal funding of any school that considers race in most aspects of student life
## 819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Education research contracts are slashed DOGE terminates nearly $1 billion in agreements
## 820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Eisgruber says U. is "exploring measures" in wake of Trump orders, stops short of specific guidance
## 821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  El Salvador Offers to House Violent U.S. Criminals; Egg Prices Rising; Musk and Trump Targeting Department of Education Next?; Republicans Ready to Confirm Robert F. Kennedy Jr.?; Elon Musk's Role in Federal Government?. Aired 11-11:30a ET
## 822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       El racismo subyace en los ataques de Trump a la diversidad
## 823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Elimination of federal climate tools, some used to inquire in to Musk’s firms, sparks alarm
## 824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Elon Musk Defends DOGE At Donald Trump's First Cabinet Meeting; Gavin Newsom Launching Podcast To Chat With MAGA Leaders; Secret Sex Chat: Gabbard Fires 100-Plus Intel Officers For Explicit Messages; Golden Ticket To America : Trump Announces Green Card Alternative For The Rich; JetBlue Passenger Blesses Plane With Oil
## 825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Elon Musk Dismantling Government, White House Calls Him "Special" Employee; Trump Backs Down; E.L.F. Embracing DEI. Aired 7-8p ET
## 826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Elon Musk Dominates First Trump Cabinet Meeting; Musk: Trump Told Me To Be "More Aggressive" In Federal Cuts; Texas Reports First Measles Death As Cases Spread Rapidly; New Strategy To Combat Bird Flu, Lower Egg Prices; Supreme Court Signals It Will Make It Easier For Americans To File "Reverse" Discrimination Lawsuits; Hamas Expected To Release Bodies Of 4 Israeli Hostages. Aired 4-5p ET
## 827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Elon Musk Dominates Trump's First Cabinet Meeting; Musk Takes Financial Hit Amid Tesla Protests; Jeff Bezos Faces Backlash Over WAPO Changes; New battle emerges over fate of Medicaid; Supreme Court Takes on "Reverse Discrimination" Case; CNN Presents " America Asks." Aired 11p-12a ET
## 828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Elon Musk Given Warning Over DOGE Cuts to Education: 'Devastating Impact'
## 829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Elon Musk Is Reshaping The Government, But Is It Legal?; Breaking Down Elon Musk's Expanding Role in Trump Administration; Democrats Plot First Major Attack on Trump Agenda; Trump To Become First President to Attend Super Bowl. Aired 8-9a ET
## 830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Elon Musk Is Working Overtime To Save U.S. From Deficit; Democrats' DOGE Derangement Syndrome On Full Display; Europe's Simple Choice: America Or China; Europe's Free Ride Is Over; Judges Want To Stop Trump From Exposing Corruption; Democrats Weaponize The Courts; DOGE Says FEMA Spent $59 Million On Hotels For Illegals; Leakers Are Getting Iced; Battle Of The Billionaires, Musk Versus Altman; Democrats Does Not Even Know How To Curse
## 831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Elon Musk Issues Warning to Department of Education
## 832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Elon Musk Joins Donald Trump At White House For E.O. Signing; Donald Trump Doubles Down On Hamas Threat To Release Hostages; IRS Agents To Help Remove Illegal Immigrants; Audit The Border: IRS Agents TO Help Remove Illegal Immigrants; MAGA Nightmares! Trump-hating Dems Flooding Psychology Offices; Trump Is Saving Plastic Straws And Sharks
## 833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Elon Musk Says US Government Needs to 'Delete Entire Agencies'
## 834                                                                                                                                                                                                                                                                                                                                                         Elon Musk Tells Federal Workers To Detail Work In An Email Or Lose Their Jobs; Hooters Preparing To File Bankruptcy; Transgender Basketball Player Goes AWOL From Girls' Playoff Game And Team Lose By 26 Points; San Francisco's Asian Voters Tell Local News Why They Are 'Walking Away' From The Democrats; MNNBC Parent Company NBCUniversal Settles 'Uterus Collector' Lawsuit; ICE Whistle Blower Speaks Out, Alleges Mass Hysterectomies Performed On Migrant Women; Jane Fonda And Fran Drescher Make Political Speeches At Screen Actors Guild Awards Ceremony; James Carville Advises Democrats To Remain Silent And Allow Trump Administration To Falter; New Study Claims Periods In Text Messages After Each Word Makes Text Seem More Emotionally Intense.
## 835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Elon Musk Touts Government Firings by Wielding Chainsaw; Kash Patel Critics Warn of Purge as He Takes Over FBI; Ex-NFL Punter Arrested After Anti-MAGA Protest; Joe Rogan Dethroned as Fans Sound Off; Musk Eyes Major Change to "X" Platform; U.S. -Canada Tensions Spill Onto the Ice for Final Grudge Match. Aired 11p-12a ET
## 836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Elon Musk and President Trump Appear in Oval Office Together; Russia Releases American Prisoner Marc Fogel
## 837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Elon Musk announces DOGE's first official act as Trump takes over in Oval Office
## 838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Elon Musk calls for the US to 'delete entire agencies' from the federal government
## 839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Elon Musk considers 'DOGE dividend' that would send $5,000 check to all Americans following massive budget cuts
## 840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Elon Musk is proving that sunlight is fatal to bureaucracy
## 841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Elon Musk pours cold water on Trump’s $500 billion AI project
## 842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Elon Musk praises Doge efforts to cut federal workforce after judge ruling – live
## 843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Elon Musk stands accused of pretending to be good at video games. The irony is delicious
## 844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Elon Musk wants Trump to 'delete entire agencies' as part of his radical push to slash government spending
## 845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Elon Musk will now 'plug in' to also commandeer US air traffic control system, says Transportation Secretary
## 846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Elon Musk's Crackdown on USAID Splits With Project 2025 Agenda
## 847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Elon Musk's DOGE Dealt Two Legal Blows in 24 Hours
## 848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Elon Musk's DOGE lieutenant's X-rated online pseudonym leaves CNN hosts flummoxed
## 849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Elon Musk's DOGE office budget more than doubles from $6.5 to $14.4 million
## 850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Elon Musk's Trans Daughter Blasts Stonewall Website Changes
## 851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Elon Musk's role in reshaping US revealed in subtle message that shows exactly where Trump found plan for federal workforce purge
## 852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Elon Musk’s scheme for US federal employees: which jobs are going?
## 853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Elon Musk’s wrecking ball
## 854                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Elon's Nerd Army Shakes Up DC ; Federal Agencies Are Getting DOGE'd; Bureaucrat Spending Sprees Are Over; Democrats Got Caught Red-Handed; USAID Is A Massive Pool Of Waste; Biden Signs With Major Talent Agency; Democrats Revive Lame Misinformation Playbook; Liberals Call For A Trans Revolution; Trans Assassin Tried To Kill Treasury Secretary; The Democrats Are Old And Out-Of-Touch; Media Freaks Out Over Trump's Gaza Grab; Trump: Gaza Could Be Riviera Of Middle East; Trump Vows To Stabilize Middle East; Pam Bondi Confirmed As Attorney General; Tulsi And RFK, Jr. Clear Major Hurdles; Media Tries To Shame Young Conservatives
## 855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Embattled GOP Rep. Ogles  Latest Appeal To Trump? Blaming Plane Crash On DEI
## 856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Emory College Republicans, professors reflect on start of Trump's presidency - The Emory Wheel
## 857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Emory shows shaky commitment to diversity following N-word incident - The Emory Wheel
## 858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Employees fume as Trump wipes 'transgender' from CDC and deletes 'climate change' from agriculture department
## 859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Employers 'reframing not retreating' amid DEI backlash Workplace diversity Companies seek to keep benefits of schemes while placating critics, write Anjli Raval, Emma Jacobs and Taylor Nicole Rogers
## 860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Employers Ask What Constitutes 'Illegal D.E.I.'
## 861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          En el mitin de Trump previo a la toma de posesión, la música era contradictoria El cuaderno del crítico
## 862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      End of an era in the Senate
## 863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Endeavour Air slammed for 'DEI obsessed' social media after Toronto plane crash
## 864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Equal Rights Advocates: Statement - Trump's Expected Day One Gender and DEI Executive Orders Are About Control and Limiting Basic Freedoms - 'We Will Not Be Erased'
## 865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Eric Adams' Legal Battle: Indictment Fate in Question
## 866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Este no es el momento para desconectarse El Comité Editorial
## 867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Esto es lo que el presidente Trump ordenó cambiar en su primera semana
## 868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Evacuation Orders in Los Angeles County ; Trump's Migrant Crackdown; Trump Send Additional Troops To U.S. - Mexico Border; Trump Administration To Challenge Sanctuary Cities; Musk Questioning The Stargate Deal; Trump Threatens Sweeping Tariffs; Prince Harry's Victory Against Rupert Murdoch Media Empire; Remembering Kobe Bryant. Aired 6-7p ET
## 869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Even The Left's Biggest Fire Breathers Are Quietly Bending The Knee To Trump's Border, Cost-Cutting Agenda
## 870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Event revisits 1969 Main Building occupation
## 871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Everyone Loves A Good Comeback Story; Eagles Demolish Chiefs In Super Bowl; Trump Makes Super Bowl History; Hulk Hogan Joins Primetime; Trump Cheered, Taylor Booed At Super Bowl; Trump's Approval Is Higher Than Ever; America Embraces Trump; Elon Sniffs Out Government Waste; Americans Defend Waste And Fraud; Trumps Leave The Media Speechless; The Media Demands More Democrat Aggression; FBI Finds 2,400 Secret JFK Assassination Files
## 872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Everything Trump did in the first executive orders and actions of his presidency
## 873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ex-Meta director sues the tech giant, alleging a 'toxic pattern of silencing women'
## 874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Exclusive Interview with President Trump And Elon Musk
## 875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Exclusive: Disney makes changes to DEI programs and rebrands employee groups
## 876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Exclusive: FEMA firings reveal roiling tension and confusion within the Department of Homeland Security
## 877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Exclusive: Government Departments Stop Whistleblower Training
## 878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Executive Churn Slowed In 2024, Study Finds
## 879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Executive Order Suspending Refugee Program Could Leave Afghans Who Helped U.S. In Limbo; Trump Signs Executive Orders Cracking Down On Immigration; Trump Begins Second Term With Deluge Of Executive Actions; Tech Leaders, Billionaires Flock To Donald Trump's Inauguration. Aired 12:30-1p ET
## 880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Executive actions Trump has taken so far
## 881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Executive blitz concerns future educators - THE CHANTICLEER
## 882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Executive order list: What executive orders did President Trump sign and what to know
## 883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Executive orders continue after Trump's first month back in office, garnering approval and concern
## 884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Executive orders continue following Trump's first month back in office, garnering approval and concern
## 885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Executive orders, funding freezes have already shut down one of MSU's programs - and more could follow | News | msuexponent.com
## 886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Existing on Earth: a political issue? - The Spectator
## 887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Exiting UC President Drake holds final systemwide town hall, discusses staff wellness and policy changes - The UCSD Guardian
## 888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Experts reveal rating for Trump's second inaugural address
## 889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Explainer: Trump's executive order jeopardizes Murray State program - The Murray State News
## 890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Explosive New Fire In L.A. Area Could "Go Nuclear"; January 6 Leader Back At Capitol; Trump's DEI Purge; Trump Threatens Sanctions If Putin Doesn't End War In Ukraine . Aired 7-8p ET
## 891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      FAA Closes Helicopter Routes Near Reagan National Airport; Remembering The Lives Lost In The Plane-Helicopter Collision; Palestinians Return To Find Devastation In Northern Gaza; Trump Could Slap 25 Percent Tariff On Mexico And Canada Saturday; Contentious Hearings For Kash Patel, Tulsi Gabbard and RFK, Jr.; Aired 12:00-12:45p ET
## 892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    FAA Indefinitely Closes Helicopter Routes Near Reagan National Airport; Families, Friends Honor The 67 People Killed In DC Tragedy; Confirmation Of Some Of Trump's Controversial Picks In Question; Most U.S. Companies Say Diversity Is Good For Business. Aired 1:30-2p ET
## 893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      FAA Says, Six People On Board Plane That Crashes In Philadelphia; Private Medical Flight Crashes Near Philadelphia Mall; NTSB Says, All Three Bodies Recovered From Black Hawk Helicopter; CNN Follows The Midair Collision Of American Eagle 5342 And Army Helicopter; Trump Makes Baseless Claims That DEI Led To The Crash Near Reagan National Airport. Aired 10-11p ET
## 894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   FAA to make huge safety update after 67 died in DC plane crash
## 895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            FAA turned away 1,000 job applicants because of its DEI rules despite staff shortages, lawsuit claims
## 896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FAA warning system outage could cause flight delays
## 897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FACT CHECK: Did Trump Fire 3,000 Air Traffic Controllers Ahead Of Fatal Washington, DC Collision? 'A White House spokesperson denied the claim's validity in an email to Check Your Fact'
## 898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         FACT CHECK: Viral X Post Makes False Claim About Taxes, Child Support 'Trump has not publicly referenced the claim, and there is no other evidence supporting the claim'
## 899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    FACT SHEET: PRESIDENT DONALD J. TRUMP PROTECTS CIVIL RIGHTS AND MERIT-BASED OPPORTUNITY BY ENDING ILLEGAL DEI
## 900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FACT SHEET: TRUMP CONTINUES TO BLOCK HUNDREDS OF BILLIONS OF DOLLARS OWED TO COMMUNITIES ACROSS AMERICA
## 901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         FBI Finally Hands Over Names Of Employees Involved In Jan 6 Cases To DOJ
## 902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     FBI Gives Up Details Of Over 5,000 Employees Involved in Jan. 6 Cases To DOJ
## 903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       FBI warns staff they are in a 'battle' as Trump purges agents who 'did their jobs in accordance with the law' and investigated Jan 6 riots
## 904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FCC CHAIRMAN BRENDAN CARR'S ATTACKS ON DIVERSITY, EQUITY AND INCLUSION ARE RACIST, SEXIST AND AN EGREGIOUS ABUSE OF POWER
## 905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             FCC Launches Probe Into DEI Policies At One Of Corporate Media's Largest Strongholds
## 906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FEBRUARY 9, 2025 GOSAR INTRODUCES LEGISLATION TO HALT ONLINE CENSORSHIP
## 907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FEDERAL JUDGES BLOCK DEI ORDERS, EXTEND PAUSE ON NIH CUTS
## 908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            FFRF TV show hones in on Christian nationalism in Trump's first weeks
## 909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           FIVE REASONS FOR HOPE: ACTIVISM AND RESISTANCE IN 2025
## 910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FORBES: HERE ARE ALL THE MAJOR LAWSUITS AGAINST TRUMP AND MUSKAS USAID SHUTDOWN SPARKS LEGAL BATTLE
## 911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FOUR NEW EXECUTIVE ACTIONS RELATED TO MILITARY, SERVICE MEMBERS
## 912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      FTC Chairman Ferguson Announces that DEI is Over at the FTC
## 913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FTC Grants Chairman Ferguson Authority to Comply with President Trump's Orders to End DEI
## 914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   FTSE 350 firms achieve 'gender-balanced' boardrooms but lack women in top jobs
## 915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fabricated Trump post blames Chiefs' Super Bowl loss on 'DEI nonsense' | Fact check
## 916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Fact checking Vanderbilt's and VUMC's responses to executive orders about DEI - The Vanderbilt Hustler
## 917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Fact-checking Trump’s claims about DEI, Biden and the DC plane crash
## 918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Faculty Members Express Confusion and Concern as University Responds to Trump Administration - Chicago Maroon
## 919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Faculty of Arts and Sciences Diversity Dean Position Left Vacant For Nearly Two Years
## 920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Faculty wrestles to find best way to use AI in classroom - PNW Pioneer
## 921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Fail Our Children': New Data Shows Just How Badly Student Learning Suffered As Schools Doubled Down On DEI
## 922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Fake video of Trump kissing Musk's feet blasts in HUD building: "LONG LIVE THE REAL KING"
## 923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Family weekend 2025 offers loved ones a glimpse into students' lives Login or create an account
## 924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Fans slam SNL's sour Trump assassination joke: 'When am I supposed to laugh?'
## 925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Far Left Nonsense': Iraq War Veteran Explains Impact Of Trump's Executive Orders On Military DEI Initiatives
## 926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Far-right pundit Matt Walsh rails against women in law enforcement: 'It's an absurdity!'
## 927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Fate of DEI programs hang in the balance, schools threatened to comply or lose federal funding
## 928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Fauci Museum Exhibit Funding Canceled: DOGE
## 929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Feb 27 Consumers plan 24-hour spending blackout to protest prices, policies
## 930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Fed Vice Chair Philip Jefferson Returns to Swarthmore to Discuss Labor Markets
## 931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Fed's Interest Rate Isn't What You Should Focus On
## 932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Federal Bureaucrats Ordered To Remove Pronouns From Email Signatures
## 933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Federal Buyout Deadline Delayed; Democrats Blast Alleged Shadow Government; Another Blake Lively Lawsuit; President Trump Doubles Down on Gaza Takeover; Immigration Crackdown in Colorado ; Interview With Gov. Greg Abbott (R- TX )
## 934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Federal Buyout Offer Paused; White House Wants Faster Pace of Migrant Arrests; Elon Musk Continues Gaining Access to Federal Government Systems. Aired 1-1:30p ET
## 935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Federal DEI Staff Put on Leave; ICE to Use Common Sense with Migrant Arrests; John Sandweg is Interviewed about Deportations; Rare Storm Blankets South; DOJ Sidelines Workers. Aired 9-9:30a ET
## 936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Federal DEI employees to be placed on paid leave
## 937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Federal Employees Faces Mass Layoffs Over Buyout Deadline; Philippine Vice President Impeached at the Lower House Level; Former USAID Leaders Slammed Trump's Plans to Dismantle the Agency; Ukraine Now Affected by the U.S. Foreign Aid Freeze. Aired 3-4a ET
## 938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Federal Financial Freeze May Affect Federal Agencies
## 939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Federal Freeze on Funding That Caused Student Concern Becomes Rescinded
## 940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Federal Funding Freeze: Students React to Temporary Pause of Federal Aid
## 941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Federal Funding Frozen?
## 942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Federal Government recognizes two sexes only - THE GANNON KNIGHT
## 943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Federal Grants Freeze Rattles Clark - The Scarlet
## 944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Federal Judge Blocks Trump USAID Leave Plan; Trudeau Says Trump Threat To Annex Canada "Is A Real Thing"; Trump Says Musk will Review "Just About" Every Federal Agency. Politico: Trump Considering Blagojevich For Ambassador Post; Actress Debra Messing On Her Pro- Israel Activism; Federal Judge Temporarily Blocks Trump From Putting At Least 2,200 USAID Workers On Leave. Aired 5-6p ET
## 945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Federal Judge Blocks Trump’s Freeze of Federal Grant Funds
## 946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Federal Judge Clears Way For More Mass Firing; Some Once- Hawkish Republicans Soften Stance On Ukraine ; Sen. Markwayne Mullin, (R- OK ), Is Interviewed About Ukraine , Kash Patel; Senate Confirms Kash Patel To Lead FBI In 51-49 Vote; 11-Year-Old Texas Girl Dies By Suicide After Classmate Said ICE Would Deport Her Parents, Family Says; WH Hosts Black History Month Reception Amid Crackdown On DEI; West Texas Measles Outbreak Hits 58 Cases. Aired 5-6p ET
## 947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Federal Judge Halts Dismissal Of Employees Working On DEI From Intel Agencies
## 948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Federal Judge Hits Pause on Trump's Push to Halt Federal Funding for DEI Programs
## 949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Federal Judge Receives No Answers from Justice Department to Questions about Organizational Structure of Department of Government Efficiency; Republican Congressman Experiences Contentious Town Hall with Constituents after Mentioning Elon Musk. Aired 8-8:30a ET
## 950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Federal Judge Threatening Trump Admin With Criminal Charges Over Spending Freeze Used To Be A Major Dem Donor
## 951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Federal Mental Health Agency Scrubs Website Of Resources Created By Transgender Activists
## 952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Federal Policies Set A New Tone For Business
## 953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Federal Title IX changes will not impact Wilkes' own policy - The Beacon
## 954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Federal Worker Buyouts; Trump Posts New Details Of His Proposed U.S. Takeover Of Gaza; Accident Investigators Brief Lawmakers On Midair Collision; Thousands Killed In Democratic Republic Of Congo; Nation Sees Long Road Ahead As It Looks To Rebuild; New Bird Flu Strain; Arab-Americans React To Gaza Takeover Proposal. Aired 12-1p ET
## 955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Federal actions raise funding concerns for CSU, nationwide academic research - The Rocky Mountain Collegian
## 956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Federal agencies begin removing DEI guidance from websites in Trump crackdown
## 957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Federal agencies told to implement transgender bathroom ban as Trump's DEI attacks continue
## 958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Federal agencies told to move to eliminate DEI offices and positions within 60 days
## 959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Federal budget cuts endanger over $6 million in college's research grants
## 960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Federal directive gives MSU until Friday to cut all 'race-based' programs
## 961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Federal employees given deadlines to name DEI colleagues - or risk 'adverse consequences'
## 962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Federal employees ordered to remove pronouns from their email signature and urged to find 'higher productivity jobs'
## 963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Federal freeze order rescinded, could impact University funding if implemented
## 964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Federal funding cuts affect CWRU student, faculty researchers - The Observer
## 965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Federal funding freeze brings confusion, concern and community to UH
## 966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Federal funding freeze causes chaos among local San Diego officials
## 967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Federal government suspends funding
## 968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Federal judge temporarily blocks Trump DEI executive orders
## 969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Federal money for public health, medical research in Oregon at risk under Trump orders
## 970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Federal money for research in Tennessee in limbo
## 971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Federal student loans, Pell Grants not tied up in funding pause, but will be reviewed
## 972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Federal workers free to ignore Elon Musk email ultimatum, US personnel office says – as it happened
## 973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Federal workers have to make their decisions on buyout offers today
## 974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Federal workers ordered to report efforts to ‘disguise’ DEI programs or face ‘consequences’
## 975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Female NTSB head stuns the press with her unexpected response to Trump's claim DEI caused the crash
## 976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Fentanyl Crisis; Interview With Rep. Jeff Van Drew (R- NJ ); Pete Hegseth Visits Border; Trump Delays Tariffs on Canada and Mexico ; President Trump Welcomes Florida Panthers to White House
## 977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Few schools have updates on their evaluations of Trump's DEI executive order
## 978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Few think government should ignore DEI, even if it grows the economy
## 979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Fiery moment NBC's Peter Alexander clashes with new WH press secretary Karoline Leavitt over Trump's mass deportation and spending freezes
## 980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Fifty years ago today, Mrs Thatcher became Tory leader. Here’s how her legacy has been ripped up
## 981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Fighting talk from Trump as he sets out his plans In his inaugural address, the president took aim at everyone from bureaucrats to migrants. What will his words mean in practice, asks David Charter
## 982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Finding Our Way Through the Flood Zone: Combating Fear and Distraction in the Trump Era
## 983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Fired Federal Employee Whines That Trump Administration Cuts Are 'Inhumane'
## 984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Fired VA health workers reinstated, but new staff don't trust Trump and Musk
## 985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Firings, freezes and layoffs: A look at Trump's moves against federal employees and programs
## 986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      First Thing: Blacklists naming ‘woke’ federal workers were funded by Project 2025 thinktank
## 987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     First Thing: Donald Trump calls China’s DeepSeek AI chatbot a ‘wake-up call’
## 988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          First Thing: Fears grow for Israel -Gaza ceasefire as Netanyahu threatens to resume war
## 989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         First Thing: Trump baselessly blames ‘diversity’ and Democrats for deadly DC plane crash
## 990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       First female Coast Guard commandant ousted
## 991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 First woman to lead Coast Guard was forced out of residence with three hours notice, report says
## 992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           First-generation and proud: Why your degree matters now more than ever
## 993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 FirstFT: Ceasefire under threat after Hamas accused of violation
## 994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                FirstFT: Germany ’s Friedrich Merz pledges ‘independence from US’
## 995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   FirstFT: Marco Rubio arrives in Saudi Arabia for Ukraine talks
## 996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 FirstFT: Trump pushes for more control of independent regulators
## 997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FirstFT: Trump’s trade war rocks global markets
## 998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FirstFT: US oil output growth to slow despite Trump’s ‘drill, baby, drill’ plan
## 999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Fitness centers expand hours to meet growing demand - PNW Pioneer
## 1000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Five conclusions from SGA's annual State of QUnion - The Quinnipiac Chronicle
## 1001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Flight Data Appears To Show Black Hawk Off Course And 100 Feet Above Maximum Allowed Altitude; Trump To Impose Tariffs On Mexico , Canada & China Tomorrow. Aired 4-5p ET
## 1002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Flight Data Appears To Show Helicopter Above Altitude, Off Course; U.S. Air Traffic Control System Under Scrutiny; More Than A Dozen January 6 Prosecutors Fired; More Victims Of Deadly Midair Collision Being Identified. Aired 6-7p ET
## 1003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Florida Sues Target Over Pride Merchandise As More States Take Legal Action Against DEI
## 1004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Florida gets revenge on Target over tuck swimsuits and DEI obsession that sparked a culture war
## 1005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Florida takes aim at Target's 2023 Pride collection in a lawsuit over the retailer's DEI initiatives
## 1006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Flying Becoming Less Safe in 'Disturbing Trend,' Ex-FAA Investigator Warns
## 1007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Following President Trump's Executive Orders, Haverford Affirms Commitment to Community Diversity and Safety - The Bi-College News
## 1008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For BLK & Bold, Target's DEI retreat is "disappointing"
## 1009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For the sake of the students and the community, GRCC must commit to DEI
## 1010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Forbes Daily: A Massive AI Infrastructure Project Boosts Oracle Stock
## 1011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Forbes Daily: Colombian Trade Tariffs On Hold After Brief Standoff
## 1012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Forbes Daily: DeepSeek s  Wake-Up Call  And Nvidia s Historic Plunge
## 1013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Forbes Daily: DeepSeek s AI Model Raises National Security Concerns
## 1014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Forbes Daily: Jamie Dimon Defends DEI Efforts Amid Trump s Crackdown
## 1015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Forbes Daily: New Musk Directive To Feds Sparks Confusion And Pushback
## 1016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Forbes Daily: Nvidia Shakes Off DeepSeek Concerns With Robust Earnings
## 1017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Forbes Daily: Outcry After Trump Proposes U.S. Take Over  Gaza Strip
## 1018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Forbes Daily: Questions About DOGE Multiply As Justice Department Steps In
## 1019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Forbes Daily: Tesla s China Reliance Poses A Major Conflict For Musk
## 1020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Forbes Daily: Trump Blasts Fed As Agency Pauses Interest Rate Cuts
## 1021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Forbes Daily: Trump Says Mexico And Canada Tariffs On Deck Next Week
## 1022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Former American Airlines captain ‘disgusted’ by Trump crash remarks
## 1023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Former Costco Executive Hits Back at DEI Criticism: 'Who We Are'
## 1024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Former GOP Gov. Tim Pawlenty Tells Van Jones About 'Advise And Consent' In Debate About Kash Patel Confirmation
## 1025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Former Kenyan President Rips African Leaders Over Trump's Aid Freeze
## 1026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Former NOAA Officials Warn That Job Cuts Could Risk Lives and Livelihoods
## 1027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Former Obama Fundraiser Praises Donald Trump's 'Competency'
## 1028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Foundation for Government Accountability: Killing DEI Means the American Dream is Available to Everyone
## 1029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Founder Of Pro-DEI Group At DOJ Has A New Gig Undermining Trump From The Outside
## 1030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Fox News Host Says Only People Who 'Are Up In Arms' About Trump, Musk Cuts Are 'Unionized Government Bureaucrats'
## 1031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Fox News host Jesse Watters says DOGE should spare veterans after hearing his friend's job is on the line
## 1032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Fox News hosts insist Trump played 'consoler-in-chief' after he linked deadly DC crash to DEI
## 1033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Fox News removes pro-DEI language from job postings after reporter's inquiry
## 1034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Fox News' Jesse Watters Begs Trump to Save Job of Pal Who Is Victim of Musk's DOGE Cuts
## 1035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Fox and Friends say federal workers should take after Trump and not Biden 'who was in bed by 4'
## 1036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Fox host Jesse Watters turns on Trump and DOGE for 'callous' cuts after his veteran friend got the chop
## 1037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Freed Women Hostages Handed Over To Israeli Forces; U.S. Freezes Almost All Foreign Aid Effective Immediately; Pete Hegseth Confirmed As U.S. Defense Chief In Tiebreaker Senate vote; White House Says Migrant Deportation Flights With Military Aircraft Have Begun. Buses Arrive Carrying Palestinian Prisoners in West Bank; Federal Agencies in the U.S. Told to Eliminate DEI Positions Within 60 Days; Trump Tours Disaster Areas in California and North California . Aired 6-7a ET
## 1038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Freeze On Federal Grants And Loans Takes Effect At 5 P.M. Today; WH: NJ Jones That Caused Hysteria Were "Not The Enemy"; ICE: 1,100-Plus Arrested In Immigration Enforcement On Monday. Aired 2- 2:30p ET
## 1039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         From forklift driver to CEO: Meet Costco 's Ron Vachris
## 1040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       From gay clubs to Maga anthem: the absurd, contested history of the Village People’s YMCA
## 1041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       From the Community | The dangers of institutional acquiescence Login or create an account
## 1042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              From the Community: Stanford must oppose Jay Bhattacharya's appointment as NIH director Login or create an account
## 1043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Frosh 15' isn't real, but prof. urges starting healthy habits - PNW Pioneer
## 1044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Full List of Democrats Who Voted To Confirm Doug Collins as VA Secretary
## 1045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Full List of States Suing Donald Trump Over Federal Funding Freeze
## 1046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Full List of US States Setting Up Their Own 'DOGE'
## 1047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Full impact of pause to federal aid remains unclear, won't affect Pell grants  | The Daily Campus Centered Divider Line
## 1048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Full-scale assault': Campus reacts to Trump investigation into university DEI programs | Campus | dailycal.org
## 1049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Future of DEI uncertain as Trump takes office again
## 1050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Future public education faces uncertainties - The Murray State News
## 1051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GARAMENDI STATEMENT ON TRUMP'S REACTION TO DCA AVIATION CRASH
## 1052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GLAAD STATEMENT AND FACTS FOR REPORTERS ON LATEST DISCRIMINATORY AND INACCURATE EXECUTIVE ORDER TARGETING TRANSGENDER AMERICANS
## 1053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             GOP Kentucky Senate candidate knocks McConnell for Trump ‘no’ votes
## 1054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GOP Senator Says 'Permanent Washington's Worst Nightmare' Has Arrived, Predicts More Govt Bloating Will Be Cut
## 1055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GOP Senators Push Back on Musk Gutting Federal Workforce; Several Agencies Tell Employees Not to Respond to Musk Email; Zelenskyy Speaks Out on Possibility of Deal with U.S. ; Vatican: Pope in Critical Condition with Mild Kidney Failure. Aired 6-6:30a ET
## 1056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GOP pollster says Trump voters ‘tired’ of being accused of racism
## 1057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GOP rep says he supports ‘purging’ of State Department
## 1058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GOP senators caught off guard by Trump DEI comments after plane crash
## 1059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GOVERNOR STITT DELIVERS 2025 STATE OF THE STATE ADDRESS
## 1060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     GRANTS TO SPLC AND DEI DEMONSTRATE FEDERAL SPENDING AGAINST TAXPAYER VALUES
## 1061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GSK proposes raising chief’s pay to as much as £21.6mn a year
## 1062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GSK’s boss Emma Walmsley’s pay could hit £21m under US parity
## 1063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GUEST ROOM | ACP Statement on Demands to Dean Marla Love
## 1064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GV administration should protect students from Trump's agenda
## 1065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Gallery: Students respond to federal DEI policies - The Rocky Mountain Collegian
## 1066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Gas hidden within mountains, a budget iPhone, how to avoid pneumonia: Catch up on the day's stories
## 1067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Gay combat veteran reveals why Trump was RIGHT to ban transgender troops in the military
## 1068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Gayle King asks why there aren't more 'people of color' at Trump swearing-in
## 1069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Gene Hackman had likely been dead nine days when found: sheriff
## 1070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Georgia Southern President, Provost Address Proposed DEI Rollbacks Ahead of Looming Deadline - The George-Anne Media Group
## 1071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Georgia Southern Responds to Federal Order Targeting DEI Programs Nationwide - The George-Anne Media Group
## 1072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get this numbskull off my show!' Moment furious LBC host Iain Dale orders US columnist is taken off air during row over Donald Trump's claims that diversity hiring was to blame for Washington DC plane crash
## 1073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Giorgia Meloni’s supremacy threatened by €10bn banking merger
## 1074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Goldman Sach says it's just following the law as it strips out references to DEI
## 1075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Goldman Sachs Scrapping Policy That Said Company Wouldn't Take Businesses Public That Had All White, Male Boards
## 1076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Goldman Sachs abandons IPO board diversity pledge
## 1077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Goldman Sachs drops black bankers hiring target for London office
## 1078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Goldman Sachs drops its diversity target in London
## 1079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Goldman Sachs explains axing DEI rule which has 'served its purpose'
## 1080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Goldwater Institute Issues Commentary to Federalist: Trump's Executive Orders Are Only The First Step In Defeating DEI
## 1081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Goldwater Institute: Arizona Speaker of the House Puts State Constitution on Track to Banish DEI
## 1082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Goldwater Institute: Oklahoma Must Stop Forcing Students Into DEI Classes
## 1083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Google Calendar no longer includes start of Black History Month, Pride Month
## 1084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Google Calendar removes Black History Month and Pride Month because keeping them is 'unsustainable'
## 1085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Google Calendar users no longer see default entries for events like Pride, Black History Month
## 1086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Google Maps Says  Gulf Of America  While Google Calendar Drops Pride, Black History Month: What To Know
## 1087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Google Removes Pride Month from Calendar: What to Know
## 1088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Google axes diversity hiring targets as it reviews DEI
## 1089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Google becomes the latest tech giant to fall in line with Trump by ending DEI policies
## 1090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Google dates and Deloitte pronouns are latest casualties in war on
## 1091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Google defends scrapping AI pledges and DEI goals in all-staff meeting
## 1092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Google ends diversity hiring goals as it reviews DEI programs
## 1093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Google ends minority hiring goals, reviewing DEI efforts
## 1094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Google is latest big company to ditch diversity targets
## 1095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Google scraps DEI hiring targets as big tech bends to Trump
## 1096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Google scraps DEI targets as big tech bends to DOGE, Trump, and Elon
## 1097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Google scraps diversity hiring goals and cites Trump’s DEI orders
## 1098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Google scraps its diversity hiring goals as it complies with Trump's new government contractor rules
## 1099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Gov agency caught using sneaky tactic to get around Trump's DEI purge
## 1100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Gov. Braun discusses inflation, safety, healthcare in first state of the state address - Indiana Daily Student
## 1101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Gove's sycophantic defence of the US president is pitiful
## 1102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Government agency is caught deploying sneaky tactic to get around Trump's anti-woke purge
## 1103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Government watchdogs fired by Trump are suing to get their jobs back
## 1104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Governor Abbott Delivers 2025 State Of The State Address
## 1105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate Student Council voice support for Bridge funding, concerns for DEI programs Login or create an account
## 1106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grammys 2025 highlights: Winners and performances as Beyoncé takes home Album of the Year award with Cowboy Carter
## 1107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Grammys 2025: Beyonce Finally Wins Album Of The Year After Being Shut Out For Years
## 1108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Greg Abbott's Threat Rebuked by Largest Texas Newspaper: 'Demagogic'
## 1109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Gregory Washington holds second town hall as Mason President
## 1110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Grim search for plane crash bodies as Trump doubles down
## 1111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Grinnell College plans to retain DEI under threats of federal funding loss - The Scarlet & Black
## 1112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Grinnell residents to vote on tax levy to build new elementary school - The Scarlet & Black
## 1113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Guess who's back? - THE GANNON KNIGHT
## 1114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HART: DC Ongoing Super Bowl - Patriots Versus Stealers
## 1115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     HART: DEI - End Of An Error
## 1116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HART: It Takes Juan to Know Juan
## 1117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HAWAII A.G. LOPEZ ISSUES MULTISTATE GUIDANCE FOR BUSINESSES ON DIVERSITY, EQUITY, INCLUSION AND ACCESSIBILITY EMPLOYMENT INITIATIVES IN THE WORKPLACE
## 1118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HERE COMES THE LEGAL CAMPAIGN AGAINST "WOKE" EMPLOYERS
## 1119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         HHS Secretary RFK Jr. Calls Measles Outbreak "Not Usual"; Protesters Flood Republican Town Halls Over Job Cuts; Actor Gene Hackman Found Dead Alongside Wife In New Mexico Home; Supreme court Signals It Will Make It Easier For Americans To File "Reverse" Discrimination Lawsuits. Aired 6:30-7a ET
## 1120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HIRONO, COLLEAGUES DEMAND WRIGHT FOLLOW THE LAW, PROTECT OFFICE OF ENERGY JUSTICE AND EQUITY
## 1121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HIRONO, TOKUDA CONDEMN TRUMP'S FEDERAL FUNDING FREEZE
## 1122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HIV, transgender care, climate change and other federal websites go dark
## 1123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HMRC staff given one day off a week to promote ‘gender ideology’
## 1124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HORACE COOPER: PETE HEGSETH IS THE LEADER OUR MILITARY NEEDS
## 1125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               HOUSMAN: Conservatives Are Quickly Creating Their Own DEI Problem
## 1126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HOUSTON KEENE: The Bureaucratic Meltdown Has Already Begun
## 1127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         HOW THE TRUMP ADMINISTRATION CAN OBSTRUCT FUTURE GOVERNMENT ATTEMPTS TO REESTABLISH AFFIRMATIVE ACTION AND DEI POLICIES
## 1128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HOW TO ADJUST YOUR DEI INITIATIVES UNDER TRUMP'S NEW GUIDELINES
## 1129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HOW TRUMP'S EEOC, NLRB FIRINGS COULD IMPACT RECENT LABOR RULINGS
## 1130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HYDE-SMITH JOINS BILL TO CODIFY TRUMP ANTI-DEI EXECUTIVE ORDER
## 1131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HYDE-SMITH MOVES TO RESTORE MERIT-BASED HIRING IN THE FEDERAL GOVERNMENT
## 1132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hallock tackles questions on DEI, federal loans at student forum
## 1133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hamas Expected to Release Four More Israeli Hostages Soon; Trump administration Fires Top U.S. General, Navy Chief; Accused CEO Killer Luigi Mangione Appears in Court; Red Cross Vehicles Arrive ahead of Gaza Hostage Handover. Aired 4-5a ET
## 1134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hamas Releases Israeli Hostages, Returns Remains Of Shiri Bibas; Pentagon Announces It Plans To Fire 5-8 Percent Of Civilian Workforce; U.S. Proposes Draft U.N. Resolution On War In Ukraine ; Federal Judge Gives Go-Ahead For Trump To Gut USAID. U.S. Federal Judge Clears the Way for Dismantling of USAID; Associated Press Sues Trump Administration After Being Blocked from White House Briefings; Pentagon Announces Plans to Fire 5-8 Percent of Civilian Workforce. Aired 6-7a ET
## 1135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hamas Releases Two of Six Israeli Hostages; Trump administration Fires Top U.S. General, Navy Chief; U.S. Special Envoy Kellogg Calls Ukrainian President Volodymyr Zelenskyy "Embattled and Courageous Leader"; Accused CEO Killer Luigi Mangione Appears in Court; Hamas Expected to Release Four More Israeli Hostages Soon. Aired 3-4a ET
## 1136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hamas Returns Bodies Said To Include Mom And Sons; DOGE Eyes $1 Trillion In Potential Savings; Fireworks Expected At USA Versus Canada Hockey Final; Trump Admin Marks First Month Back in Office; Trump's Pick to Shake Up the FBI Confirmed as Director; Trump Order Targets Taxpayer Money for Migrants
## 1137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hamilton meets 'King Trump' as Lin-Manuel Miranda makes surprise SNL appearance in hilarious cold open as Timothée Chalamet is blasted for Jimmy Carter joke: 'Too soon'
## 1138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Happy Black History Month?; Trump Ramps Up Trend Of Blaming "DEI Hires" For Disasters; The True Intent Behind "DEI" That Its Critics Are Missing. Rep. Gregory Porter (D-IN), Is Interviewed About IN Gov. Leaves Funding For Martin Univ. Out Of Budget Proposal; Debate Over Boycott After Target Dropped Diversity Goals; First Complete Opera By A Black American Premieres After 130 Plus Years. Aired 8-9a ET
## 1139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Harris County Attorney Christian D. Menefee: A Fierce Advocate for Justice Amid President Trump's Disastrous Policy Shifts
## 1140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Harvard Dental School Abruptly Fired Its Head of DEI in December
## 1141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Harvard President Garber Says Diversity Is a Condition of Academic Excellence at Annual EDIB Forum
## 1142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Harvard Schools Tell Researchers To Comply With Stop-Work Orders, Continue Other Federally Funded Projects
## 1143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Harvard's Federal Funding Is Under Fire. Here's What's at Risk.
## 1144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Harvard's Sexual Harassment Policies Adapt to Trump Administration
## 1145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Has Pete Buttigieg Removed Pronouns From His Bio? What We Know
## 1146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Has US Coast Guard Commandant Linda Fagan Been Fired? What We Know
## 1147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hawai?i LGBT Legacy Foundation to Host Rainbow Town Hall on February 20th
## 1148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hawaii A.G. Lopez : Joint Statement From 13 Attorneys General - President Trump is Misleading the American People on Purpose of Diversity, Equity, Inclusion and Accessibility Initiatives
## 1149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He watches Fox, I watch CNN. Secret to our relationship? Know when to stop talking. | Your Turn
## 1150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Head of Social Security abruptly resigns after clash with Elon Musk over DOGE's access to sensitive data
## 1151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Health Resources Vanish Following D.E.I. and Gender Orders
## 1152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hearing Wrap Up: America -First Foreign Aid Protects U.S. Interests at Home and Abroad
## 1153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Heating up: Climate change policies under Trump - The DePaulia
## 1154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hedge funds bet billions on market crash in Trump’s America
## 1155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hegseth Arrives for First day as Defense Secretary; White House and Colombia Reach Deal; Immigration Crackdown Intensifying; Trump Fires Inspectors General. Aired 9-9:30a ET
## 1156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hegseth Confirmed As Secretary Of Defense
## 1157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hegseth Faces Backlash After Proposing Pentagon Cuts To Fund Trump's Agenda
## 1158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hegseth Meets Netanyahu After Trump Gaza Comments; Musk Turns To Young Techies To Slash Fed Budget; Trump Renews Pressure On Iran , Calls For Nuke Deal; Trump To Sign Order On Pretecting Women's Sports
## 1159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hegseth Targets D.E.I. in Early Directive at the Pentagon
## 1160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hegseth commits to Pentagon passing clean audit within 4 years
## 1161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hegseth could fire some senior generals and admirals soon, sources say
## 1162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hegseth directs Pentagon to find $50 billion in cuts this year to fund Trump military priorities
## 1163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hegseth dismisses question about ‘underqualified’ Trump Joint Chiefs pick
## 1164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hegseth heckled and booed by military families at pro-DEI protest in Germany
## 1165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hegseth nixes 'identity month' celebrations at DOD on eve of Black History Month
## 1166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hegseth orders $50 billion of defense budget redirected from Biden to Trump priorities
## 1167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hegseth orders Pentagon to make $50 billion in budget cuts to spend on Trump priorities
## 1168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hegseth orders military to find $50B to shift to Trump priorities
## 1169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hegseth says Trump 'deserves' to hand-pick advisers in defense of Pentagon firing spree
## 1170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hegseth vows more Trump actions on military
## 1171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hegseth welcomes DOGE's "keen eye" to massive Pentagon budget
## 1172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hegseth's Pentagon Shakeup Could Remove Female Military Leaders
## 1173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hegseth’s proposed Pentagon cuts, firing of generals: What to know
## 1174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Here Are The Biggest DOGE Hoaxes And Inaccuracies As $8 Million Canceled ICE Contract Listed At $8 Billion
## 1175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Here are Trump’s biggest moves so far to reshape government
## 1176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Here’s How President Trump Shifted Policy in His First Week
## 1177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Heritage Action: Congress Must Dismantle DEI
## 1178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Heritage Foundation Strongly Supports President Trump's Military Leadership Changes at the Pentagon
## 1179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Higher Education Officials, Restaurant Workers, City of Baltimore Ask Court to Pause Trump Administration Anti-DEIA Executive Orders
## 1180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Higher education groups sue Trump over anti-diversity orders
## 1181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HillmanTok University – a 'virtual HBCU' – is growing as Trump dismantles federal DEI
## 1182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hillmantok is TikTok's own HCBU
## 1183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hollywood delivers a brutal response to Donald Trump's gender ideology crackdown as Mexican transgender musical Emilia Pérez and intersex drama Conclave run riot during the 97th annual Academy Award nominations
## 1184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hollywood on defensive as Donald Trump’s anti-DEI crusade targets creatives
## 1185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hollywood should resist Trump pressure, says director Todd Haynes
## 1186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Holy Smokes': CNN's Harry Enten Breaks Down Just How Much More Popular Trump Is In Second Term
## 1187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Homeland Security Secretary Kristi Noem Joins Federal Agents for Immigration Crackdown in New York ; Immigrant Communities in Fear Amid Federal Raids. Aired 4:00-5p ET
## 1188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hope is not Passive:' Students Celebrate Black History Month
## 1189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hostile activists never learnt art of persuasion As the tide turns on woke causes, it's clear they were driven by intimidation instead of argument
## 1190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                House Armed Services Committee Ranking Member Smith Issues Statement on President Trump Response to Air Disaster
## 1191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    House Budget Committee Ranking Member Boyle Issues Statement on White House Attempt to Pause Federal Funding
## 1192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           House DOGE Committee Holds War On Waste Hearing; Trump Says, Talked To Putin, Zelenskyy About Ending War; Four FEMA Employees Fired For Migrant Hotel Payments; Number Of Border Gotaways Plummets; Senate Confirms Gabbard As Director Of National Intelligence; Trump, Musk Defend Effort To Slash Government Waste
## 1193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                House Democrat: Colleagues need to focus on ‘reestablishing our own credibility’
## 1194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              House Democrats Denied Entry To Education Department; Trump Slams Democrats In Fiery Response; Trump Revokes Joe Biden's Security Clearance; Backlash On The Left To Musk And 'DOGE' Activities; Air Patrols Help Secure New Orleans Skies; Increased Security After New Orleans Terror Attack; Trump Expected To Attend Super Bowl LIX; Democrats Push For 48-Hours Wait Period; HHS Nominee RFK JR. Advances To Full Senate Vote
## 1195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          House Education & Workforce Committee Chairman Walberg on Trump's DEI Executive Orders
## 1196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            House Financial Services Committee Ranking Member Maxine Waters Sends Letter to Trump Administration Blasting Illegal Termination of Diversity, Equity, Inclusion Offices, Positions
## 1197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      House Foreign Affairs Committee Ranking Member Meeks Condemns Trump Administration's Rollback of Diversity & Inclusion at State Department
## 1198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               House GOP passes first major test
## 1199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               House Judiciary Committee Ranking Member Raskin Issues Statement on Donald Trump's Baseless Scapegoating After Tragic Plane Crash
## 1200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       House Judiciary Subcommittee Issues Testimony From California Policy Center Director Ring
## 1201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       House Oversight & Committee Chairman Comer Applauds President Trump Executive Orders to Bring Accountability, Reform to Federal Workforce
## 1202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         House Oversight & Government Reform Subcommittee Issues Testimony From Foundation for Government Accountability Senior Director Whitson
## 1203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                House Republican blasts Beyoncé as ‘DEI’ winner at Grammy Awards
## 1204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 House Veterans' Affairs Committee Ranking Member Takano Issues Statement on Executive Orders Impacting Veterans
## 1205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        How America quietly funded Iraqi Sesame Street for years
## 1206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How American Airlines communicated through tragedy
## 1207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How Bill Clinton Shrunk the Federal Government 30 Years Before DOGE
## 1208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         How CFOs Became Companies  Storytellers
## 1209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 How Challenges to DEI Will Affect Public and Private Universities - The Minaret
## 1210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How Corporate Approaches To DEI Are Evolving
## 1211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How DEI, cancel culture and bad boards are killing our universities
## 1212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       How Directives By Trump Echo Project 2025
## 1213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How Donald Trump Changed Air Traffic Control Standards in First Term
## 1214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How Donald Trump Won the Super Bowl
## 1215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How Donald Trump's Executive Orders Compare to Project 2025
## 1216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         How Elon Musk and the Right Are Trying to Recast Reporting as ‘Doxxing’
## 1217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How Florida Is Enforcing Donald Trump's Agenda
## 1218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How Happy Are Kamala Harris Voters With Donald Trump? What Poll Shows
## 1219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                How Leonard Leo became Trump's most powerful weapon in his religious war on woke
## 1220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          How Many Transgender Personnel Serve In U.S. Military?
## 1221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How Marquette continues to navigate Trump's executive orders regarding DEIA
## 1222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          How Obama's FAA used a skewed multiple-choice quiz to prioritize DEI applicants and bar the brightest from air traffic controller jobs
## 1223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How Philadelphia schools are responding to Trump admin's DEI warning
## 1224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How President Donald Trump's executive orders will impact students
## 1225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How Republicans won the DEI fight: 'There's this sort of white male grievance they're catering to'
## 1226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               How Silicon Valley learned to stop worrying and love the Pentagon
## 1227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         How To Watch Donald Trump's First Sit-Down Interview Since Inauguration
## 1228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How Trump administration is begging federal workers to take the 'buyout' and visit their 'dream destination'
## 1229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How Trump and Musk have shaken the federal workforce
## 1230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How Trump rocked Colorado in his first 12 days
## 1231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How Trump will immediately seek to dismantle Biden's sprawling federal DEI programs
## 1232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               How Trump's "black box" limits outside influences
## 1233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         How Trump's DEI Crackdown Could Affect Higher Education
## 1234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How Trump's DEI Executive Orders Could Affect UCCS
## 1235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How Trump's DEI and transgender attacks affect HIV and AIDS community
## 1236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How Trump's DEI order could upend hospitals' workforce efforts
## 1237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How Trump's Executive Orders Impact Campus: A Panel With Centre Staff
## 1238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How Trump's return-to-office push impacts Colorado 's federal workers
## 1239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How Trump’s war on DEI is changing corporate culture
## 1240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How Will Swarthmore Fit Into Trump's Higher Education Havoc?
## 1241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How advocates are stepping up for Black History month as federal agencies scale back
## 1242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How city council candidate Ross Nusser looks to give back to his hometown - The Daily Iowan
## 1243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How could ESU's Division of Diversity, Equity and Inclusion be affected by federal targets on DEI?
## 1244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How do Democrats harness #DarkWoke?
## 1245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How is OU responding to anti-DEI executive orders? - The Oakland Post
## 1246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How many AI agents does it take to change your job?
## 1247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How the China tariffs will impact what US consumers pay for things
## 1248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      How the EU wants to tweak its merger rules to boost growth
## 1249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How the U is Celebrating Black History Month
## 1250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How the slash-and-burn tactics Musk brought to Washington backfired at Twitter
## 1251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How to give yourself some time back
## 1252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How to understand Elon Musk
## 1253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How to understand Musk's frantic offensive Opinion US politics
## 1254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How warnings about Black Hawk helicopter's safety systems date back decades and have been linked to dozens of deaths
## 1255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How will Trump's executive orders reshape higher education?
## 1256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How will history judge the start of Donald Trump 2.0?
## 1257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Human Rights First Condemns Rights-Violating Executive Orders
## 1258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Human Rights First: Senate Should Reject the Nomination of Pete Hegseth for Defense Chief
## 1259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hundreds gather to protest OU's compliance with SB 1
## 1260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hundreds of Americans Get Surprise Electric Bill After Trump Change
## 1261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I Didn't Watch A Single Second': 'The View' Co-Hosts Struggle To Process Trump 's Return To Power
## 1262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I Don't Care What Polls Say': Joe Scarborough Demands Dems 'Defend' USAID From Shutdown In Two-Minute Rant
## 1263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I NEVER THOUGHT TRUMP WOULD EAT MY FACE
## 1264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I TOOK ACTION TO UPHOLD THE RULE OF LAW AND PROTECT VERMONT
## 1265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I don't think we need to reduce the money': Veterans sound off on DEI executive order
## 1266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I would never invest in 'backward' Britain , says Trump ally
## 1267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I would never invest in Starmer’s ‘backwards’ Britain , says major Trump ally
## 1268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I'm a Labour girl but the Tories got it right on diversity' June Sarpong The TV host-turned-inclusivity champion believes DEI policies will survive Trump's ban, and that Britain is a more tolerant country than America . By Eleanor Mills
## 1269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I'm a Pilot's Wife. Plane Crash Speculations Are Insensitive and Disrespectful
## 1270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I'm already done with version 2.0': Inside federal agencies where workers fear for jobs under Trump 's administration
## 1271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I'm an Army vet with my dream job at the VA. I feel targeted by anti-DEI efforts and the new buyout offer - but I won't quit.
## 1272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I've written a book on the science of racism - this is what facts say about Trump's war on DEI
## 1273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ICE Says Hundreds of Illegal Immigrants Arrested in Recent Days; Powerful New Chinese AI Tech Shocks Experts, Disrupts Markets. Aired 3-3:30p ET
## 1274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ICE can visit USF. Experts say students should know their rights.
## 1275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ICYMI from Bloomberg: "Markwayne Mullin's Personal Bond Propels Him to Trump Confidant"
## 1276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ICYMI | Secretary Scott Turner on Fox & Friends - "DEI is Dead at HUD."
## 1277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ICYMI, Rep. Rogers: Our Warfighters Will Be Focused on Lethality, Capability, and Readiness
## 1278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ICYMI--Hagerty Joins Varney & Co. on Fox Business to Discuss Debanking Conservatives, Support for Hegseth, Panama Canal
## 1279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ICYMI: BERGMAN DECLARES DEI IS DOA
## 1280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ICYMI: House Foreign Affairs Committee Chairman Mast Discusses Foreign Aid Review, DEI on 'Face the Nation'
## 1281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ICYMI: MCCAUL, CORNYN PEN OP-ED ON IMPORTANCE OF CHIPS PROGRAM FOR TEXAS , U.S. MANUFACTURING SUCCESS
## 1282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ICYMI: STRICKLAND TALKS MUSK-TRUMP ADMINISTRATION DOING NOTHING TO LOWER COSTS
## 1283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ICYMI: We Must Dismantle DEI
## 1284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ICYMIHAGERTY JOINS VARNEY AND CO. ON FOX BUSINESS TO DISCUSS DEBANKING CONSERVATIVES, SUPPORT FOR HEGSETH, PANAMA CANAL
## 1285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      IDF Says Former Hostages Are Now At Israeli Military Base; Hegseth Confirmed As Defense Secretary After Tie-Breaking Vote; Advocate Groups Ordered To Stop Aiding Refugees Who Have Already Arrived In U.S. ; White House Requesting Help Form State And Local Governments To Enforce Immigration Law; Trump GOP Leaders Threaten Conditions On California Disaster Aid; Southern California Braces For Rainfall Amid Wildfire Recovery; Four Former Israel Hostages Arrive At Hospital; Putin Claims " Ukraine 's Crisis" May Have Been Averted Had Trump Been President. Aired 7-8a E.T.
## 1286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   INDEPENDENT WOMEN'S FORUM CELEBRATES AMERICA 'S PROGRESS AND PROMISE THIS BLACK HISTORY MONTH
## 1287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             INTERVIEW OF PRESIDENT TRUMP AND ELON MUSK BY SEAN HANNITY, "THE SEAN HANNITY SHOW"
## 1288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IRS Fires Thousands Of Workers During Tax Season; Elon Musk Celebrates Federal Job Cuts With A Chainsaw; Europe Considers Next Steps Amid U.S. & Russia Talks; Gov. Hochul Declines To Remove NYC Mayor Adams. Aired 5-5:30a ET
## 1289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                IRS Has Removed Sections Of Key Manual Used By Tax Pros From Web
## 1290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         IRS employees accept OPM federal worker buyout; How the 2025 tax season may be affected
## 1291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        IS THE U.S. CIVIL SERVICE REALLY BROKEN? WHAT THE RESEARCH SAYS ABOUT BUREAUCRATIC EFFICIENCY AND REFORM
## 1292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IU researchers face confusion over federal grant freeze - Indiana Daily Student
## 1293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IU won't address Dept. of Ed letter demanding end of race-based programming in schools - Indiana Daily Student
## 1294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ice skater, 16, killed in DC plane crash pulled off ultra-rare 'triple axle' jump hours before his death
## 1295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Idaho Republican town hall meeting descends into chaos after private security guards forcibly remove heckling woman
## 1296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If Trump really wants to bring down the price of eggs, he can start by listening to Turkey and the long-forgotten 'Stans'. Because these energy giants can cut REALLY cut the price of gas...
## 1297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If our diversity is not good, our money isn't' Bishop urges boycott of Target over DEI rollback
## 1298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If you liked DEI before, stick with it
## 1299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Illegal Immigration Crackdown Across U.S. ; State Governments Need To Step Up; Judge Pauses Trump Freeze On Federal Loans, Grants; Transparency Is Back In The White House, As White House Briefings Are Fun Again; White House Restores Press Passes Of 440 Journalists; Democrats Frayed Race Card; New York Magazine Crops Black From Cover Shot; GOP Broadens Coalition, Left Rages; Young Republicans Will Not Be Silenced Anymore; Jim Acosta Says He's Leaving CNN; Gen Z Promotes Taking Micro-Retirements
## 1300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Illegal migrant raids spark civil war as teacher turns on his own STUDENTS with startling message to ICE agents
## 1301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Illinois State Board of Education not complying with Trump's DEI orders
## 1302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Illinois joins multi-state lawsuit against Trump's funding freeze
## 1303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Immigrant Families Fear Being Separated By Trump Deportations; Trump Signs Four New Executive Orders, Transforming Military; DeepSeek AI Model Sends Shockwaves Through U.S. Markets. Aired 5:30-6a ET
## 1304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Immigration Crackdown Ramps Up in Cities Across U.S. ; Surprise Chinese A.I. Advancement Shocks NASDAQ, Down 500-Plus Points; Trump Expected to Sign Order Banning Transgender Service Members. Aired 10- 10:30a ET
## 1305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Immigration Crackdown; Trump May Invite January 6 Convicts to White House; Trump Targets DEI. Aired 1-1:30p ET
## 1306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Impact Of Trump's Unsubstantiated Blame Of DEI For Crash; Trump DOJ Aims To Potentially Fire Thousands Of Jan. 6 Prosecutors; Rep. Byron Donalds, (R- FL ), Is Interviewed About Trump's Firing Of January 6 Prosecutors, Tariffs on Canada, Mexico , China; Tariffs On Canada, Mexico , China Now In Effect. Medevac Jet With Six People On Board Crashes In Philadelphia; Bill Maher: "Trump Is Cool Now." Aired 9-10a
## 1307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Impoundment Control Act blocks federal funding pause, impacts on CSU faculty - The Rocky Mountain Collegian
## 1308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   In CNBC.com, Michael Littenberg Discusses Corporate Philanthropy Following Trump Executive Order on DEI in Private Enterprise
## 1309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In National Tragedy, US Leadership Shuns Basic Responsibility - The Comenian
## 1310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             In Plane Crash Aftermath, A Familiar Trump Returns: Blamer-in-Chief
## 1311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In Trump's quest to close the Education Department, Congress and his own agenda may get in the way
## 1312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                In a recent internal meeting, an Amazon VP said the company is committed to DEI despite some signs of a pullback
## 1313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             In aftermath of DC plane crash, Donald Trump criticizes DEI efforts
## 1314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In annual letter, Eisgruber defends tax-exempt endowment, DEI, and institutional restraint
## 1315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In case you haven't noticed, the target is already on our back
## 1316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In defense of DEI: Costco maintains diversity programs
## 1317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In halting Trump ban on DEI, judge sides with patriotism for America | Opinion
## 1318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In his first two weeks as president, Donald Trump has signed no less than 45 executive orders, leaving many Americans astonished at the pace he has taken. On Jan. 21, he signed an order aimed at dismantling diversity, equity and inclusion (DEI) programs,
## 1319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In light of Trump's hiring freeze, would-be interns sit unemployed
## 1320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In photos: Eagles dominate Super Bowl LIX
## 1321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In the Huddle: Yam Yau shares his hockey history - Washington Square News
## 1322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In the New Trump Era, DEI Will Still Be Part of Profitable Strategies
## 1323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In the wilderness: Democrats struggle to navigate the politics of new Trump era
## 1324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Inauguration Day 2025 live: Donald Trump signs executive orders on arena stage – watch live
## 1325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Inauguration of Donald Trump; Now: President Trump Inaugural Parade Underway; Soon: Trump Signs Sweeping Executive Orders; Soon: President Trump Speaks At Inaugural Parade
## 1326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Independent Women Applauds Executive Actions to Restore Equal Opportunity and Fairness by Ending DEI
## 1327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Independent Women Applauds Trump's Executive Action To Eliminate DEI From The Military
## 1328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Inflation is Trump's problem now
## 1329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Inflation, prices jump as Trump ignores 'real Americans.' What about America first? | Opinion
## 1330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InnovationRx: Billionaire Trump Donor Elon Musk Wages War On USAID
## 1331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Inside Democrats' plan to keep hammering Trump's aborted funding freeze
## 1332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Inside Trump's plan to make it easier to fire federal employees - and agencies have just 90 days to respond
## 1333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Inside the Bureaucrat Paperwork Cave; Go Nuts Over Cutting Waste; White House Brings Receipts for DOGE Cuts; Hegseth Invites DOGE into Pentagon; DOGE Hunts Fraud Across Government; Bondi Files Charges Against New York ; Democrat Calls for Censoring Americans; Morning Joe Frustrated with; Liberals Fight for Trans Sanctuary City; Desperate Demand Reparations; Freed American: Trump is a Hero
## 1334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Institute Communications confirms efforts to "update [Tech's] web presence" after DEI sites go dark
## 1335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Institute for Human Rights & Business Issues Commentary: Some Companies are Doubling Down on DEI - More Should Follow
## 1336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Intel Agencies Begin Dismantling DEI In Response To Trump's Order
## 1337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Internet goes wild for hulking Special Forces agent spotted with Pete Hegseth on early morning run
## 1338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Interview With Connecticut Attorney General William Tong ; Musk and Trump Targeting Department of Education?; Trump's Trade War With China Begins; FBI Employees File Lawsuit Against DOJ. Aired 1-1:30p ET
## 1339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Interview With Environmental Protection Agency Administrator Lee Zeldin; Interview With Sen. John Barrasso (R- WY ); Interview With White House Border Czar Tom Homan; Interview With Vice President J.D. Vance
## 1340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Interview With Former U.K. Ambassador To The U.N. Sir John Sawers; Interview With Former U.S. State Department Official Josh Paul; Interview With The Head Of The Palestinian Mission To The U.K. Husam Zomlot; Interview With "Hard Truths" Director Mike Leigh; Interview With "Hard Truths" Actress Marianne Jean-Baptiste; How Rev. Jerry Falwell Targeted Abortion Rights; Dozens Of Families Still Waiting For Hostages To Return. Aired 11a-12p ET
## 1341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Interview With Former U.S. Ambassador To The Czech Republic Norm Eisen; Interview With Princeton Professor And Autocracy Expert Kim Lane Scheppele; Interview With Forward Thinking Co-Founder And Director Oliver McTernan; North Korean Troops Embrace Near-Suicidal Tactics In Battle; Officials Give Update On Pennsylvania Medevac Jet Crash; 80 Years Since Liberation Of Auschwitz; Broad Play Hilariously Tackles Age Of Disagreement. Aired 11a-12p ET
## 1342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Interview With Jay Leno; Interview With White House Border Czar Tom Homan; University of Idaho Murder Suspect in Court; Interview With Sen. Tommy Tuberville (R- AL ); Two Republican Senators to Oppose Pete Hegseth Confirmation; Judge Blocks Trump Birthright Citizenship Order
## 1343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interview With John Rich; Senate Set to Vote on Pete Hegseth Nomination; Trump's Immigration Crackdown Ramps Up; President Trump Tours North Carolina and California
## 1344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interview With Kevin Costner; Interview With U.S. Transportation Secretary Sean Duffy; President Trump Takes Questions From Mar-a-Lago
## 1345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Interview With Mollie Hemingway; Interview With U.S. Treasury Secretary Scott Bessent; Interview With EPA Administrator Lee Zeldin; Interview With U.S. National Security Adviser Mike Waltz; Interview With Gov. Glenn Youngkin (R- VA )
## 1346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Interview With Rep. Abe Hamadeh (R- AZ ); Interview With Rep. Brandon Gill (R- TX )
## 1347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interview With Rep. Eric Burlison (R- MO ); Interview With Rep. William Timmons (R- SC )
## 1348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Interview With Rep. Gerry Connolly (D- VA ); Elon Musk Dismantling Government Agencies; New Trump Tariffs. Aired 1-1:30p ET
## 1349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Interview With Rep. Hakeem Jeffries (D- NY ); Interview With Special Envoy to the Middle East Steve Witkoff. Aired 9-10a ET
## 1350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Interview With Rep. James Comer (R- KY ); Trump Immigration Crackdown; Trump 's DEI Purge. Aired 11-11:30a ET
## 1351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Interview With Rep. Laura Gillen (D- NY ); Interview With Rep. Riley Moore (R- WV ); Interview With Sen. Amy Klobuchar (D- MN ); Interview With White House Border Czar Tom Homan. Aired 9-10a ET
## 1352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Interview With Rep. Yassamin Ansari (D- AZ ); Interview With Sen. Tim Kaine (D- VA ); Interview With U.S. Transportation Secretary Sean Duffy. Aired 9-10a ET
## 1353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interview With Sen. Cory Booker (D- NJ ); Interview With U.S. Secretary of Homeland Security Kristi Noem. Aired 9-10a ET
## 1354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interview With Sen. Jeff Merkley (D-OR); Interview With Rep. Brandon Gill (R- TX ); House GOP Leaders Meet With Trump. Aired 11- 11:30a ET
## 1355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interview With Sen. Katie Britt (R- AL )
## 1356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Interview With Sen. Maria Cantwell (D- WA ); Trump Removes Commandant of Coast Guard; Trump Set to Begin Immigration Crackdown. Aired 11:30a-12p ET
## 1357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Interview With Sen. Tommy Tuberville (R- AL )
## 1358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Interview With Stephen A. Smith; Interview With Sen. Rand Paul (R- KY ); Criticism Grows Over Pastor's Comments to President Trump; Interview With Rep. Abe Hamadeh (R- AZ ); Interview With Rep. Brandon Gill (R- TX ); Interview With Dave Rubin; President Trump Targets DEI
## 1359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interview With U.S. Defense Secretary Pete Hegseth
## 1360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interview with Arab League Assistant Secretary-General Hossam Zaki; Interview with Former Obama White House Health Policy Adviser and University of Pennsylvania Vice Provost of Global Initiatives Dr. Ezekiel Emanuel; Interview with Harvard Law School Professor and Bloomberg Opinion Columnist Noah Feldman; Interview with "Seed of the Sacred Fig" Director Mohammad Rasoulof. Aired 1:15-2:15p ET
## 1361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interview with Brendan Carr, FCC Chair
## 1362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Interview with Former Administrator of the U.S. Environmental Protection Agency and Former White House National Climate Adviser Gina McCarthy; Interview with "Eureka Day" Actress Jessica Hecht; Interview with "Eureka Day" Actor Bill Irwin; Interview with Cyber and Emerging Tech Former Deputy National Adviser Anne Neuberger. Aired 1-2p ET
## 1363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interview with Former British Defense Secretary Ben Wallace; Interview with Senate Judiciary Committee Former Counsel and Society for the Rule of Law Executive Director Gregg Nunziata; Interview with U.S. Navy (Ret.) and Senior New America Adviser Commander Theodore R. Johnson. Aired 1-2p ET
## 1364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interview with Governor Andy Beshear (D- KY ); Interview with "Black Box Diaries" Director Shiori Ito; Interview with "The Tech Coup" Author and Stanford Cyber Policy Center Fellow Marietje Schaake. Aired 1-2p ET
## 1365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Interview with International Rescue Committee CEO David Miliband; Interview with Columbia School of Journalism Dean Jelani Cobb; Interview with Harvard Law Professor and Bloomberg Opinion Columnist Noah Feldman. Aired 1-2p ET
## 1366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Interview with Marco Rubio, U.S. Secretary of State
## 1367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interview with Polish Foreign Minister Radoslaw Sikorski on Russia - Ukraine War; The Fragility of America 's Justice System. Interview With Law Professor And Author Rachel Barkow; Interview With Author Marc Dunkelman. Aired 10-11a ET
## 1368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interview with The New York Times Opinion Columnist M. Gessen; Interview with European Commission Vice President Kaja Kallas; Interview with Jordanian Foreign Minister Ayman Safadi; Interview with Representative Jahana Hayes (D- CT ). Aired 1-2p ET
## 1369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Interview with U.S. Senate Appropriations Committee Member Senator Chris Van Hollen (D- MD ); Interview with Forward Thinking Co-Founder and Director Oliver McTernan; Interview with "The Gatekeepers" Author Chris Whipple. Aired 1-2p ET
## 1370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Investigation Intensifies Into What Caused Fatal Crash; Trump Baselessly Blames DEI Initiatives For Air Disaster; Israel Condemns Chaotic Scenes At Hostage Release Site. Contentious Hearings for Patel, Gabbard, RFK Jr.; All 67 People Onboard Plane & Helicopter Presumed Dead; Trump Immigration Crackdown Has Some Migrants Reconsidering; FireAid Concerts Raising Money for Relief Efforts. Aired 1-2a ET
## 1371                                                                                                                                                                                                                                                                                                                                                                            Investigations Ongoing Into Tragic Collision; Trump Defends Comments Amid Democratic Criticism; Family And Friends Mourn Crash Victims; FBI Employees Purged In Large Groups; FBI Director Nominee Pledged Not To Retaliate; Impact On Canadian Energy Exports And Gas Prices; Donald Trump Tasks Lt. Gen. Keith Kellogg With 100 Day Goal To End Russia - Ukraine Conflict; Military Investigation Underway Focusing On Movements Of Army Black Hawk Helicopter Involved In Midair Collision Near Washington D.C. ; Border Patrol Agents Using Night Vision Technology To Track Illegal Immigrants Crossing U.S. Southern Border; President Trump Calling For U.S. To Take Control Of Panama Canal; Plane Crash Reported In Northeast Philadelphia.
## 1372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Investigators recover plane black boxes from Washington air collision
## 1373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Investor Tom Steyer extols ‘great opportunity’ in climate tech amid market upheaval
## 1374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Investors in Apple vote for diversity
## 1375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Iowa City City Council candidate Oliver Weilein isn't playing it safe - The Daily Iowan
## 1376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Iowa Republican lawmakers eye "comprehensive review" of state higher education system - The Daily Iowan
## 1377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Iowa Senate version of a bill ending civil rights protections for transgender Iowans advances - The Daily Iowan
## 1378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Is Rishi Sunak English? It used not to be a question
## 1379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Is Sunak English? It didn't used to be a question The era of Trump and Musk is seeing issues raised in a way unthinkable a year ago - but it may yet trip up Farage
## 1380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Is Trump’s ‘mob-boss’ rule of relying on snitches a productive way to run the country?
## 1381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Is Vivek Ramaswamy Leaving DOGE? What We Know
## 1382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Is Your Job at Risk Under Trump? For 50 Million Americans, the Answer Is Yes | Opinion
## 1383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Israel 's Ban on UNRWA in Effect; Heated Confirmation Hearings on Capitol Hill; Deadly Plane Crash in Washington; No Survivors in Deadly Midair Collision; Officials Gives Update on Deadly Midair Collision. American Airlines Plane and Army Helicopter Collide Outside Reagan National Airport Near Washington D.C. ; Eight Hostages Freed By Hamas Amid Chaotic Scenes As Israel Releases Over 100 Palestinian Prisoners; Trump's Cabinet Nominees Face Bipartisan Grilling on Capitol Hill. Aired 2-3p ET
## 1384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It Took Less Than 36 Hours For Trump To Slash Decades Of DEI Bureaucracy
## 1385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It took the air out of me': How TikTok creators reacted to the chaotic ban - and Trump's sudden reprieve
## 1386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     It was a US Treasury triumph at the FT Alphaville Pub Quiz in Washington DC
## 1387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It'll Take More Than EOs For Trump's Admin To Totally Slay Biden's Mammoth 'Whole-Of-Government' Policy Push
## 1388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It's Ivanka's new Insta glossy posse
## 1389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It's a daily conversation for us': Pitt Education students express concern about the future of the classroom  - The Pitt News
## 1390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It's a performance in hate': Boston athletes, community react to executive order banning trans women from competing in women's sports
## 1391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It’s clear why Trump blames DEI for everything
## 1392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It’s the Kemi delusion: the more the Tories run towards Reform, the more their voters will run to the Lib Dems
## 1393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ivanka Trump Used USAID Money for Events, Records Show
## 1394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ivanka Trump stuns in Oscar de la Renta as she hugs Lauren Sanchez during candlelight dinner in Washington DC
## 1395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ivanka Trump unveils new inner friendship circle after being reembraced by socialite pals
## 1396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I’m a Democrat politician. This is why I sterilised myself after Trump’s election
## 1397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               JANUARY'S DEI EXECUTIVE ORDERS WILL HAVE IMPACT FOR YEARS TO COME
## 1398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   JASON LEWIS: DEI Could Lead To Terrifying Consequences For Airline Passengers
## 1399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        JD Vance backs Trump's DEI claims after D.C. plane crash
## 1400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                JD Vance roasts the media for their 'funny' coverage of Trump's DEI remarks after DC plane crash
## 1401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             JD Vance: The VP raised in a Rust Belt home by a drug-addict mother
## 1402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       JFK Presidential Library in Boston Abruptly Closes 'Until Further Notice'
## 1403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     JOINT STATEMENT FROM 13 STATE ATTORNEYS GENERAL: PRESIDENT TRUMP IS MISLEADING THE AMERICAN PEOPLE ON PURPOSE OF DIVERSITY, EQUITY, INCLUSION AND ACCESSIBILITY INITIATIVES
## 1404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  JUDGE BLOCKS ENFORCEMENT OF DEI ORDERS AS APPLIED TO COMPANIES
## 1405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                JUDICIAL WATCH'S COVID COMMUNITY CORPS CASE ILLUSTRATES NEED FOR TRUMP PLAN TO CUT FEDERAL WASTE
## 1406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Jack Schlossberg has crude message for DOGE after JFK presidential library forced to close due to federal employee purge
## 1407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Jake Tapper left stunned as Stephen Miller explains why Trump ordered a surprise freeze on federal spending
## 1408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Jalen Hurts and Patrick Mahomes are living counters to wave of anti-Blackness | Opinion
## 1409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Jamelle Bouie Reflects on Post-Inauguration Democracy
## 1410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        James Carville Deflects When Sean Hannity Calls Out Dems' 'Bad Strategy' On 'Key Issues'
## 1411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Jasmine Crockett Mocks 'Mediocre White Boys' Complaining About DEI
## 1412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Jeffries On White House Funding Mess: "Round One Goes To Team America "; RFK Jr. Grilled; Migrants To Gitmo? Aired 7-8p ET
## 1413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Jeffries hammers Trump DEI comments after plane crash: ‘Shameful’
## 1414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Jesse Watters was all for DOGE - until cuts impacted his friend: 'Need to be a little bit less callous'
## 1415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Jessica Alves puts on a busty display in a skintight pink catsuit as she leaves the hair salon after revealing she fears for her safety amid President Trump's crackdown on 'gender ideology'
## 1416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Jessica Alves reveals she has been forced to cancel all US TV appearances over 'fears for her own safety' amid President Trump's crackdown on 'gender ideology'
## 1417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Jim Acosta reignites war with Donald Trump over DC plane crash
## 1418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Jimmy Kimmel: ‘The whole country is a Fyre Festival right now’
## 1419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Jo Ellis Decries 'Political Agenda' in 'Proof of Life' Video After DC Crash
## 1420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Joe Rogan exposes Biden's top 'inappropriate spending' tactic after DOGE's findings
## 1421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Joe Scarborough Baselessly Claims Republicans Did Not Vote For Cutting Wasteful Spending
## 1422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                John Kennedy Says Dems Are Using Musk As Punching Bag To Distract From Massive Wasteful Spending
## 1423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               John Stossel: DOGE To The Rescue?
## 1424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Joint Chiefs chair says he plans to stay on under Trump
## 1425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Joint Statement from 12 Attorneys General: President Trump is Misleading the American People on Purpose of Diversity, Equity, Inclusion, and Accessibility Initiatives
## 1426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Joint Statement from Twelve State Attorneys General: President Trump is Misleading the American People on Purpose of Diversity, Equity, Inclusion, and Accessibility Initiatives
## 1427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Journalism Being Recast As 'Doxxing'
## 1428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Journalists to table for Student Press Freedom Day
## 1429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Joy Reid demands Congress subpoena Elon Musk and raft of DOGE staffers
## 1430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Joy Reid’s MSNBC downfall exposes how little power DEI has left
## 1431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Judge Again Blocks Trump s Grant Funding Freeze
## 1432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Judge Blocks Parts Of Trump s Executive Orders Targeting DEI
## 1433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Judge Blocks Trump Order To Freeze Trillions In Federal Funding; Caroline Kennedy: RFK Jr. is "A Predator"; German Chancellor: Elon Musk's Right-Wing Push Is "Disgusting". Aired 7-8p ET
## 1434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Judge Blocks Trump from Putting Many USAID Workers on Leave Tonight; Trump Says, I Plan to Fire Some January 6 Investigators; Trump Says He is Revoking Biden's Security Clearance. Trump Says He Is Revoking Biden's Security Clearance; Eagles Standing In The Way Of Chiefs' Historic Super Bowl Three-Peat. Aired 6-7p ET
## 1435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Judge Clears Way for Trump Admin's Firings; Who Is Running DOGE; Trump Says Musk is "In Charge" of DOGE; Luigi Mangione Back in NY Court. Aired 10:30-11a ET
## 1436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Judge Denies Dem Attempt To Block DOGE From Federal Data Systems; New York Governor Hochul Considers Next Steps In Mayor Adams Case; Rep. Gabe Amo (D- RI ) On Zelenskyy Saying Trump "Lives In This Disinformation Space." Aired 7:30-8a ET
## 1437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Judge Halts Elon Musk's Access To Treasury Department Payment System; Shock At Frail Appearance Of Three Released Israeli Hostages; Rubio Previously Praised USAID, Now He's Overseeing It's Demise; Egg Prices Rise Due To Bird Flu, leaving Consumers, Restaurants Scrambling; Countdown To Superbowl LIX: Chiefs Vs Eagles. Aired 4-5p ET
## 1438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Judge Halts Implementation of Trump Anti-DEIA Executive Orders Nationwide in Suit Filed by Higher Education Officials, Restaurant Workers, City of Baltimore
## 1439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Judge Halts Trump's Plan To Put USAID Workers On Leave; Sen. Chris Coons, (D- DE ), Is Interviewed About Trump's Plan To Put USAID Workers On Leave, Elon Musk, National Debt; Trump Says He's Directed Musk To Review "Just About Everything"; Oscar Turmoil: "Emelia Perez" Star Sparks Backlash. History At Stake: Chiefs Chase Unprecedented Three-Peat. Aired 9-10a
## 1440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Judge Pauses Trump s Plan To Freeze Federal Aid Spending
## 1441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Judge Pauses Trump's "Buyout" Offer to Federal Workers; EPA Environmental Justice Workers Could be Put on Leave; Emails Show Mush Associates Sought to Use Critical Treasury Payment System to Shut Down USAID Spending. Aired 2-2:30p ET
## 1442                                                                                                                                                                                                                                                                                                                                             Judge Restricts DOGE Access To Treasury Info; Trump Signs Executive Order Banning Biological Males From Women's Sports; Interview with Speaker of the House Mike Johnson; Concerns Over Humanitarian Crises After DOGE Push to Dismantle USAID; Growing Liberal Anger Against Musk and DOGE; Slew of Lawsuits Filed Against Exec Actions & DOGE; House Dem Threatens Third Trump Impeachment Push; New Orleans Increases Security Measures For Super Bowl Sunday; ICE Detentions Facilities Exceed Capacity As Trump Ramps Up Border Crackdown; Immigrant Rights Groups Raise Concerns About Trump's Use Of Guantanamo Bay ; Jimmy Johnson is Interviewed about the Super Bowl; Sharon Landry is Interviewed about the Tragedy in New Orleans and the Love One Louisiana Foundation
## 1443                                                                                                                                                                                                                                                                                                 Judge Temporarily Halts Federal Grants And Loans Freeze; Reaction To Donald Trump Federal Grants And Loans Freeze Effort; Homeland Security Secretary Joins New York City Raids; Next Generation Space-Based Missile Defense System; Leavitt Says Drones Authorized By Federal Government; Tailored Form Of ChatGPT Launched Amid DeepSeek Fallout; Mexican Citizens Frustrated With Illegal Migrants; Senator Amy Klobuchar (D- MN ) And Senator Kevin Cramer (R- ND ) Interviewed On Bipartisan Bill To Provide Federal Benefits To First Responders; Judge Halts Trump Administration Order On Federal Freeze Of Grants And Loans; Tulsi Gabbard May Face Headwinds In Senate Confirmation As Director Of National Intelligence; Donald Trump Discontinues Government Provided Security For Former Administration Officials.
## 1444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Judge allows Fork in the Road Resignation program to proceed, denies lawsuit
## 1445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Judge bars firing of intelligence officers working on DEI issues
## 1446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Judge blocks Trump ban on DEI for federal agencies, contractors
## 1447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Judge blocks Trump order, DEI programs breathe
## 1448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Judge blocks Trump's executive order ending federal support for DEI programs
## 1449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Judge blocks funding freeze
## 1450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Judge largely blocks Trump’s executive orders ending federal support for DEI programs
## 1451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Judge pauses sweeping Trump orders rolling back diversity programs, warning of threat of 'pernicious' enforcement
## 1452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Judge refuses to block CIA firing workers on diversity, equity and inclusion initiatives
## 1453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Judge temporarily blocks Trump administration from carrying out certain anti-DEI directives
## 1454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Judge temporarily blocks part of Trump administration's plans to freeze federal aid
## 1455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Judge: Mass Firings of Federal Probationary Workers "Likely Unlawful"; RFK Jr. Downplays Measles Outbreak, Doctors Say He's Wrong; Transportation Secretary Sean Duffy Saying FAA Will be Hiring More Air Traffic Controllers; President Trump to Meet with Ukrainian President Volodymyr Zelenskyy; President Trump Touting Potential Deal with Ukraine to Extract Rare Earth Minerals from Country; France and U.K. May Propose Security Guarantees for Ukraine against Russia during negotiations to end Russia - Ukraine war. Aired 8-8:30a ET.
## 1456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Judges Will Decide Fate Of Trump's Most Contentious Moves; Trump, Japanese Prime Minister Meeting At White House; Trump Expects To Talk To Zelenskyy Next Week, Says He Wants To Discuss Security Of Ukraine 's Assets Like Rare Earths. Aired 12:30-1p ET
## 1457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Julianne Moore says her book 'Freckleface Strawberry' was banned by Trump administration
## 1458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           June Sarpong: Trump’s ban won’t kill DEI – companies will just call it something else
## 1459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Justice Department Establishes Task Force To Investigate Antisemitism Complaints on College Campuses
## 1460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Justice Department Fires Officials Who Investigated Trump; Trump Bars Transgender Americans from Military Service; Snow and Flood Concerns Move into Great Lakes Region. Aired 6-6:30a ET
## 1461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Justice Department abandoning cases alleging discriminatory police and firefighter hiring
## 1462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Justice Official Resign In Protest Of Order To Drop Adams Case; 14 States Sue Over Elon Musk's Unconstitutional Authority. HHS Secretary RFK Jr. Wants To Be The One Who Reprograms Americans To Eat Differently; Clay Travis Gets Graphic With His Words. Aired 10-11p ET
## 1463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Justices to hear workplace discrimination case Reverse discrimination cases could increase
## 1464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            KENNEDY: The truth of Barack Obama's hopelessly-delayed $830 million DEI nightmare of a presidential library that may never be built
## 1465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       KPMG erases years of diversity reports Financial services US unit's website overhaul follows decision to axe its 'Accelerate 2025' scheme
## 1466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        KPMG in America removes DEI initiatives from its website
## 1467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             KPMG’s US business removes diversity reports from its website after Trump onslaught
## 1468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Kaine: Trump DEI plane crash comments were made to avoid ‘tough questions’
## 1469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Kamala Harris, Michelle Obama and Taylor Swift all now share the same humiliation. Buckle up, liberals... you're not going to like what MAUREEN CALLAHAN has to say
## 1470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Karen Bass no longer has anywhere to hide
## 1471                                                                                                                                                                                                                                                                                                                                                                                                                                                                Karoline Leavitt Debuts As Press Secretary; Washington Undergoes A Culture Shift; Noem's Upbringing Prepared Her For This Job; Border Security Is Back; Marines Help Secure The Border; Cartel Gunmen Open Fire On Border Patrol; MSNBC Compares Deportations To The Holocaust; Media Hyperventilates Over Deportations; ICE Tops 1K Daily Deportations; Schumer Loses It Over Trump's Spending Freeze; Trump Pulls Out of $50 Million Gaza Condom Buy; White House Opens Briefing Room to New Media; It's Cool To Be A Proud American; Young People Are Excited About Trump And America ; Democrats Mourn DEI's Death; Snitching Is Democrats' Favorite Pastime
## 1472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Karoline Leavitt announces Trump will impose tariffs on Mexico , Canada and China this weekend
## 1473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Karoline Leavitt clashes with AOC over looming restraining order on Trump's federal funding freeze
## 1474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Karoline Leavitt faced down the White House press in her first briefing. It was Trump's voice that followed
## 1475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Karoline Leavitt pledges Trump will bring down prices as she takes aim at 'crap' DEI projects
## 1476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Karoline Leavitt throws Democrats' own words back in their faces in brutal takedown amid DOGE protests
## 1477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Keir Starmer chooses AI security over ‘woke’ safety concerns to align with Donald Trump
## 1478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Kelly Loeffler Must Defend the Small Business Administration's Non-Partisan Mission and Tradition
## 1479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Kemi Badenoch says ‘western civilisation will be lost’ if Tory party fails
## 1480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Kendrick Lamar's Halftime performance was a political statement - The Pace Press
## 1481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Kent State students express concern over executive orders - KentStater
## 1482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Kevin O'Leary rips 'nuts' Costco for boldly defying Trump order after Walmart and major companies caved
## 1483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Kick in the teeth': Disabled federal workers fear for their jobs after Trump remarks
## 1484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Kid Rock Touts 'Liberal, Gay or Black' Members in His 'Diverse' Band
## 1485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Kid Rock's shocking claim about Kendrick Lamar and Colin Kaepernick after Super Bowl 2025 halftime show
## 1486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Kid Rock: Kendrick Lamar's Super Bowl performance was 'DEI' for 'in the hood Black people'
## 1487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Kidill brings drums, dance and brilliant punk chaos to Paris Fashion Week - Washington Square News
## 1488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Knapp hangs on to lead at Palm Beach Gardens
## 1489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Kotlikoff Affirms Cornell's Commitment to 'Merit-Based Decisions', Diversity Amid New Federal Guidance
## 1490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Kristi Noem confirmed as Homeland Security secretary as Trump to visit Las Vegas to talk 'no tax on tips': Live
## 1491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LABRADOR LETTER DOGE'ING THE COLLAPSE OF OUR REPUBLIC
## 1492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LANDRUM: One Overlooked Legal Move Could Unlock Trump's America First Agenda
## 1493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LARRY ELDER: The 'Trump Is A Tyrant' Critics Defended Biden's 'Imperial Presidency'
## 1494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     LETTER TO THE EDITOR: VUMC did not need to erase its DEI footprint - The Vanderbilt Hustler
## 1495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LGBTQ health groups sue Trump over orders targeting diversity, transgender rights
## 1496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   LOFTUS: Ghoulish Blame Games Are Warping Our Sense Of Tragedy
## 1497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LOTS OF NEWS TO COVER FRI, 21 FEB 2025
## 1498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LPC responds to federal impact on DEI: 'We have our own autonomy here in California ' - The Express
## 1499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          La Oficina Presupuestaria de la Casa Blanca ordena pausar todos los préstamos y subvenciones federales
## 1500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        La Universidad de la Florida suspende las Comunidades de Aprendizaje Vivenciales sin enfoque académico en el alojamiento estudiantil - The Independent Florida Alligator
## 1501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Labour shelves plans to make gender change easier
## 1502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lack Of Cohesive Response': 'Morning Joe' Panelists Fret Over Dems' Reaction To DOGE Foreign Funds Audit
## 1503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lady Gaga makes political speech about transgender community at the 2025 Grammys
## 1504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Lady Gaga slammed for 'odd and meaningless' political Grammys speech: 'Hollywood is a cult'
## 1505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lafayette campus uncertain over federal funding turmoil - The Lafayette
## 1506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Lately with Layne: Day one executive orders concerning, harmful
## 1507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lately with Layne: President's Day protests highlight unfolding dangers
## 1508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Lately with Layne: Trump responds distastefully to DC plane collision
## 1509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Latino Leaders Unite on Capitol Hill and Demand Accountability From the Trump Administration
## 1510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Latino workers working to overcome a technological divide brought on by automation, AI
## 1511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Laura Coates Interviews Former NYC Mayor Bill De Blasio; Setback After Setback For President Trump In The Courts; CBS News Poll Says President Trump Is Riding High Three Weeks Into His Term. Aired 11p-12a ET
## 1512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Law firm defies Trump's DEI war with 'Brockovich quota'
## 1513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Lawmakers Face Pushback From Constituents At Town Halls; Germany 's Conservatives Return To Power As Far Right Surges; Zelenskyy Praises The "Absolute Heroism" Of Ukrainians. Aired 5:30-6a ET
## 1514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lawmakers mix silly and serious at journalism gala: ‘The free press must endure’
## 1515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawsuit Claims Proctor & Gamble s Menopause Test Kit Is A  Fraud.  Plus: How Will Tariffs Affect Your Bottom Line?
## 1516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Lawsuits involving DOGE and the Trump administration that corporate America may want to watch
## 1517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                League of Women Voters: Democracy Impact of President Trump's First Week Actions
## 1518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Left-Leaning Education Orgs Urge Schools To 'Vigorously' Disobey Trump Admin's DEI Directive
## 1519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Legal Landscape Shifts
## 1520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Legal scholars discuss Trump's executive orders, debate potential constitutional crisis
## 1521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Legendary former NFL player John Wooten has a warning for America
## 1522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Letitia James Announces New Lawsuit Against Trump Administration
## 1523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Letitia James Calls Out Trump's Funding Move: 'Reckless and Dangerous'
## 1524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Letter from the Editor: DEI is important, we want to hear from you
## 1525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Letter from the editor: A reflection on WSN's mission - Washington Square News
## 1526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Letter to the Editor | Obeying in Advance - The Daily Iowan
## 1527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Letter to the Editor: Donald Trump is doing everything I voted for
## 1528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Lib Dems say Badenoch is echoing Trump’s ‘dangerous rhetoric’ as she claims ‘some cultures better than others’ – as it happened
## 1529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Liberal 'mean girl' cruelly trolls press secretary Karoline Leavitt and her older husband
## 1530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Liberal Academic Elites Take To Streets In Protest Of Trump's Freeze On Federal Handouts
## 1531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Liberal Donors, Marc Elias And Biden-Appointed Judge Freeze Trump Push To Starve Woke Nonprofits Of Taxpayer Cash
## 1532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Liberal fury and stress hurts someone. But it isn't Trump. | Opinion
## 1533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Life-saving weather warnings are on the line as Trump and DOGE target America 's forecasting agency
## 1534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Like the US president, work culture is changing
## 1535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Linda McMahon faces confirmation hearing for department Trump wants to kill
## 1536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  List of American Companies That Support President Donald Trump
## 1537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      List of US Companies That Are Continuing With DEI Policies
## 1538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           List of What DOGE Has Cut From U.S. Government So Far
## 1539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Live Updates: In Second Confirmation Hearing, Robert F. Kennedy, Jr. Takes Fire For Vaccine Stances
## 1540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Live updates: Lawmakers talk Mexico , Canada, China tariffs; Vance stands by Trump’s DEI comments
## 1541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Live updates: Trump takes aim at DEI after plane crash; Gabbard pressed on Snowden
## 1542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Live updates: Trump talks to Fox News’ Sean Hannity in first Oval Office interview
## 1543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Livingstone addresses future of DEI at Baylor
## 1544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Load the muskets': An emergent Catholic right's hopes for the White House to the Vatican
## 1545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Local Community Speaks Out as Black History Month Recognition Fades from Pentagon - The Daily Egyptian
## 1546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Local and campus community weigh in on trump presidency
## 1547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  London law firm defies Trump’s DEI war with ‘Brockovich quota’
## 1548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Long champions of social justice, Black athletes say their voices are needed now more than ever
## 1549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Long-Time Dem Operative Says Dems Fear Trump's Success As They'll Have Nothing To Sell To The Public
## 1550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Love Is Blind creator addresses lack of diversity in season eight cast after backlash
## 1551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Loyola University Maryland Launches Second Climate Survey to Strengthen Community and Inclusion - The Greyhound
## 1552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Lushootseed Lecture Series Celebrates Skagit Elder Through Literature - The Spectator
## 1553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Lutnick backs Commerce unit that promotes minority businesses
## 1554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MAGA Agenda: The People's Choice; Democrats In Denial Over Losing Politicized FBI; The FBI Has A Real Leader; Stacey Abrams' slush fund exposed; Agencies get DOGED; Trump guts the IRS; No more freebies for illegals; Americans want border security; Democrat hysteria is hysterical as Democrats miss Sleepy Joe; Bernie Sanders kicks off anti-oligarchy tour tomorrow
## 1555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MAGA Mocks Rachel Maddow for on-Air Rebuke of Her MSNBC Bosses
## 1556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MAGA Outraged by Super Bowl Black National Anthem Performance
## 1557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MAGA Republicans unify on three-word response to Democrats outraged about USAID destruction
## 1558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MAGA lawmaker wonders 'did DEI play a role' in the deadly DC plane crash
## 1559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MAGA stars cut loose at Trump's inaugural ball as Jake Paul and Mike Tyson perform bizarre stunt
## 1560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MEEKS CONDEMNS TRUMP ADMINISTRATION'S ROLLBACK OF DIVERSITY AND INCLUSION AT THE STATE DEPARTMENT
## 1561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MEEKS, HFAC DEMS CALL ON SECRETARY RUBIO TO REVERSE PURGE OF STATE AND USAID WORKFORCE, U.S. FOREIGN ASSISTANCE AND DEIA INITIATIVES
## 1562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MEEKS, SHAHEEN, FRANKEL, SCHATZ DEMAND IMMEDIATE ACTION TO ADDRESS TRUMP ADMINISTRATION EFFORTS TO UNDERMINE AMERICAN SOFT POWER
## 1563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MEMO: How Trump's Federal Funding Freeze Affects Colorado
## 1564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MFUME, HOUSE FOREIGN AFFAIRS COMMITTEE DEMS CALL ON SECRETARY RUBIO TO REVERSE PURGE OF STATE AND USAID WORKFORCE, U.S. FOREIGN ASSISTANCE AND DEIA INITIATIVES
## 1565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MLB Commissioner Rob Manfred says some fans concerned over lack of salary cap
## 1566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MLK celebrations at UNL inspire action in uncertain times
## 1567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MLK's family fears records set for release will contain FBI "smears"
## 1568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MORE EASY ACTION CLICKS NOW, CAMPAIGN CALL THURSDAY. PILE ON!
## 1569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MORGAN MURPHY: Things Are Going From Bad To Worse For The Permanent Bureaucratic State
## 1570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MORGAN MURPHY: Woke DC Bishop Who Lectured Trump, Vance Overlooked Several Biblical Lessons In Sermon
## 1571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MSNBC Host Clings To 'Plenty Of Data Points' To Prove DEI Makes Businesses 'More Successful'
## 1572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MSNBC Reportedly Cancels Joy Reid's Show In Major Shake-Up
## 1573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MSNBC guest claims America is becoming 'less safe' as FBI paints over 'diversity wall'
## 1574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MSNBC guest launches unhinged attack on 'white folks' over price of eggs in 'Trump's disgusting America '
## 1575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSNBC star Rachel Maddow set for courtroom humiliation over shocking on-air slurs
## 1576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MSNBC's Al Sharpton Makes Absurd Boycott Announcement In Response To Trump
## 1577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MU leadership provides updates on executive orders related to NIH funding, immigration enforcement, transgender college athletes
## 1578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MURKOWSKI CALLS ON OMB TO ENSURE TRIBES ARE NOT IMPACTED BY EXECUTIVE ORDERS
## 1579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MURPHY TO MCMAHON: YOU'RE SAYING IT'S A POSSIBILITY THAT A PUBLIC SCHOOL WITH PROGRAMMING RELATED TO RACE COULD LOSE FEDERAL FUNDING
## 1580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Macmillan Cancer Support is criticised for recruiting a £100k a year DEI director - despite recently axing a quarter of its workforce
## 1581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Made History': Mark Halperin Says 'Musk Has Already Done More Than' Past GOP Presidents To Reform Gov't
## 1582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Madonna posts poignant message honoring Martin Luther King Jr. as President Trump is sworn in for second term
## 1583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Madonna takes a swing at Donald Trump for 'dismantling' LGBTQ+ freedoms and tells her fans 'don't give up the fight'
## 1584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Maga replaces DEI in America ’s boardrooms
## 1585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Mahomes, Hurts again merit a SB repeat
## 1586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Major Changes Underway As Trump Works To Reshape Government; Sources: White House In Talks To Host Some Jan. 6 Convicts; DOJ Threatens To Prosecute Officials Who Resist Immigration Orders; JPMorgan Chase CEO On Trump Tariffs: "Get Over It"; PMorgan Chase CEO: Trump Tariff Threat May Be Negotiating Tool; Trump Tariffs Loom Over Chinese Factory In Mexico ; Chinese Firms Weigh Options As Trump Threatens New Tariffs. Aired 3-3:30p ET
## 1587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Major Lawsuits Against Trump And Musk: Judge Halts Trump s DEI Contract Ban For Now
## 1588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Major companies pul back on DEI initiatives - The Charger Bulletin
## 1589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Major update after thousands of government websites were set to go dark amid Trump's online purge
## 1590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Make America a Christian nation': Bostonians pray on faith's role in Trump's executive actions
## 1591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Malicious misreading': College Republicans president pushed to resign following Barron Trump comments - Washington Square News
## 1592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Man, I Feel Like a Woman: A Commentary on Trump's Executive Orders
## 1593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Mandatory Evacuation Orders As New Fire Breaks Out Near L.A.; Trump Closes Federal DEI Offices, Puts Staffers On Leave; Elon Musk Slams Trump 's $500b A.I. Project; JP Morgan Chase CEO On Trump Tariffs: "Get Over It"; Rep. Veronica Escobar (D- TX ), Is Interviewed About White House In Talks For Jan. 6 Convicts To Meet With Trump . Aired 5-6p ET
## 1594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Manhattan Institute Issues Commentary to New York Post: Trump's Justice Dept. Vows to End College Affirmative Action - Here's Where to Start
## 1595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Map Reveals States Set To Be Hit Hardest by Federal Funding Freeze
## 1596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Map Shows China's Global Investments Expanding Amid USAID Upheaval
## 1597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Marc Fogel Visits The White House After Release From Russia ; Elon Musk Defends DOGE In The Oval Office; Kash Patel Accused Of Ordering FBI Firings Before Confirmation; U.S. Military Backs Out STEM Recruiting Conference; Sonya Massey's Family Settle For $10 Million. Aired 11p-12a ET
## 1598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Marc Short is Interviewed about Tariffs, RFK Jr. and the FBI; Rep. Johnny Olszewski (D- MD ) is Interviewed about Dismantling the Education Department; Trump Hints of Purchase of TikTok. Aired 6:30-7a ET
## 1599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Marco Rubio shuns G20 meeting in South Africa over ‘equality’ drive
## 1600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Marco Rubio shuns South Africa ’s G20 amid land and Starlink rows
## 1601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Marjorie Taylor Greene Questions Reporter's Accent: 'American Media First'
## 1602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Mark Esper Loses His Security Detail Here s Who Else Trump Has Pulled Protection For
## 1603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Mark Zuckerberg suffers ultimate humiliation after whining to staff 'everything I say leaks'
## 1604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Mark Zuckerberg’s charity confirms support for DEI despite Meta’s overhaul
## 1605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Mark Zuckerberg’s charity guts DEI after assuring staff it would continue
## 1606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Mark Zuckerberg’s charity scraps diversity team despite pledge to staff
## 1607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Marvel’s New ‘Captain America ’ Is No. 1, Despite a Backlash and Poor Reviews
## 1608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Matthew Guterl P'26 P'28 named vice president of diversity and inclusion - The Brown Daily Herald
## 1609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Mayday-Mayday, Trump's 'War on DEI' puts Americans at risk - Hilltop Views
## 1610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Mayor: Immigration Agents Raided NJ Business Without Warrant; Judge Blocks Trump's "Blatantly Unconstitutional" Executive Order; Trump Wants To Meet With Putin "As Soon As We Can" "Immediately". Aired 7-8p ET
## 1611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               McDonald's defies Trump in the UK
## 1612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  McDonald’s defies Trump to keep DEI in Britain
## 1613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          McMahon grilled on DOGE and DEI as Education Department upheaval looms
## 1614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     McMahon to face senators next week as Education fight grows
## 1615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Md. A.G. Brown Issues Multistate Guidance for Businesses on Diversity, Equity, Inclusion, and Accessibility Employment Initiatives in the Workplace
## 1616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Md. A.G. Brown: Joint Statement From 12 State Attorneys General: President Trump is Misleading the American People on Purpose of Diversity, Equity, Inclusion, and Accessibility Initiatives
## 1617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Meadville history reignited by Allegheny reverend - The Campus
## 1618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Mechanical failure or human error? What might've caused the D.C. plane crash that killed 67 people
## 1619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Medevac Plane Crashes in Philadelphia , Injuries on Ground Unclear; 6 On Board Crashed Medevac Jet in Philly, Including Child Patient; Trump Tries to Remake Government With No DEI; Coach Remembers Figure Skater Killed in DC Collision. Aired 12-1 am ET
## 1620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Medford considers ordinance protecting gender-affirming and reproductive healthcare
## 1621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Media Pushes False Tale Of Trump-Musk Friction; DOGE Moves Full Steam Ahead; Democrats Fuming Over DOGE Crackdown; Trump's Mission For Accountability And Transparency; Interview With Sen. Ted Cruz (R- TX ); The Geopolitical Importance Of Greenland; DOGE And The War On Waste; Media Moments That Matter; Behind-the-Scenes At The Babylon Bee
## 1622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Media Tip Sheet: Trump Administration Moves to Dismantle Federal DEI Programs and End Affirmative Action in Contracting
## 1623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Medicaid portals down, research funding frozen: Trump's chaos can cause real harm | Opinion
## 1624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Medical Jet Crashes in Philadelphia, No Confirmed Survivors; Israel -Hamas Ceasefire Leads to Hostage Releases; Deadly Mid-Air Collision Over D.C. , Black Boxes Recovered; Trump Imposes New Tariffs on Canada, Mexico , China; Madison Keys Wins Australian Open, First Major Title. Aired 7-8a ET
## 1625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Meet Andrew Ferguson, the new chairman of the FTC who has vowed to go after Big Tech's 'vendetta against competition'
## 1626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Meet Ivanka Trump’s new glossy posse
## 1627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Megyn Kelly's brutal takedown of CNN pundit and her meltdown over being 'paid less than white male colleagues'
## 1628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Melania and Ivanka's close ties to USAID exposed as Trump goes scorched-earth on the 'corrupt' agency
## 1629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Melania unveils cryptocurrency as Donald Trump teases Jan 6 'hostages' decision before inauguration: Live
## 1630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Melania's fashion: more than meets the eye
## 1631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Meloni coalition under threat from bank merger Prime minister's political skills have transformed Italy , but the strength of her government is at risk. By Michael Bow
## 1632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Meritocracy' Is the Right's Smokescreen for White Mediocracy | Opinion | Opinion
## 1633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Merkley, Murray, Peters Seek Clarity on Scope, Reach of OMB Funding Cuts, Who Authored Disastrous Memo
## 1634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Merz Claims Win for Conservatives in Germany 's Snap Election; Trump, Macron Set to Meet in Washington; Vatican: Pope Still Critical, Shows 'Mild' Kidney Failure; Trump's First Month in Office, By the Numbers. Aired 12-12:45a ET
## 1635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Meta CEO Mark Zuckerberg tells employees to 'buckle up' for an 'intense year' in a leaked all-hands recording
## 1636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Meta Will Spend Record $60 Billion On AI This Year, Zuckerberg Says After Trump Announces Stargate Deal With OpenAI
## 1637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Meta and Google opt out of Sydney Mardi Gras amid move away from DEI in US
## 1638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Meta denies claims it is pushing users to follow accounts linked to Trump team
## 1639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Meta set to notify workers impacted by its performance-based cuts
## 1640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Meta to pay $25 million to settle Donald Trump lawsuit, Zuckerberg hails administration
## 1641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Michigan Defies Donald Trump's Schools DEI Threat
## 1642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Michigan Tech takes action in compliance with DEI changes - The Lode
## 1643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Midair Collision Investigation; DOJ Defends Trump's Birthright Citizenship Order in Court; No Evidence For Trump's DEI Claims on Midair Collision. Aired 11:30a-12p ET
## 1644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Middle schoolers at military facility in Germany protest Hegseth’s anti-DEI moves
## 1645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Middle schoolers protest Pete Hegseth's DEI takedown at US base in Germany
## 1646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Migrant Deportation Flights Begin; Rep. Gabe Vasquez (D- NM ) is Interviewed about Birthright Citizenship and Deportations; Trump Visits North Carolina and California ; Zeb Smathers is Interviewed about Flood-Ravaged North Carolina . Aired 9-9:30a ET
## 1647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Military Halts Sexual Assault Prevention Training Post-Trump DEI Order
## 1648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Military leaders should expect Trump crackdown – from disloyalty to diversity
## 1649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Military promotions, academic institutions to no longer consider race, sex: Hegseth memo
## 1650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Millions in aid spent on 'storytelling' to save seas
## 1651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Millions of Federal Workers Receive Email from Trump Administration with Option to Resign from Their Current Positions; Robert F. Kennedy Jr. to Testify at Senate Confirmation Hearing for His Health and Human Services Secretary Nomination; Advocacy Group Denounces ICE Raid at Philly Car Wash. Interview with Rep. Nydia Velazquez (D- NY ). Aired 8-8:30a ET
## 1652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Millions spent on ‘inclusivity’ projects to save seas — including in landlocked nations
## 1653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Minnesota Pride group raises $50,000 after dropping Target as a sponsor
## 1654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Minorities Face Burnt Of Trump's First Actions Back In Office; Former White House Diversity Chief Reacts To End Of DEI Programs; Trump Targets DEI, Civil Rights Rules In First Days Of 2nd Term. Newark Mayor Says Business Raided By ICE Agents, Multiple People Detained; Hostages Return To Israel For Treatment After Release By Hamas; CNN Kobe Bryant Documentary Series Premiers Tonight. Aired 8-9a ET
## 1655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Mirror Indy: 'It sucks': Ivy Tech closes DEI offices to protect its funding
## 1656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Missouri Western responds to the halting of federal funding for diversity programs
## 1657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Missouri sues Starbucks, claiming DEI policies are slowing down orders
## 1658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Moderate Republicans, Democrats elect Burrows as speaker - The Battalion
## 1659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Moment air traffic controller screams as American Airlines plane collides with Black Hawk helicopter over Washington
## 1660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Monday briefing: Will Trump really begin his second term with a message of unity?
## 1661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            More DEI fallout: Air Force scraps course that used videos of Tuskegee Airmen and female WWII pilots
## 1662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                More than 100 US spies are fired for sexually explicit chats, Tulsi Gabbard says
## 1663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            More than 50 student organizations demand protection of DEI services
## 1664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            More than a third of Black NFL players surveyed by the AP are discouraged by a lack of Black coaches
## 1665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Morning Mail: antisemitism warning from Auschwitz survivor, our ‘unfair’ dental care, China stuns AI industry
## 1666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Morning Report — Critics tee off on Trump orders
## 1667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Morning Report — Senators muscle forward in the budget fight
## 1668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Morning Report — Trump heads west playing defense and offense
## 1669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Morning Report — Trump’s whirlwind second term begins
## 1670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Morrisey 'applauds' WVU for closure of DEI Office
## 1671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Most Americans Say US Foreign Aid Is 'Wasted On Corruption,' Survey Reveals
## 1672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Most Sidelined Federal Diversity Staff and Others Should Be Allowed Back to Work
## 1673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Most banned books feature people of color and LGBTQ+ people, report finds
## 1674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Motives of arsonists, Target's DEI reversal, Super Bowl ads: Catch up on the day's stories
## 1675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Multiple Companies Ditching California For Texas
## 1676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Multiple Meetings Over Russia and Ukraine Peace; Anne Applebaum is Interviewed about Government Cuts and Firings; Best Moments from "Saturday Night Live.". Aired 9:30-10a ET
## 1677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Multistate Guidance for Businesses on Diversity, Equity, Inclusion and Accessibility Employment Initiatives in The Workplace
## 1678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Murdered fire captain's ex lover drops bombshell about victim's wife after cops named her as prime suspect
## 1679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Museums’ slavery focus has become humdrum, historian says
## 1680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Music and mayhem - The Quinnipiac Chronicle
## 1681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Musk And Mystery Team Intensify Dismantling Of Government; CIA Sent Names Of Recent Hires in Unclassified Email To White House; Nationwide Protests Against Trump And Musk Government Actions; "NewsNight" Panelists Discuss The Competency Of Trump Picks; Republicans Try To Figure Out Which Side of the Gaza Plan They're On. Aired 10-11p ET
## 1682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Musk And Trump Sit Down For A Rare Interview; Elon Musk And 'DOGE' Aim To Cut $1 Trillion; Elon Musk Shares Backlash For Supporting Trump; New Video Show Delta Plane Crash Landing; Officials Meet In Saudi Arabia For Ukraine Talks; CA Attorney General Leads Resistance To Trump; Secret Of Success: Musk: Way To Save Taxpayer Money Is Competence And Caring
## 1683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Musk May Use His Tech Skills To Pare Costs
## 1684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Musk Moves from Villainizing Workers to Fictionalizing Them; Trump Cedes Spotlight to Elon Musk in First Cabinet Meeting; Bezos Commands Washington Post to Focus Columns on His Two Pillars. Supreme Court Justices Poises to Favor Straight Woman in a Job Bias Case; A.I.-Generated Video of Trump's Fantasy Gaza Sparked Outrage. Aired 10-11p ET
## 1685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Musk Moves to Eliminate Key Federal Agency; El Salvador Agrees to House Deported U.S. Criminals; FBI Prepares for Major Trump Purge; Red Flags Raised After CBS Hands Over Harris Transcript; Judge Warns Lively and Baldoni Lawyers. Aired 11p-12a ET
## 1686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Musk Plan for Retooling Government Takes Shape, but Big Questions Loom
## 1687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Musk Prepares For Cabinet Meeting As Mass Firings Loom; Andrew Cuomo Readies Controversial Comeback; New Revelations In Idaho College Murders Case. Aired 11p-12a ET
## 1688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Musk Rehires DOGE Aide Who Resigned Over Racist Posts; Trump Admits Musk's DOGE Getting Access to Sensitive Data; Trump Terminates Kennedy Center Board. A Federal Judge Blocks Trump Administration's Plan To Put All USAID Workers On Leave; Homeland Security Secretary Noem Checks Out Operations at Guantanamo Bay . Aired 10-11p ET
## 1689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Musk Takes Center Stage at Trump's First Cabinet Meeting; Israel, Hamas Agree on New Exchange as Fragile Ceasefire Appears Intact; Crowds Line Streets to Mourn Bibas Family Who Were Killed in Gaza. Aired 2-2:30p ET
## 1690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Musk Threatens Dismissals as Federal Workers Told to Justify Jobs; Interview with Rep. Gerry Connolly (D- VA ); Zelenskyy Says He is Ready to Step Down if it Brings Peace in Ukraine . Aired 3-4p ET
## 1691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Musk Threatens Firings As Federal Workers Told To Justify Jobs; Zelenskyy Says He's Ready To Step Down If It Brings Peace In Ukraine ; Pope's Still In Critical Condition With Signs Of Mild Kidney Failure; Polls Close In Germany 's National Election; Angry Crowds Confront GOP Lawmakers At Town Halls Over DOGE Cuts. Aired 2-3p ET
## 1692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Musk Tightens Grip On Government With Oversight Of More Agencies; Pam Bondi Sworn In As Attorney General; Trump Takes Action To Ban Trans Women From Women's Sports. Aired 9-10p ET
## 1693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Musk savagely trolls whining federal workers as attempts to seize highly-sensitive $5 TRILLION system hits major stumbling block in emergency court hearing challenging DOGE's power
## 1694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Musk stunned as dozens of DOGE staff suddenly QUIT with scathing letter... as eye-watering new savings figure is revealed
## 1695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Musk urged to abolish Planned Parenthood funding as report reveals abortion clinic horror stories
## 1696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Musk vs. federal bureaucracy
## 1697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Musk wants retired air traffic controllers to resume work, but it's not so easy
## 1698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Musk's "based" Grok 3 sticks to the middle of the round
## 1699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Musk's DOGE Gains Access to Medicare, Medicaid Data Systems: Live Updates
## 1700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Musk's Mission: End The Waste And Fraud; Holding Government Accountable: Failure Not An Option; Inside Look At Illegals Entering Gitmo; Inside look at Gitmo living conditions as Laura visits Gitmo's migrant operation center; Pete Hegseth, you don't want to be in Gitmo; Hegseth sees Khalid Sheikh Mohammed, 9/11 detainees; Maine representative censured for exposing trans craze; NSA transgender sex chat exposed; jake tapper covered up Biden's decline; Newsom's newest venture, another podcast; Newsome recall effort heats up; The MAGA hat reimagined
## 1701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Musk's wrecking ball
## 1702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Musk: Trump ‘will succeed’ in dismantling Education Department
## 1703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Musk’s war on diversity won’t stop first disabled astronaut
## 1704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Musk’s ‘Doge’ guts nearly $1bn in US education department’s research office
## 1705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           My Week Donald Trump*
## 1706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NAACP 's top marketer tackles everything from DEI rollbacks to the organization's first foray into daytime TV
## 1707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NAACP PRAISES REINTRODUCTION OF HISTORIC REPARATIONS BILL DURING BLACK HISTORY MONTH
## 1708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       NAACP President Condemns Trump Administration's Roll Back of DEI Programs
## 1709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NAACP chief slams Trump for linking DEI with plane crash: ‘Sinister strategy’
## 1710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NAACP lists companies that dump DEI in its tactical spending guide for Black Americans
## 1711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NAACP spending guide urges Black Americans to avoid companies that dumped DEI
## 1712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NAACP’s Legal Defense Fund calls on Congress to reject McMahon for Education Department
## 1713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NACUBO On Your Side: Jan. 7-27, 2025
## 1714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NASA's woke boss admits agency wasted millions of taxpayer dollars on 'shameful' DEI programs
## 1715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NASW RESPONDS TO TRUMP ADMINISTRATION EXECUTIVE ORDERS
## 1716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             NASW'S APPALLED BY EXECUTIVE ORDER ENDING DEI IN FEDERAL GOVERNMENT
## 1717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NAVIGATING A NEW POLITICAL LANDSCAPE: FREQUENTLY ASKED QUESTIONS
## 1718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NBC Host Asks Cory Booker Point Blank If Dems' Favorite Talking Points Are 'Effective' After Election Loss
## 1719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NBC Reporter Invokes Trump, Musk During Coverage Of Most Recent Plane Crash, But It Happened In Canada
## 1720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NBC parent company's DEI initiatives probed by FCC as it becomes latest target of Trump administration
## 1721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NC State Representative and Senator talk civic engagement at NCCU - Campus Echo Online
## 1722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NCAA makes ruling on transgender athletes in women's sports after Trump executive order
## 1723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NEA PRESIDENT BECKY PRINGLE ISSUES STATEMENT PERTAINING TO THE MOST RECENT ATTACKS BY THE TRUMP ADMINISTRATION ON FEDERAL DIVERSITY, EQUITY AND INCLUSION PROGRAMS
## 1724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NEW JERSEY LGBTQ ADVOCATES FROM GARDEN STATE EQUALITY SAY THEY'LL CONTINUE TO PUSHBACK WITH FACTS
## 1725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             NEW UMASS AMHERST /WCVB POLL FINDS GOV. MAURA HEALEY MAINTAINS SUPPORT AMONG BAY STATE VOTERS, THOUGH CRACKS EMERGE
## 1726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NEW UMASS AMHERST /WCVB POLL GAUGES BAY STATE RESIDENTS' VIEWS ON RACE, EDUCATION AND ABORTION IN THE COMMONWEALTH
## 1727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     NEWS 02/20/2025 VIDEO: BLACKBURN DETAILS DOGE'S EFFORTS TO RESTORE ACCOUNTABILITY IN THE FEDERAL GOVERNMENT
## 1728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NEWSBYTES JANUARY 31, 2025
## 1729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NEWSLETTER -FEBRUARY 2, 2025
## 1730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NEWSLETTER -FEBRUARY 9, 2025
## 1731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NFL botches its DEI message optics
## 1732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NFL botches its message on DEI by dropping 'End Racism' from end zones at Super Bowl | Opinion
## 1733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NFL has no plans to end DEI policies, Goodell says
## 1734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NFL to make controversial Super Bowl decision over racism message with Donald Trump attending showpiece
## 1735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     NFL to scrap ‘End Racism’ messaging on field for Super Bowl
## 1736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NFL to use 'Choose Love' message instead of 'End Racism' on field for Super Bowl
## 1737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NHS diversity practices hindered by ‘misguided approaches’, says Streeting
## 1738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NHS hires diversity staff on double the salary of junior doctors
## 1739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NHS hiring dozens of diversity jobs despite order to crack down
## 1740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NICOLE KIPRILOV: 5 Things That Became Abundantly Clear During Trump's First Week In Office
## 1741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NIH Communications Freeze Leaves Longwood Affiliates Out in the Cold
## 1742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NILE GARDINER: The Donald's revitalised America could lead Britain to broad sunlit uplands - but Keir Starmer's doctrinaire socialists will blow the opportunity
## 1743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NO, USAID IS NOT THE CHRISTIAN CHARITY ARM OF THE U.S. GOVERNMENT
## 1744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           NOAA sees DOGE search for its DEI-related information
## 1745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NOAA told to search its grants for climate change terms
## 1746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             NORTH CAROLINA ELIMINATES DEI INDOCTRINATION IN ACADEMIC COURSEWORK
## 1747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NSA Reportedly Purges Agency's Websites Of DEI Terms
## 1748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NSA agents exposed for sex chats as Tulsi Gabbard vows to punish workers posting 'kinks, fetishes and polyamory'
## 1749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NSF faces steep budget cuts and layoffs, effects on CMU research funding unclear - The Tartan
## 1750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NSW Premier Chris Minns quietly removes he/him pronouns from his social media accounts
## 1751                                                                                                                                                                                                                                                                                                                                                                                                                                                   NTSB Investigates Deadly Plane Crashes In DC , PA ; Trump Imposes Tariffs On Canada, Mexico & China; Interview With Transportation Secretary Sean Duffy; Trump Offers Buyout to Federal Workers; Poll: Trump Approval Ratings 10 Points Higher Than in Beginning of First Term; Trump Cabinet Picks Grilled On Capitol Hill; Bipartisan Measure Calls For U.S. To Keep All Options On Table To Deter Nuclear Iran ; Trump Signs Order To Impose tariffs On Canada, Mexico And China Starting Tuesday; Voters Have Unfavorable Opinion of the Democratic Party; Future of the Democratic Party; Robert George and Cornel West is Interviewed about their Book "Truth Matters."
## 1752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           NTSB Recovers One Data Recorder From AA Flight; Plane And Helicopter Collide Near D.C. , No Survivors; Tulsi Gabbard And Kash Patel Shake Up The Deep State; Democrats welcome illegal criminals with open arms; Chicago mayor says White House government is raggedy; How the left wrecked education; Schools are for success, not indoctrination; Big pharma tries to stop RFK Jr.; Rand Paul calls out blind government acceptance
## 1753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NTSB Takes Questions on Deadly D.C. Air Collision; NTSB Says, Flight Data Recorders Not Recovered; Tulsi Gabbard Faces Senate Confirmation Hearing
## 1754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NTSB: "Whole of Government Effort" to Investigate Midair Crash; NTSB: Flight Data Recorders Not Yet Recovered; NTSB: "Very Quick, Rapid Impact," No Passenger Slides Deployed. Aired 3-3:30p ET
## 1755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NWLC Responds to the Firing of Commissioners at the Equal Employment Opportunity Commission (EEOC)
## 1756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     NYC's swoon-worthy restaurants for Valentine's Day - Washington Square News
## 1757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     NYGOP STATEMENT ON THE END OF DEI IN THE FEDERAL GOVERNMENT
## 1758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NYU Langone nurses brace for strike amid union contract negotiations - Washington Square News
## 1759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NYU experts on Trump 's anti-DEI crusade - Washington Square News
## 1760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NYU-affiliated groups sue Trump for 'unconstitutional' executive orders - Washington Square News
## 1761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    National Action Network: After Trump Delivers Opening Attack on Federal Dei Programs, Rev. Sharpton Announces Boycott of Companies That Abandon the Policies
## 1762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  National Center for Public Policy Research: Costco Packs Big Discrimination Into Big Box Store
## 1763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            National DEI changes lead Carbondale to monitor inclusion goals - The Daily Egyptian
## 1764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Nationwide Economic Blackout This Week: Which Stores are Being Targeted
## 1765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Navigating Change: Rutgers-Camden's Response to Executive Orders on DEI
## 1766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Navy allows officers to wear saris in diversity overhaul of uniform policy
## 1767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Netflix viewers criticize Love Is Blind producers for 'identical' male contestants in season 8
## 1768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     New 40-Acre Brush Fire Erupts Overnight in L.A.; Trump Defends Jan. 6 Pardons in Oval Office Interview; Authorities Search for Motive in Deadly Nashville School Shooting. Aired 7-7:30a ET
## 1769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                New ALA Initiative Asks Advocates to "Show Up for Our Libraries"
## 1770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         New California Wildfire; Trump Targets Diversity, Equity and Inclusion Protections; Trump's Immigration Crackdown; Same-Sex Marriage Law Takes Effect in Thailand ; Trump Turns Up Pressure on Russia to End Conflict. Aired 4-4:30a ET
## 1771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   New Details on Deadly Midair Collision in Washington, D.C. ; Military Helicopter May Have Been Flying Too High; Remembering the Lives Lost in Washington Aviation Disaster; Trump Baselessly Links DEI Initiatives to Air Disaster; Palestinians Return to Devastation in Northern Gaza; FAA Closes Helicopter Routes Near Reagan National After Crash; Rafah Border Crossing Expected to Open by End of Week; Israel Pauses 2-Year-Old Girl's Medical Evacuation from Gaza; German Lawmakers Vote on Immigration Restrictions; Contentious Hearings for Trump's Most Controversial Nominees. Aired 10-11a ET
## 1772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             New EPA Chief Has Message For Bureaucrats Hoping To Stymie Trump Agenda From Within
## 1773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        New Fast-Moving Fire In Southern California ; Trump Purges Diversity, Equity And Inclusion Protections; Thailand Legalizes Same- Sex Unions; Hughes Fire North of Los Angeles Now 14 Percent Contained; Trump to Visit Los Angeles , Tour Fire Devastation Friday; Trump Blames Governor, Water Policy for Fires' Devastation; 1,500 U.S. Troops Ordered to the Southern Border; Same-sex Marriage Law Takes Effect in Thailand ; Nepal Hikes Mount Everest Climbing Fee Up to $15,000. Aired 2-2:45a ET
## 1774                                                                                                                                                                                                                                                                                                                                                                             New Questions Over Congestion And Communication; 64 People Were On Jet And Three On Board Helicopter; Coaches And Students Among Those Killed; Nominee For FBI Director Faces Scrutiny; Heated Exchange During Robert F. Kennedy Jr. Testimony; U.S. Army Black Hawk Helicopter and American Airlines Flight Collide Near Washington D.C. with No Survivors; Sen. Tim Kaine (D- VA ) Interviewed on Overcrowding of Flights at Reagan National Airport Possibly Contributing to Recent Midair Collision; Israeli Prime Minister Benjamin Netanyahu Orders Delay in Palestinian Hostage Release to Hamas; FBI Director Nominee Kash Patel and Director of National Intelligence Nominee Tulsi Gabbard Testify at Their Senate Confirmation Hearings.
## 1775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           New Recovery Effort Under Way In Deadly In-Flight Collision; Controversial Trump Picks Face Questions On Past Comments. Aired 4-5p ET
## 1776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          New Trump orders on transgender troops, COVID and more expected on Hegseth's first day
## 1777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          New Ultimatum from Trump; GOP'S Careful Pushback on Musk; Sen. Ed Markey (D- MA ) is Interviewed about Dismantling Federal Agencies; Flu Cases Peak for Second Time; Louisiana Police Looking into Death of Reporter. Aired 8:30-9a ET
## 1778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                New Video Show Moment Plane & Army Helicopter Collided; Multiple Investigations Into What Caused Collision That Killed 67; Figure Skating Community Mourns Victims Killed in D.C. Tragedy; FireAid Concerts Raise Millions For Fire Victims. Aired 9:30-10 am ET
## 1779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           New Video Shows Collision from Previously Unseen Angle; FAA Indefinitely Closes Helicopter Routes Near Reagan National Airport; Families, Friends Pay Tribute to 67 People Killed in D.C. Tragedy. Aired 10-10:30a ET
## 1780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  New Video Shows Passenger Jet Colliding With Military Chopper; FAA Indefinitely Closes Helicopter Routes Near Crash Site; NTSB Recovers Both Black Boxes From Doomed Jet; Trump Jumps Right To Blame Game Over Plane Crash. Aired 12-12:30p ET
## 1781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     New Videos Show Moment Helicopter and Plane Collided; Trump Says He Will Meet With Some of the Victims' Family Members; Trump Makes Baseless Claims DEI Hiring May Have Caused Collision. Aired 7- 7:30a ET
## 1782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                New York City Mayor Eric Adams Requests Attends Court to Request Federal Charges of Corruption be Dropped; Interior Secretary Doug Burgum Gives Tour of Interior Department Building; President Trump Calls Ukrainian President Volodymyr Zelenskyy a Dictator; President Trump Draws Criticism from Some Senators for Indicating Ukraine Started Current War with Russia ; Donald Trump Calls Volodymyr Zelenskyy A Dictator Without Elections; Administration Efforts To Increase U.S. Energy Output; Interior Department Lays Off Thousands Of Employees; Trump Backs House To Implement America First Agenda
## 1783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   New administrations spell uncertainty for KSC
## 1784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           New footage of American Airlines crash shows doomed jet and Black Hawk helicopter's lights could be seen from over a mile away - so how did they not spot each other?
## 1785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Newsmax host boasts that Trump is a 'dictator that the American people voted for'
## 1786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Nielsen s Annual Report Highlights These New Trends Among Black Consumers
## 1787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             No Survivors in Midair Collision; President Trump Blames DEI For Midair Collision. Aired 1-1:30p ET
## 1788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         No funding, no future: Emory students will graduate into hopelessness - The Emory Wheel
## 1789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       No one is safe from Trump’s racist agenda
## 1790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              No plans to draw down US forces in Europe, for now
## 1791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          No recourse available': Confusion spreads at Education Department amid buyout deadline
## 1792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        No, Trump isn't gutting medical research
## 1793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            No, el presidente Trump no es populista David Brooks
## 1794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               No, image doesn’t show real Trump post about Department of Education | Fact check
## 1795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       No, transgender pilot wasn't flying Black Hawk helicopter that crashed in DC | Fact check
## 1796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Noir mood in Hollywood as Trump assaults DEI Media. Diversity goals Nerves under strain in a sector caught between administration wrath and workforce defiance
## 1797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               North Carolina Office of the State Auditor: 'State Auditor Boliek to Eliminate DEI Concepts, Training, and Requirements From OSA'
## 1798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Northwest dissolves Office of Diversity and Inclusion, Tatum talks prioritizing student success
## 1799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Notre Dame Calls DEI 'Equally Important' As Catholicism In Hiring Decisions
## 1800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Notre Dame's Marcus Freeman falls short of breakthrough for Black coaches on historic day in America
## 1801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Notre Dame's Marcus Freeman seeks breakthrough for Black coaches on a historic day in America
## 1802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now Musk has air traffic controllers on his radar The Space X boss has a history of clashes with the Federal Aviation Authority. After the Washington air crash, he is targeting the agency, says James Ball
## 1803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now the Trump administration is going after Comcast , too
## 1804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now, Hegseth Clears Hurdle For Defense Secretary Role; Migrants Nab MS-13 Members, Murder Suspects; Judge Blocks Trump's Birthright Citizenship Order; President Trump Signs New Executive Orders
## 1805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Nurses fired at NYU Langone rehired after 2-year legal battle - Washington Square News
## 1806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Nvidia's earnings have turned into a quarterly AI State of the Union
## 1807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OH DEERE. APPLE AND JOHN DEERE STILL HAVEN'T AWOKEN TO THE RISKS OF GOING WOKE
## 1808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           OISA Advises International Students Under Second Trump Administration
## 1809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OKLAHOMA MUST STOP FORCING STUDENTS INTO DEI CLASSES
## 1810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        OLSZEWSKI, HFAC DEMS CALL ON SECRETARY RUBIO TO REVERSE PURGE OF STATE AND USAID WORKFORCE, U.S. FOREIGN ASSISTANCE AND DEIA INITIATIVES
## 1811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    OMB FUNDING PAUSE, MORE EOS MARK HECTIC WEEK FOR HIGHER ED FEBRUARY 03, 2025
## 1812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OMB Q&A REGARDING MEMORANDUM M-25-13
## 1813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ON THE EXPANSION OF EXECUTIVE POWER: AN OVERVIEW
## 1814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ONE WEEK OF PRESIDENT TRUMP
## 1815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      OP-ED: Honoring Black History Month Amid Continued GOP Attacks on School Curriculums and BIPOC Communities
## 1816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OPINION | Setting the stage: Trump's first 40 executive orders
## 1817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OPINION | The 'woke virus' is not what our government should be fighting against
## 1818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           OPINION: Are you worried yet? - The Murray State News
## 1819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         OPINION: Dissolving DEI could have serious consequences
## 1820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OPINION: Elon Musk and an "oligarchy," do billionaires have too much power in U.S. politics today? - The Seahawk
## 1821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          OPINION: Florida schools shouldn't put immigrants last
## 1822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OPINION: Make USF 'woke' again
## 1823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             OPINION: Students be warned: President sets sights on Department of Education - The Suffolk Journal
## 1824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      OPINION: Trump played voters with his part in Project 2025
## 1825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         OPINION: Trump's DEI rollback is a harmful setback for America 's diversity initiatives
## 1826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          OPINION: Trump's gender policy has no place in America
## 1827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OPINION: Trump's new executive orders do nothing to preserve meritocracy - Indiana Daily Student
## 1828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OPINION: X and Bluesky situation represents new age of social media division - The Daily Wildcat
## 1829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          OPM denies federal government website shutdown reports: ‘False rumors’
## 1830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OPM orders termination of DEI offices within 60 days
## 1831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 OSBA Monitoring Federal Actions
## 1832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OU film school director responds to studio diversity rollbacks
## 1833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ocasio-Cortez says Trump admin trying to ‘overwhelm’ with ‘constant’ developments
## 1834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Oded Lifshitz's Family Confirms Identity of His Remains; Hamas Returns Bodies of Four Israeli Hostages; No Joint Presser with Ukrainian President Volodymyr Zelenskyy and Trump's Ukraine Envoy after Meeting; Pope's Tests Show "Slight Improvement" in Pneumonia; JD Vance Speaks at Annual Conservative Conference; Germans Head to the Polls This Weekend; Defense Secretary Orders Pentagon to Slash Budget by 8 Percent Yearly. Aired 10-11a ET
## 1835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of Mice and Mugar: Mouse spotted on third floor of Mugar Library
## 1836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Off Topic: The alt-right is lying about free speech - Washington Square News
## 1837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Off Topic: The case for dating across the political divide - Washington Square News
## 1838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Off the Radar: 'The Beaches of Agnès' is a beautiful autobiography of a life well lived - Washington Square News
## 1839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Officials tack on additional leadership review for hiring, promotions to preserve GW's 'limited' resources - The GW Hatchet Donation Button
## 1840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Officials: No Survivors In Midair Collision; 67 Believed Dead; Recovery Effort Unfolds For 67 Victims Of Passenger Jet-Chopper Crash; Trump Lashes Out At DEI, Dems Amid Crash Recovery Effort; FBI Director Nominee Kash Patel Faces Confirmation Hearing. Aired 1:30-2p ET
## 1841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ohio Dems decry chaos of attempted Trump funding freeze
## 1842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Okla. Gov. Stitt Delivers 2025 State of State Address
## 1843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On Day 2, Trump extends his long list of executive orders
## 1844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 On Jan. 20, President Donald J. Trump signed an executive order titled "Ending Radical and Wasteful Government Diversity, Equity and Inclusion (DEI) Programs and Preferencing." This order mandates the cancellation of "discriminatory programs, including il
## 1845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On Strong Foundations: The AfAm House Celebrates 55 Years
## 1846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Once a DEI leader, Google is retreating from diversity initiatives. Here's why.
## 1847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       One Black Box Recovered from Potomac After Plane-Chopper Collision; Figure Skaters, Parents, Coaches Among the 67 Killed in Crash; Trump Baselessly Blames DEI Initiatives for Plane-Chopper Collision; 67 Believed Killed In D.C. Plane-Chopper Crash; Trump Baselessly Blames DEI Initiatives For Plane-Chopper Collision; Figure Skaters, Parents, Coaches Among The 67 Killed In Crash. Aired 8-9p ET
## 1848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               One Month In: Villanova Dems & Republicans React - The Villanovan
## 1849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            One flag policy': Trump admin tells US embassies they can't fly the Pride, BLM flags
## 1850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  One in five Democratic voters say Trump is doing a good job as his whirlwind start in office attracts new fans
## 1851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       OpenAI removes diversity commitment page from its website
## 1852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Opinion | DEI reversals should open the door to new progressive attitudes - The Daily Iowan
## 1853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Opinion | Political pressure is the culprit behind the UI's department changes - The Daily Iowan
## 1854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Opinion | The juxtaposition of Trump's inauguration on MLK Day - The Daily Iowan
## 1855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Opinion | This is 2025, not 1984 - The Daily Iowan
## 1856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Opinion: 'Oh, you're an American - do you see what's happening in your country?' - The Eagle
## 1857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Opinion: 3 ways Trump may be clearing a path for whistleblowers
## 1858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Opinion: 4 reasons why a US sovereign wealth fund is a bad idea
## 1859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Opinion: 6 ideas to make the CDC great again
## 1860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Opinion: A better way to end DEI: Pass a law
## 1861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Opinion: A letter to white women from a white woman
## 1862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Opinion: As DEI falters, Black Americans should revisit the vision of Marcus Garvey
## 1863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Opinion: Could Stephen A. Smith save the Democratic Party?
## 1864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Opinion: DeepSeek's arrival is a wakeup call for AI regulation - Washington Square News
## 1865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Opinion: Democrats must command attention, or they will stay drowned out by noise
## 1866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Opinion: Government buyouts don’t cut waste, they kill expertise
## 1867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Opinion: How Trump, Musk and Bezos could preserve humanity from an asteroid strike
## 1868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Opinion: How can we defend the private sector from Trump’s war on DEI?
## 1869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Opinion: If China shares AI, the US can’t afford to lock it out
## 1870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Opinion: Modern politics demand more than a passive glance | Opinion | dailytitan.com
## 1871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Opinion: New York City under Trump's second term - Washington Square News
## 1872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Opinion: Obama’s chumminess with Trump doesn’t seem to have helped anyone
## 1873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Opinion: Our universities need both free speech and diversity protections to succeed
## 1874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Opinion: Project 2025 has slowly been implemented at the state level - The Eagle
## 1875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Opinion: Students need to rethink their relationship with weed - Washington Square News
## 1876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Opinion: The beauty of black cats - The Scarlet & Black
## 1877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Opinion: The destruction of USAID is a canary in American democracy’s coal mine
## 1878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Opinion: Thunder vs. lightning: How Democrats must navigate the Trump era
## 1879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Opinion: Trump always passes the buck
## 1880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Opinion: Trump and Musk risk radicalizing veterans
## 1881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Opinion: Trump is back and dividing us again with crash-related attacks on DEI
## 1882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Opinion: Trump wants you to believe nothing is true. Don’t believe him.
## 1883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Opinion: Trump’s crony meritocracy could shatter US civil service
## 1884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Opinion: Trump’s foreign aid freeze exports misogyny, insults sexual violence survivors
## 1885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Opinion: Trump’s idea of ‘competence’ — only white men need apply
## 1886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Opinion: USAID should help those in need, not serve as a slush fund for leftist priorities
## 1887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Opinion: What NYU owes Black students beyond Black History Month - Washington Square News
## 1888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Opinion: When public health goes dark, the nation pays the price
## 1889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Opinion: Who’s up next for the Democrats?
## 1890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Opinion: Why diversity and success are inextricably linked
## 1891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Opinion: Why were lawmakers only lobbing softballs at Sean Duffy?
## 1892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Opinion: With chaos reigning supreme, Trump’s honeymoon is already over
## 1893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Opinion: You can get anything at Costco, including DEI
## 1894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Opinion: Your life should be harder - The Scarlet & Black
## 1895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Oregon Wild: We Will Not Obey in Advance
## 1896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Organizer: Consumer economic blackout set for Friday Event is one of several to protest companies
## 1897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Oscar-Winning Actor Gene Hackman Found Dead in His Home; Trump to Welcome British P.M. Starmer to White House; Pro- Palestinian Protesters Storm Barnard College Campus. Aired 7-7:30a ET
## 1898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Oscars goes to war with Trump by nominating two trans dramas for 21 awards after president's two-genders law was branded 'shameless' by Hollywood wokerati
## 1899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Our Government Is To Conduct Itself In A Way That Is Responsible, That Is Professional, That Can Save As Many American Lives As Possible; The Democratic Party Is Again Obstructing Donald Trump's Nominees To Various Cabinet Positions; Draining The Washington, DC Swamp
## 1900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Our diversity obsession was killing the West – will Britain wake up in time?
## 1901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our dollars do count': These shoppers are using an economic blackout against companies
## 1902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Our future shouldn't be prevented by our own indifference | Editorial
## 1903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Our view
## 1904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Out Of Control Spending, Marxism And 'DEI Privilege Walks': How USAID Became Progressive Slush Fund Under Biden
## 1905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Out of Bounds: Major sports news out of Spain , France and Argentina - Washington Square News
## 1906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Outcry as Trump withdraws support for research that mentions ‘climate’
## 1907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Outrage Over Elon Musk Request To Federal Workers; Donald Trump Backs Elon Musk's 'DOGE' Productivity Push; Networks Spend Little Time On DOGE Savings: Report; Democrats And Media Missing Voters' And Courts' Support For Cuts; Activists Try To Interfere With ICE Operations; Activist Identify L.A. ICE Agents On Posters; Colony Ridge Development Raided By Authorities; Border Czar Homan Battles With Boston Officials; Trump Clashes With Maine Governor Over Trans Law; Super Bowl Summon: Should Trump Invite Philadelphia Eagles To White House?
## 1908                                                                                                                                                                                                                                                                                                                                                                                                              Over 95 Million Americans On Alert For Brutal Cold Temperatures; Trump's Mass Deportation Operation Begins With Over 300 Criminal Aliens Rounded Up On Day One; Trump Puts All U.S. Government Diversity Staff On Paid Leave "Immediately"; AI Can Predict Career Success From A Facial Image, Study Finds; "OK' Is Now Hate Symbol, The ADL Says; Noose Found In NASCAR Driver Bubba Wallace's Garage At Alabama Race; Banana Peel Found In A Tree Sparks Racial Fears; President Trump Orders All Government DEI Staff be Placed On Paid Leave; Trump State Department Implements Policy Requiring U.S. Outposts To Fly Only U.S. Flag; Philadelphia Mayor Misspells City's Football Team "Eagles" During Rally.
## 1909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Over a hundred rally in Grinnell against bill threatening civil rights for trans Iowans - The Scarlet & Black
## 1910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PA Politics: Federal Funding Fiasco and the "Lightning Plan"
## 1911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PAID LEAVE IN 2025: THREE CRUCIAL BATTLEGROUNDS FOR WORKING PEOPLE AND FAMILIES
## 1912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PBS caves to Trump closing its DEI office and seeing its staff leave the company
## 1913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PBS closes DEI office
## 1914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PDA WEEKLY REVIEW AND PREVIEW FOR 2-15-25. JOIN US!
## 1915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PLASKETT RELEASES STATEMENT ON WHITE HOUSE ATTEMPT TO PAUSE FEDERAL FUNDING
## 1916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PREPARED REMARKS: THE RULE OF LAW VERSUS THE RULE OF INTIMIDATION: THE CASE FOR DIVERSITY AND INCLUSION
## 1917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PRESIDENT APPOINTS ANDREA R. LUCAS EEOC ACTING CHAIR
## 1918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PRESIDENT TRUMP'S EXECUTIVE ORDERS GROTHMAN
## 1919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PRESS BRIEFING BY PRESS SECRETARY KAROLINE LEAVITT, DEPUTY CHIEF OF STAFF STEPHEN MILLER, NATIONAL ECONOMIC COUNCIL DIRECTOR KEVIN HASSETT, AND NATIONAL SECURITY ADVISOR MIKE WALTZ
## 1920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PRESS GAGGLE BY PRESIDENT TRUMP AT FUTURE INVESTMENT INITIATIVE INSTITUTE PRIORITY SUMMIT
## 1921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PUBLIC SCHOOLING, TRUMP, AND THE "BOOK BAN HOAX"
## 1922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pacific Legal Foundation: New Lawsuit Challenges Minnesota 's Racial Quotas for State Board
## 1923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pacific Legal Foundation: President Trump's Executive Order Ending DEI Policies is 'significant Win'
## 1924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Pacific Union College releases statement on immigration
## 1925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Page after page is disappearing from government and military websites. Here's what Trump's already purged.
## 1926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Palantir Stock Suddenly Falls 10% After Report Of Incoming Pentagon Budget Cuts
## 1927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Palestinian flags covered up at national gallery; Trump calls himself ‘king’; and the man pumping iron for art
## 1928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Palestinians Push Back Against Gaza Takeover Idea; Nation Sees Long Road ahead as it Starts to Rebuild; Inside New Leader Ahmad Al-Sharaa's Vision for the Country; Fear Among Federal Workers as Trump Administration Plans Layoffs; Arab Americans React to Gaza Takeover Proposal. Aired 9- 9:45a ET
## 1929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pam Bondi Immediately Targeted DEI, 'Weaponization' On First Day Leading Trump's DOJ
## 1930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Pam Bondi SUES Chicago over sanctuary city laws after sending DOJ into frenzy with sweeping pro-MAGA directives
## 1931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pam Bondi throws out DEI lawsuits against police and firefighters, saying no more 'quotas'
## 1932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Panelists Warn of 'Racial Weaponization' By Trump at IOP Forum
## 1933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Part Two Of Hannity's Exclusive Interview With President Trump
## 1934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Part Two of Hannity's Interview With Vice President J.D. Vance
## 1935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Party-loving senior celebrates turning 105 with birthday rave
## 1936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Passenger Jet's Black Boxes Recovered After Midair Tragedy; Trump Tariffs On Canada, Mexico , China Begin Tomorrow; U.S. Stocks Fall After Trump Tariff Announcement. Aired 2-2:30p ET
## 1937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Passenger onboard plane departing DC airport shows how 'crazy close' choppers fly next to commercial crafts
## 1938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pastor Jamal Bryant, The Next Jeremiah Wright; Radical Preacher Excoriates Black MAGA; Radical Preacher's Racist Rant; Kamala Wins NAACP Chairman's Award; Kamala's Word Of The Day, Do And Done; SAG Awards Show Experiences Technical Difficulties; Jane Fonda's Real Lifetime Achievement, Being Woke; Connecticut 's Cannibal Killer Getting Released; Democrats' Erasure Of Women; New Woke Democrat Terminology, Inseminated Person; Notice To Bureaucrats: You're Not Entitled; Left Finds New Hate Crime: Going To Work; The New Face Of The Failing Democrat Resistance
## 1939 Patel Pledges Not To Seek Retribution As FBI Director; Gabbard Grilled Over Views On FISA, Snowden; RFK, Jr. Fights For Confirmation As Votes Loom; Interview With Rep. Jim Jordan (R- OH ); Committees Set To Vote Soon On Trump Nominees; Interview With Rep. Jim Himes (D- CT ); Dual Plane Crashes Shake Confidence In Air Travel; DC Crash Marks Worst US Air Disaster In 15 Years; Interview With Sen. Roger Wicker (R- MS ); Trump Pushes Iron Dome Missile Shield In The US ; Trump Looks To Restore Military Dominance; Trump Offers Buyouts To Dissenting Federal Workers; Trump Takes Aim At Bloated Federal Budget; The Limits Of Presidential Powers to Shrink Government; Interview With Rep. Steve Scalise (R- LA ); Slim House GOP Majority Faces High-Stakes Agenda; Tariffs On Canada, Mexico and China Take Effect; Interview With Rep. Maria Elvira Salazar (R- FL ); Secretary Rubio Meets With Latin American Leaders; SecDef Touts Gitmo Plan To House Criminal Migrants; Criminal Migrant Deportations Underway; Trump Pushes To Retake The Panama Canal; Trump DOJ Drops Case Against Jeff Fortenberry
## 1940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Patrick's Politics: The worst controversies of Trump's second term so far | The Daily Campus Centered Divider Line
## 1941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Pay of Barclays CEO more than doubles to £10.5m as profits soar
## 1942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Peace Plans for Ukraine ; U.S. , Russia to Start Ukraine Peace Talks Soon; Rubio Discussing Middle East Tensions; Protests in Tel Aviv to Release All Hostages; Israel Receives U.S. Heavy Bombs; U.S. Severe Weather; Sweeping Federal Layoffs; Hampton Dellinger Allowed to Temporarily Keep Job; Pope Francis Fights Respiratory Infection; Israel Likely To Strike Iranian Nuclear Targets This Year; "Jane Doe" Drops Rape Case Against Diddy, Jay-Z. Aired 4-5a ET
## 1943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Penn State Students for Justice in Palestine react to Executive Order 13899
## 1944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pentagon Agency Won't Observe Black History Month, Holocaust Remembrance
## 1945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pentagon Releases Digital Content Refresh Memorandum
## 1946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pentagon Reportedly Halting Mass Layoffs Of Probationary Employees Pending Review
## 1947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pentagon Revokes Security Detail Of Trump Critic Mark Milley, Orders Probe Into His Conduct
## 1948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pentagon agency pauses celebrations for Martin Luther King Jr. Day, Black History Month and more
## 1949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pentagon expected to fire over 5,000 civilian staffers next week
## 1950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pentagon intelligence agency pauses observances for Martin Luther King Jr. Day, Juneteenth
## 1951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pentagon is pulled into politics as leader who promised to prioritize 'warrior culture' takes charge
## 1952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pentagon orders new purge of social media sites to dump diversity, inclusion mentions by March 5
## 1953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pentagon schools suspend library books for ‘compliance review’ under Trump orders
## 1954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pentagon scraps all cultural celebrations Hegseth: Efforts to divide force 'erode camaraderie'
## 1955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pentagon's Liberal Agenda Is Already Taking A Massive Beating
## 1956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           People will die when US stops international aid, warn Irish charities
## 1957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Pete Buttigieg responds to Trump's 'despicable' comments blaming HIM and DEI for DC plane crash
## 1958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pete Hegseth Confirmation Vote Could Happen In Hours; Sen. Tim Kaine, (D- VA ), Is Interviewed About Pete Hegseth Confirmation, RFK Jr.; The Impact Of Trump's First Days Back In Office; Trump Floats The Idea Of Getting Rid Of FEMA; Big Changes In Americans' Views On How Much To Drink; Giant Pandas Debut At D.C. 's National Zoo . Aired 5-6p ET
## 1959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pete Hegseth Confirmed As Defense Secretary; Sen. Marsha Blackburn Calls For Release Of Epstein Files; Mitch McConnell, Susan Collins And Lisa Murkowski Oppose Pete Hegseth; Media Continues Criticism Of Pete Hegseth; Rep. Kevin Kiley (R- CA ) Is Interviewed About The Need For Common Sense In California 's Policies; Trump Visits Los Angeles To Assess Wildfires Aftermath; Bass, Trump Exchange Words At Roundtable; Veterans Bring Show Of Force Supporting Hegseth
## 1960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pete Hegseth FIRES top female military staffer as military gets the DOGE treatment
## 1961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Pete Hegseth Issues Warning to Federal Workers Who Fail To 'Comply'
## 1962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Pete Hegseth Set to Fire Admirals and Generals?; Interview With Rep. Robert Garcia (D- CA ); Senate Set to Vote on Kash Patel; Interview With Sen. Jacky Rosen (D- NV ); U.S. - Ukraine Relationship Falling Apart?. Aired 11-11:30a ET
## 1963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pete Hegseth Sworn In As Defense Secretary After JD Vance Cast Tie-Breaking Vote Here s What To Know
## 1964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pete Hegseth Sworn In As Secretary Of Defense After Vance Casts Tie Breaking Vote; Sen. Grassley, Long-Time Proponent Of Inspectors General, Calls On Trump To Explain Firings Of Watchdogs; Schumer Slams Trump For "Chilling Purge" Of Several Inspectors General; Trump To Set To Meet With Supporters Today In Las Vegas ; 4 Israeli Soldiers Freed In Latest Round Of Hamas Hostage Releases; Advocate Groups Ordered To Stop Aiding Refugees Who Have Already Arrived In U.S. ; "Operation Panda" Airs Sunday At 8PM ET. Aired 12-1p ET
## 1965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pete Hegseth is booed and heckled by military families in Germany upset over anti-DEI push
## 1966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pete Hegseth moves a step closer to being Trump's Defense secretary, despite allegations
## 1967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Pete Hegseth narrowly confirmed as Trump’s defence secretary
## 1968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pete Hegseth orders DOGE-inspired $50 billion in Pentagon cuts
## 1969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pete Hegseth reveals his top priority on his first day as Donald Trump's Defense Secretary
## 1970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pete Hegseth says Trump is 'exactly right' to blame DEI for DC plane crash and details the key to the probe
## 1971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pete Hegseth says Trump is 'right' to blame DEI for DC plane crash
## 1972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Peter Thiel’s cant and retribution
## 1973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Philadelphia Eagles' Reported White House Snub Sparks MAGA Anger
## 1974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Philadelphia Mayor Says All 6 Plane Passengers Died in Crash
## 1975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Philadelphia plane crash latest: No survivors on board medical jet that was carrying six people, including a pediatric patient
## 1976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Physicians for Reproductive Health: Preparing for a Second Trump-Led Administration: The 2025 Presidential Inauguration
## 1977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Picklers serve a new club at Grinnell - The Scarlet & Black
## 1978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pingpong of executive orders is bad for US
## 1979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pissed Me Off': Whoopi Goldberg Stares Into Camera To Lecture Trump Press Sec On How 'Wokeness' Got Her A Job
## 1980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pitt unions react to federal diversity, equity and inclusion rollbacks - The Pitt News
## 1981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Plane Crash Live: 14 Still Missing As Black Boxes Recovered After Washington DC Midair Collision
## 1982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Plane crash near Washington DC : what we know so far
## 1983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Playlist: Songs for changing the world and protesting
## 1984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Police told not to say 'blacklist' over race fears Police race guidance 'utterly mad', says first black PCC
## 1985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Policing chief drops diversity guide telling officers not to say ‘black sheep’
## 1986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Political experts clash on DEI's purpose, effectiveness - The Dartmouth
## 1987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Political guru James Carville's surprising advice for Democrats as minority party flails in attempt to combat Trump and Elon Musk
## 1988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Political guru predicts Trump White House will COLLAPSE within 30 days
## 1989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Political polarization leads Kendrick Lamar halftime critiques
## 1990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pope Francis Attacked by MAGA
## 1991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Pound plunges as Bank of England cuts rates – and hints at more to come
## 1992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Power of the purse Consumers are being encouraged to boycott retailers over rollback of DEI efforts
## 1993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Power, Policy, and Pushback: A Look at President Trump's First Day in Office - The Bates Student
## 1994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              President Ambar Addresses Executive Orders, Attacks on DEI at Community Forum - The Oberlin Review
## 1995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           President Biden Issues Preemptive Pardons for Dr. Anthony Fauci and General Mark Milley; Trump-Vance Transition Adviser Jason Millers Says President-Elect Trump Prepared to Sign Executive Orders regarding Immigration and Energy Immediately Upon Taking Office. Aired 8-8:30a ET.
## 1996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  President Chilton Delivers State of the University Address - The New Hampshire
## 1997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             President Donald Trump signed an executive order to end federally funded diversity, equity and inclusion programs on Jan. 20, potentially affecting students' sense of belonging at the University of Rhode Island.
## 1998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 President En Route To Liberty Ball; Trump Attends Commander-In-Chief Ball; Trump Sworn In And Signs Executive Orders; Trump Speaks At Second Ball Of The Night; Previewing Trump Effect On Israel And Anti-Semitism; Trump Vows To End Wokeness In The Military
## 1999                                                                                                                                                                                                                                                                                                                                                                                                                                   President Fires Chairman Of The Joint Chiefs, General CQ Brown; Pentagon Announces Plans To Fire 5-8 Percent Of Civilian Workforce; Former Employees, Lawmakers Express Concerns Over CDC Layoffs; Voters Express Outrage At Town Halls Over Trump Cuts; U.S. Proposes U.N. Resolution Marking Anniversary Of War In Ukraine ; Zelenskyy Hopes For "Fair" Minerals Agreement With U.S. ; Final Living Hostages Released Under First Phase Of Gaza Ceasefire. Final Living Hostages Released Under First Phase Of Gaza Ceasefire; Patrice Willoughby, NAACP Policy Chief, Discusses Trump, Black History And DEI; Woman Accused Of Drugging, Robbing Older Men In Deadly Scheme. Aired 1-2p ET
## 2000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              President Trump Announces Tariffs on Canada, Mexico , and China; Stocks Markets Potentially Down Upon News of U.S. Tariffs on Trading Partners; Workers at U.S. Agency for International Development Receive Email to Not Show Up to Work as Trump Administration Targets Agency. Aired 8-8:30a ET
## 2001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           President Trump Blames DEI For Midair Collision. Aired 11:30a- 12p ET
## 2002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            President Trump Calls Zelenskyy A Dictator, Issues A New Warning; Elon Musk's DOGE Slashes Into A Program That Got Lawmakers On Both Sides Of The Aisle Upset; New York City Mayor Eric Adams Speaks Hours After Appearing In Court. Aired 10-11p ET
## 2003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         President Trump Defends Pardoning Violent January 6 Rioters; Evacuation Warning Just Issued As New Fire Erupts In L.A.; Trump Brushes Off Concerns Over China's Access To TikTok Data. Aired 5-5:30a ET
## 2004                                                                                                                                                                                                                                                                           President Trump Dismisses Joint Chiefs Chairman General Charles Q. Brown; Pentagon Announces Plans to Fire Tens of Thousands of Employees in Coming Week; Constituents Criticize Congressmembers at Town Halls; U.S. to Propose Resolution to U.N. that Does Not Condemn Russia as Aggressor in Conflict with Ukraine ; Measles Outbreak Grows to 90 in Texas ; Laid Off Workers at Centers for Disease Control and Prevention Complain about being Misclassified in Recent Firings; FBI Accuses Woman of Drugging and Kidnapping Elderly Men She Met on Dating Apps; New Los Angeles District Attorney Likely to Deny Motion by Menendez Brothers for Retrial; Vatican States Pope Francis Suffered Respiratory Crisis; Journalist who Covered Pan Am Plane Explosion over Lockerbie, Scotland, in 1988 Interviewed on His Experience. Aired 2-3p ET
## 2005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     President Trump Gets to Work; Interview With Dave Portnoy; Blizzard Warning Along Gulf Coast; President Trump Meets With Republican Leaders
## 2006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         President Trump Gives Media Full Access to His Leadership Style But Throws Punches Whenever He Sees Fit; Critics of President Trump are Uncomfortable for The Remarks He Made About President Zelenskyy While Pushing Vladimir Putin's Talking Points; Four Deputy Mayors Resigned After Trump's Justice Department Drops Eric Adams Case; The Media Hammered President Trump for Blaming Ukraine Over the War That Russia Started; Jason Miller Defends President Trump's Policies on Cutting Unnecessary Expenses of the Government, The Unique Language the President Uses Daily, Among Other Things
## 2007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            President Trump Gives Wide-Ranging Speech At CPAC; GOP Lawmakers Questioned, Booed At Town Hall Over Trump And DOGE; Fired: Chairman Of Joint Chiefs, Navy Chief, Air Force Vice Chief; Trump Admin Plans To Fire 5 Percent to 8 Percent Of Military's Civilian Workforce; Musk Asks Fed Employees To Give Proof Of Work Or Be Dismissed; GOP Sen. Tillis: "Vladimir Putin Is A Liar" and "Murderer"; Pope In "Critical Condition" Following Respiratory Crisis; Crowds Gather To Support Murder Suspect Mangione At Court Appearance. Aired 5-6p ET
## 2008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        President Trump Issues Executive Order on Ending Radical, Wasteful Government DEI Programs, Preferencing
## 2009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               President Trump Issues Memo on Keeping Americans Safe in Aviation
## 2010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        President Trump Jokes With Members Of The Press; A Deal With Ukraine Has Been Negotiated
## 2011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 President Trump Meets With Japanese Prime Minister; Super Bowl Set to Kick Off Sunday; Interview With Gov. Jeff Landry (R- LA )
## 2012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          President Trump Orders all Federal Diversity, Equity, and Inclusion Staff Placed on Leave; President Trump Criticizes Bishop for Statements During National Prayer Service on Inauguration; New Allegations against Pete Hegseth regarding Treatment of His Second Wife Surface; Pushback on Trump 's January 6 Pardons; Trump Administration Dismantles Federal DEI Offices, Puts Staffers on Leave. Aired 8-8:30a ET
## 2013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        President Trump Returns to Office, Leading with a Historic First Week | RMU Sentry Media
## 2014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              President Trump Revokes Biden's Security Clearance
## 2015                                                                                                                                                                                                                                                                                                                                                                                                                                                           President Trump Says The US Government Will Only Recognize Two Genders; The Former Vice President Established An LLC Called Pioneer49...; Spirit Airlines Is Cracking Down On 'Inadequate' Clothing On Its Flights; Men Have Grown Twice As Much As Women Over Past Century, Study Shows; Reporters Claim Politico Killed Negative Biden Stories; Trump Signs Order To Declassify Files On JFK, RFK And MLK Assassinations; Reporter Claims His Stories On Hunter Biden's Laptop And Tax Problem Killed by Editor; Department Of Government Efficiency Reviewing Costs Of Promotional Items Used To Advertise Federal Agencies; Guests Answer Questions From Viewers.
## 2016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   President Trump Signs More Executive Actions; Trump Completes Historic Comeback; Trump Electrifies Washington
## 2017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            President Trump Speaks at House GOP Conference Retreat in Florida ; China Announces New Artificial Intelligence Program which Sends U.S. Tech Stocks Plummeting; Newly Confirmed Defense Secretary Pete Hegseth Announces Review of U.S. Military's Transgender Policy; Colombian President Agrees to Repatriate Immigrants from U.S. After President Trump Threatens Economic Sanctions; President Donald Trump Speaks To House GOP Members; Trump: Tax Cuts For United States -Made Products; Trump: Auto Sector "Being Wiped Out"
## 2018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       President Trump Tackles Immigration Reform; Federal Employees Told To Report Efforts To Hide DEI Work; New York Jets Hire Aaron Glenn As New Head Coach. Aired 5:30-6a ET
## 2019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 President Trump Takes Questions in Oval Office; Trump and Putin Speak; Interview With Rep. Eric Burlison (R- MO ); Interview With Rep. William Timmons (R- SC )
## 2020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          President Trump and DEI: Comments and changes made by the President lead to a DEI debate - The Seahawk
## 2021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              President Trump celebrates Black History Month after abolishing diversity programs
## 2022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           President Trump orders end to government DEI programs
## 2023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      President Trump to attend Super Bowl 59, despite long and complicated history with the NFL
## 2024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              President Trump's Accomplishments During His First Month In Office
## 2025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   President Trump's Allies Look To Clarify His Ideas For Gaza; Attorney General Pam Bondi Quickly Aligns DOJ With Trump Agenda; Bird Flu Cases Lead To Higher Egg Prices In U.S. ; Panama Denies U.S. State Department's Claim That U.S. Government Ships Can Use The Panama Canal For Free; FCC Releases Kamala Harris' "60 Minutes" Interview Transcript; Google Removing Hiring Goals Targeting Diversity. Aired 5- 5:30a ET
## 2026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      President Trump's America First Priorities
## 2027                                                                                                                                                                                                                                                                                                                                                                              President Trump's New Tariffs Go Into Effect Tuesday; Canada Announces "Far-Reaching" Retaliatory Tariffs On American Goods; China Says It Will File Complaint With WTO Over Tariffs; Mexican President Announces Retaliatory Tariffs On U.S. ; 7 Dead, Including One On The Ground, After Medevac Jet Crashes In Philadelphia; NTSB Scrambles To Retain Employees After Trump's Resignation Offer; NTSB Data: Pilots Tried To Pull Passenger Jet's Nose Up Within Seconds Of Deadly D.C. Helicopter Collision. Trump Allies Push to Get RFK Jr. and Gabbard Confirmed; Health Information Related to Gender and Equity Removed from CDC Website; Grammy Awards to Benefit Wildfire Victims; Punxsutawney Phil Makes His Prediction. Aired 7-8a ET
## 2028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 President Trump's Washington Shake-Up Continues
## 2029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        President Trump's recall of DEI programs reinforces the white patriarchy
## 2030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     President Trump, Elon Musk Appears in "The Sean Hannity Show" (Part 2 of 2)
## 2031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    President Trump: Initial Rescissions of Harmful Executive Orders and Actions
## 2032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         President issues warning over DEI Corporate America already taking heed
## 2033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               President punishes public schools
## 2034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Presidential Executive Actions For Republican Agenda; Dozens Of Executive Orders Expected To Be Signed; Next Steps For Cabinet Nominees; Newly Sworn-In President Donald Trump Gives Speech to Supporters inside Capital One Arena; President Trump Signs Executive Orders before Crowd in Capital One Arena; Former President Biden Issues Pardons for His Family Members on President Trump 's Inauguration Day. U.S. Senate Passes Laken Riley Act.
## 2035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Presidents Day protests across US condemn Trump, Musk
## 2036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pressley's Statement on Trump's Executive Actions on Diversity, Equity and Inclusion
## 2037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Pressure mounts on Costco over DEI policies: 'Why would they Bud Light themselves?'
## 2038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pride Toronto loses corporate funding as Trump’s DEI purge has chilling effect
## 2039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Prince Harry Settles Legal Claims Against Tabloid Publisher; Musk Bashes $500 Billion AI Project Announced by Trump ; Trump Attacks Birthright Citizenship; Trump Targets Diversity, Equity and Inclusion Protections. Aired 4:30-5a ET
## 2040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Princeton's administration of justice is Trumpian
## 2041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Professor fuels conspiracy theories after blaming Trump for future plane crashes just HOURS before DC tragedy
## 2042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Progressive Remain Unprepared for Trump - The Oberlin Review
## 2043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Project 2025 thinktank has backed group listing ‘woke’ federal workers
## 2044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Project 2025 will transform California 's educational landscape, for teachers and students
## 2045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Promises Made, Promises Kept': CNN's Abby Phillip Credits Trump With Presenting Good Optics On Border
## 2046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Promises Made, Promises Kept: President Trump Is Tirelessly Implementing His Agenda
## 2047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Promises Made, Promises Kept; Trump Brings Sweeping Change In First Days; Trump Checks Off Major Campaign Promises; Trump Takes Immediate Action On Immigration; Chicago Mayor Vows To Protect Illegal Immigrants; Hughes Fire Explodes To 9000-Plus Acres North Of L.A.; Domestic Workers Continue Search For The Employment
## 2048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Proof of prejudice Keon West sets out the data to explore and explain the persistence of racism in society today. By Subhadra Das
## 2049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Protest against Project 2025 and Trump's policies brings people together at California Capitol - The State Hornet
## 2050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Protesters at Republican Event Told 'Your Voice Is Meaningless'
## 2051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Protesters raise objections to Trump Administration at Cabell County Courthouse - The Parthenon
## 2052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Protesters rally against Elon Musk and DOGE, urge younger generations take action
## 2053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Protestors demand end to 'executive overreach,' defend human rights
## 2054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Protestors gather at Wisconsin State Capitol for 'Not My President's Day' demonstration - The Badger Herald
## 2055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Protests on campus: Students gather round the bell for a cause - The Tack Online
## 2056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Public Citizen: Trump Administration Strips FDA DEI Health Initiatives, Harming Clinical Research and Patient Care
## 2057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Public health group alarmed by online 'DEI Watchlist' targeting federal staff
## 2058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Puri | Good riddance to diversity, equity and inclusion Login or create an account
## 2059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pushback on Trump's January 6 Pardons; Trump Administration Dismantles Federal DEI Offices, Puts Staffers on Leave. Aired: 8-8:30a ET
## 2060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Q&A with the President - Sonoma State Star
## 2061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Q&A: President Jonathan Levin addresses Trump's executive orders, Bridge peer counseling Login or create an account
## 2062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Queer community at 5Cs respond to Trump's anti-trans executive orders
## 2063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               R.I. A.G. Neronha : Joint Statement From 13 State Attorneys General - President Trump is Misleading the American People on Purpose of Diversity, Equity, Inclusion, and Accessibility Initiatives
## 2064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           R.I. A.G. Neronha Issues Multistate Guidance for Businesses on Diversity, Equity, Inclusion and Accessibility Employment Initiatives in the Workplace
## 2065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             RADICAL INDOCTRINATION HAS NO PLACE IN K-12 SCHOOLS
## 2066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RANKING MEMBER HUFFMAN SOUNDS THE ALARM ON TRUMP'S ILLEGAL MIDNIGHT PURGE OF FEDERAL WATCHDOGS
## 2067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           RANKING MEMBER MARKEY CONDEMNS TRUMP ADMINISTRATION'S ATTACK ON POLICIES TO COMBAT HISTORIC DISCRIMINATION, DEMANDS TRANSPARENCY FOR SMALL BUSINESSES
## 2068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        RANKING MEMBER RAMIREZ DEMANDS ANSWERS ON EFFECTS OF HIRING FREEZE, MASS TERMINATIONS, ACROSS-THE-BOARD CUTS ON VETERANS
## 2069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      RANKING MEMBER RASKIN'S OPENING STATEMENT AT HEARING ON THE FIRST AMENDMENT AND CENSORSHIP
## 2070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RANKING MEMBER RASKIN'S STATEMENT ON DONALD TRUMP'S BASELESS SCAPEGOATING AFTER TRAGIC PLANE CRASH
## 2071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         RANKING MEMBERS SHAHEEN, SCHATZ, MEEKS, FRANKEL: WE CANNOT AFFORD TO TAKE A TIMEOUT FROM USAID PROGRAMS
## 2072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        REASSESSING INCLUSIVE HIRING: ACCESS OVER IDENTITY IN TALENT RECRUITMENT
## 2073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             RECAP: REALITY CHECK OF PRESIDENT TRUMP'S WEEK 1 EXECUTIVE ORDERS, UNSAFE ACTIONS, AND PATH FORWARD
## 2074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  REGULATORY ALERT: PRESIDENT TRUMP TAKES SERIES OF EXECUTIVE ACTIONS ON DAY ONE
## 2075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         REGULATORY ALERT: WHITE HOUSE ISSUES ORDER TEMPORARILY PAUSING FEDERAL FINANCIAL ASSISTANCE; IMPACT ON AIRPORTS UNCLEAR
## 2076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           REMARKS BY PRESIDENT TRUMP AT EXECUTIVE ORDER SIGNING
## 2077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              REP LIEU, RANKING MEMBER MEEKS AND FOREIGN AFFAIRS DEMS URGE SECRETARY RUBIO TO PROTECT STATE DEPARTMENT WORKFORCE
## 2078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     REP. COURTNEY ON NBC CT : ELON MUSK, FUNDING FREEZE, TOP COAST GUARD FIRING
## 2079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  REP. FRANKEL JOINS CONGRESSIONAL COLLEAGUES DEMANDING IMMEDIATE ACTION TO ADDRESS TRUMP ADMINISTRATION EFFORTS TO UNDERMINE AMERICAN DIPLOMACY
## 2080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          REP. GREGORY W. MEEKS STATEMENT ON BLACK HISTORY MONTH
## 2081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         REP. KELLY: 'TRUMP'S ACTIONS AND WORDS ARE DANGEROUS, RACIST, IGNORANT'
## 2082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            REP. OGLES PROPOSES AMENDING THE 22ND AMENDMENT TO ALLOW TRUMP TO SERVE A THIRD TERM
## 2083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 REP. OGLES' STATEMENT ON TRAGIC DCA PLANE CRASH
## 2084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     REP. ROGERS APPLAUDS TRUMP ACTION TO RESTORE FOCUS OF MILITARY ON LETHALITY
## 2085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             REP. ROY, GREENE INTRODUCE LEGISLATION TO PERMANENTLY ABOLISH USAID
## 2086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               REP. SEWELL STATEMENT ON REINSTATEMENT OF TUSKEGEE AIRMEN IN AIR FORCE CURRICULUM
## 2087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      REP. SMITH STATEMENT ON TRUMP INAUGURATION
## 2088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              REP. SMITH STATEMENT ON TRUMP'S APPALLING RESPONSE TO AIR DISASTER
## 2089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       REV. SHARPTON CLARIFIES NAN-AUTHORIZED BOYCOTT TO BE ANNOUNCED IN APRIL AT NAN CONVENTION
## 2090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            REV. SHARPTON SLAMS TRUMP FOR BLAMING DEI, BIDEN, AND OBAMA FOR TRAGIC PLANE CRASH IN WASHINGTON, DC
## 2091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              REVEALED: Elon Musk and DOGE's final goal as it launches blitzkrieg through the federal government
## 2092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      RICHARD LITTLEJOHN: Trump has shocked the world by doing exactly what he promised. If only evasive, petulant Starmer would put Britain first for once, too
## 2093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RISCH, SCHMITT INTRODUCE THE DISMANTLE DEI ACT
## 2094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ROLLING BACK DEI REWARDS BLACK AMERICANS INSTEAD OF CRIPPLING THEM
## 2095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ROOKE: Hidden Deep Inside New Polling Is A Major Warning For Democrats
## 2096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ROOKE: Nation's Report Card Just Came Out Revealing Shocking Truth Parents Need To Know
## 2097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ROOKE: The Nerds Are Unknowingly Creating Perfect Storm Targeting Americans
## 2098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ROOKE: Trump Struck A Killing Blow To Heart Of Democrat Deep State Machine
## 2099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        RUNESTAD DEMANDS WHITMER PUT AN END TO WASTEFUL DEI SPENDING IN MICHIGAN
## 2100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        RUSSEL VOUGHT, PROJECT 2025 CO-AUTHOR, CONFIRMED AS FEDERAL BUDGET CHIEF
## 2101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Race and place can contribute to shorter lives, research suggests
## 2102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Rachel Maddow and other anchors lambast MSNBC's decision to cancel Joy Reid and Alex Wagner's shows
## 2103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Raging Morning Joe star takes aim at Democrats as liberal circular firing squad escalates
## 2104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Rainbows at Goucher
## 2105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ranked: Subway stations near NYU - Washington Square News
## 2106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ranking Member Maxine Waters to Chair Powell: "You Must Stand Firm in Defending the Fed's Independence, Reject Any Attempt by Elon Musk and His DOGE Minions to Gain Access to the Fed, Its Systems and Data."
## 2107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ranking Member Meeks, HFAC Dems Call on Secretary Rubio to Reverse Purge of State & USAID Workforce, U.S. Foreign Assistance and DEIA Initiatives
## 2108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ranking Member Takano's Opening Statement at Legislative Presentation of The American Legion & Multi VSOs
## 2109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ranking Members Larsen, Cohen Statements on Trump's Dangerous Freeze of Air Traffic Control Hiring
## 2110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Reactions: Which alum would you nominate for the Woodrow Wilson award?
## 2111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Recap of Trump's controversial first month of executive action - IWU Argus
## 2112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Recent Polls on Trump's Second Term; Rep. Katherine Clark (D- MA ) is interviewed about Deadline Government Workers; Associated Press Sues Trump; Trump's Vision of Energy Independence. Aired 8:30-9a ET
## 2113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Recognition of Black History Month is Essential - The Villanovan
## 2114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Recognizing and celebrating Black History Month is as important as ever, despite the erasure of many cultural observances
## 2115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Recovery And Investigation Underway In Deadly Aircraft Collision Over D.C. ; President Trump Talks Deadly Plane Crash, Tariffs; White House Still Claiming DEI Policies May Have Played Part In D.C. Plane Crash; NTSB Officials Give Update On Deadly D.C. Plane Crash. Aired 5-6p ET
## 2116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Recovery Crews Search Icy Waters For 67, All Presumed Dead; Inside Flight Simulator; Figure Skating Victims. Aired 7-8p ET
## 2117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Recovery Effort Under Way In Deadly In-flight Collision; Without Evidence, Trump Blames DEI For Deadly Collision; Source Says One Air Traffic Controller Was Working Two Different Tower Positions At Time Of Collision. Aired 5-6:00p ET
## 2118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Recovery Effort Unfolds For 67 Victims of Passenger Jet-Chopper Crash; Defense Secretary: "Mistake Was Made" During Routine Army Training Flight; Trump Lashes Out at DEI, Democrats Amid Crash Recovery Effort. Aired 2-2:30p ET
## 2119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Recovery Underway After Deadly Midair Collision; No Survivors in Midair Collision; Trump Blames Democrats and DEI for Collision; Israel - Hamas' Third Hostage-Prisoner Exchange; Figure Skaters Killed in Midair Crash; Three Confirmation Hearings in Capitol Hill. Aired 6-7p ET
## 2120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Recovery efforts continued in Washington after plane crash – as it happened
## 2121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Reddit Bans Liberal Community After Death Threats Pour In Against DOGE Workers
## 2122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Redlining's lingering public health legacy
## 2123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Reeves may use stealth taxes to fund defence, City warns
## 2124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Regent's Decision to Remove DEI Language Faces Pushback
## 2125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Regents working with universities to end federal DEI measures - The Daily Iowan
## 2126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Remaining Cautious, Fed Pauses Rate Cuts
## 2127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Rep. Adams' Statement on Trump Administration's "End DEI" Portal
## 2128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Rep. Ansari Efforts Keep Prisma Community Care Open
## 2129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Rep. Cisneros Condemns Elon Musk's Illegal Access to Government Agency Data
## 2130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Rep. Cisneros Statement on President Placing All Federal DEI Employees on Leave
## 2131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Rep. Cloud and Sen. Schmitt Introduce Bill to Codify Into Law Trump's Agenda Ending DEI in Federal Government
## 2132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Rep. Comer Applauds President Trump's Executive Orders to Bring Accountability, Reform to the Federal Workforce
## 2133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Rep. Cory Mills Introduces the DEI to DIE Act
## 2134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Rep. Estes Publishes Op-ed Applauding Efforts to Excise Wasteful Federal Spending
## 2135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Rep. Frederica Wilson's Statement on President Trump's Comments Regarding the Aircraft Crash Over the Potomac River
## 2136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Rep. Garamendi Statement on Trump's Reaction to DCA Aviation Crash
## 2137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Rep. Jesus G. "Chuy" Garcia (D- IL ) Is Interviewed About Midair Collision Investigation Intensifying; Deadly Air Crash Devastates Figure Skating Community. Aired 11-11:30a ET
## 2138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Rep. Kennedy to Federal Employees in WNY: "Buyout Beware"
## 2139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Rep. Leigh Finke (D- MN ), Is Interviewed About Trump Expected To Sign Exec. Order Banning Transgender Service Members; Surprise Chinese A.I. Advancement Shocks Nasdaq, Down Almost 600 Pts; Rep. Carlos Gimenez (R- FL ), Is Interviewed About Colombia Sending Govt. Planes To Pick Up Migrants In The U.S. Aired 11-11:30a ET
## 2140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Rep. Mark Harris Leads NC Lawmakers in Demanding a "complete and Total Overhaul" of FEMA
## 2141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Rep. Melanie Stansbury (D- NM ) is Interviewed about DOGE; Senators Vote on Hegseth Today; Michael Smerconish is Interviewed about Trump's First Week. Aired 6:30-7a ET
## 2142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Rep. Nancy Mace trolled for being a 'DEI admission' after bragging about her military academy graduation
## 2143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Rep. Olszewski, HFAC Dems Call on Secretary Rubio to Reverse Purge of State & USAID Workforce, U.S. Foreign Assistance and DEIA Initiatives
## 2144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Rep. Omar's Statement on Trump Revoking the Equal Employment Opportunity Executive Order of 1965 and Plan to Dismiss DEI Federal Employees
## 2145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Rep. Owens Joins Bill to Eliminate DEI
## 2146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Rep. Roy Re-Introduces Legislation Aimed at Eliminating DEI Positions at the Department of Defense
## 2147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Rep. Ryan Zinke (R- MT ) Speaks With CNN Following Protests Outside Office; CEO Warns Aluminum Tariffs Could Cost 100,000 American Jobs; Sen. Tim Kaine (D- VA ) On Senate Vote To End President Trump's National Energy Emergency. Aired 7:30-8a ET
## 2148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Rep. Sewell Statement on Removal of Tuskegee Airmen from Air Force Curriculum
## 2149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Rep. Smith Issues Statement on Trump Inauguration
## 2150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Rep. Sylvester Turner to Host Press Conference on President Trump's Recent Executive Orders
## 2151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Rep. Takano Joins CAPAC Leadership in Condemning President Trump's Attempt to Blame DEI Policies on Aviation Tragedy
## 2152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Rep. Tiffany Reintroduces Bill to Ban DEI in the Federal Government
## 2153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Report: Trump fires Coast Guard leader over border and DEI
## 2154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Reps. Hirono, Tokuda Condemn Trump's Federal Funding Freeze
## 2155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Republican Sues Starbucks Over DEI Policies
## 2156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Republican Warns People To Go 'Slower' on DEI Theories in DC Plane Crash
## 2157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Republican attorneys general pressure Costco to drop DEI policies
## 2158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Republican senator tells DOGE to slash two sides off the Pentagon and make it a 'Trigon' to save money
## 2159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Republican-led states call on Costco to drop DEI
## 2160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Republicans Are Floating Plans To Raise the Endowment Tax. Here's What You Need To Know.
## 2161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Republicans Buck Trump Over Whether DEI Was Responsible For DC Plane Crash
## 2162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Republicans labeled BlackRock as 'woke.' Here's a brief history of how the firm has tried to shed that description.
## 2163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Republicans skeptical of major gains on Trump orders in shutdown fight
## 2164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Research arm of Education Department sees cuts after DOGE review
## 2165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Researchers, Educators Rally in Downtown Boston To Protest Trump's Research Funding Cuts
## 2166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Researching Trump’s statements about DEI, past administrations after DC crash | In context
## 2167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Revealed: how a shadowy group of far-right donors is funding federal employee watchlists
## 2168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Reverse discrimination' case comes to Supreme Court as DEI is under siege
## 2169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Review: 'I Am Because We Are' is a mesmerizing celebration of womanhood and identity - Washington Square News
## 2170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Review: 'Mo' season 2 is a comedic comfort in Trump's America - Washington Square News
## 2171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Review: Drake and PARTYNEXTDOOR reunite on '$ome $exy $ongs 4 U' - Washington Square News
## 2172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Review: Ethel Cain is back, and you should be afraid - Washington Square News
## 2173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Review: Exhibition at La Maison Française challenges the definition of art - Washington Square News
## 2174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Reviewing Trump's Executive Orders - Nubian Message
## 2175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Revolution is in the air as Trump arrives with a bang – but can he follow through?
## 2176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ridiculous' to believe calls help Chiefs - Goodell
## 2177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Right-Leaning Activist Groups Reportedly Putting Heat On Big Banks To Ditch DEI Policies
## 2178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Right-Wing Commentator Named FBI Deputy Director; Pope In Critical Condition; Health Agencies Reel From Thousands Of Job Cuts While Critical Research Grants Remain On Hold. Aired 7:30-8a ET
## 2179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Right-wing priest loses license after 'salute' at pro-life summit
## 2180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Riley Gaines stunned as trans activist claims Paralympians should compete against Olympians in gender neutral competition
## 2181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Rip up diversity rules ‘that will only create jobs in HR’, bosses demand
## 2182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Roberta Flack Dies; Does DOGE Risk Exposing National Security Secrets?; Interview With Rep. Pete Sessions (R- TX ). Aired 11:30a-12p ET
## 2183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Roger Goodell Goes Against Donald Trump, Announces NFL Will Continue DEI Support
## 2184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Roger Goodell Speaks Out Against Chiefs Referee Controversies
## 2185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Roger Goodell brushes aside 'ridiculous theory' that NFL officiating favors Chiefs
## 2186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Rollback on diversity policies ‘risks undoing decades of progress’, says Co-op
## 2187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ron DeSantis Launches DOGE Task Force for Florida
## 2188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Roseanne Barr digs at Trump's 'Special Envoy' stars... after claiming she was frozen out by MAGA inner circle
## 2189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Rubio accuses South Africa of ‘anti-Americanism’ and snubs G20 meeting
## 2190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Rubio exempting ‘life-saving humanitarian assistance’ from foreign aid restrictions
## 2191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Rubio skipping G20 summit amid tensions with South Africa
## 2192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Rubio to shun South African G20 meeting over drive for 'equality' Boycott
## 2193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Rubio will skip a G20 meeting after calling host South Africa 's policies anti- American
## 2194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          S Africa pledges to pursue Israel over Gaza International Court of Justice Foreign minister insists on genocide case continuing despite Trump pressure
## 2195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SACUA discusses challenges in higher education and University policy
## 2196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           SALSC plans "Fruit with Faculty" event to facilitate discussion - The Scarlet & Black
## 2197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SBA ADMINISTRATOR LOEFFLER ISSUES MEMO ON DAY ONE PRIORITIES
## 2198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SCOTT JENNINGS: America 's 'Worst Pundit' predicts Trump will collapse within 30 days... here's the glaring truth that utterly destroys his case
## 2199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       SEC Chair Uyeda: Remarks at the Florida Bar's 41st Annual Federal Securities Institute and M&A Conference
## 2200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SECRETARY ROLLINS DELIVERS OPENING REMARKS AT USDA HEADQUARTERS
## 2201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SECRETARY ROLLINS TAKES BOLD ACTION ON DAY ONE
## 2202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       SEN. RICK SCOTT LEADS LEGISLATION TO RESTORE MERIT-BASED HIRING IN THE FEDERAL GOVERNMENT
## 2203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             SEN. STEVE DAINES: UNDER PRESIDENT TRUMP, IT'S A NEW DAY IN AMERICA
## 2204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SENATE QUESTIONS MCMAHON ON THE FUTURE OF THE EDUCATION DEPARTMENT, DEI, AND STUDENT AID IN CONFIRMATION HEARING
## 2205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           SENATE SHOULD REJECT THE NOMINATION OF PETE HEGSETH FOR DEFENSE CHIEF
## 2206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               SENATE UPDATE: THE GREAT BETRAYAL
## 2207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SENATOR SCHMITT APPLAUDS TRUMP FOR SWIFT ACTION ON PRESSING ISSUES LIKE BORDER, ENERGY, ADMINISTRATIVE STATE
## 2208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           SGA discusses removal of chairperson, decision tabled - Northern Star
## 2209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SHOCK AND AWE WEEK 2
## 2210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SHOULD BUSINESSES STILL RECOGNIZE OBSERVANCE MONTHS?
## 2211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SHRM'S BEAM FRAMEWORK FOR INCLUSION: ALIGNING MERIT WITH ORGANIZATIONAL EXCELLENCE
## 2212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SIA GOVERNMENT RELATIONS UPDATE: WHAT THE FEDERAL GRANTS PAUSE MEANS FOR THE SECURITY INDUSTRY
## 2213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               SIU board remains committed to DEI, hints at Carbondale's imminent R1 status - The Daily Egyptian
## 2214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SIUE affirms commitment to LGBTQ+ community in wake of election
## 2215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SJP proposed referendum results show student support for University endowment divestment
## 2216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SNL mocks return of 'King Trump' as host Timothee Chalamet delivers an off-color joke about Jimmy Carter
## 2217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          STANTON, HOUSE FOREIGN AFFAIRS COMMITTEE DEMOCRATS CALL ON SECRETARY RUBIO TO REVERSE PURGE OF STATE AND USAID WORKFORCE, U.S. FOREIGN ASSISTANCE AND DEIA INITIATIVES
## 2218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      STATE OF THE CITY 2025 SEATTLE ON THE RISE
## 2219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                STATEMENT AT THE OPENING SESSION OF THE UN WOMEN EXECUTIVE BOARD
## 2220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                STATEMENT BY COMMISSIONER SID MILLER ON GOVERNOR ABBOTT'S LEGISLATIVE PRIORITIES
## 2221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            STATEMENT BY PERFORMING THE DUTIES OF DEPUTY SECRETARY OF DEFENSE ROBERT G. SALESSES
## 2222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               STATEMENT FROM CONGRESSMAN ROGERS
## 2223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  STEFAN PADFIELD: IS APPLE'S DEI PROGRAM ONE OF THE NINE WORST?
## 2224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 STEM majors gather outside Hayden Library in protest of federal funding freezes
## 2225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    STOPPING ILLEGAL IMMIGRATION
## 2226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       STUDENTS FROM COUP-HIT MYANMAR LAMENT LOSS OF CANCELED 'DEI' SCHOLARSHIPS
## 2227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SU holds 37th annual Dr. Martin Luther King Jr. March for Humanity
## 2228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SULLIVAN STATEMENT ON FEDERAL FUNDING PAUSE AND REVIEW
## 2229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Sabrina Singh is Interviewed about the Pentagon Shakeup; W. Kamau Bell is Interviewed about Performing at the Kennedy Center; SAG Awards Balance Jokes with Heaviness. Aired 9:30-10a ET
## 2230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Salazar Denounces Wasteful DEI Spending at Biden-Harris USAID
## 2231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Salesforce chief predicts today's CEOs will be the last with all-human workforces
## 2232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 San Diego Unified lost funding for teacher training as feds say it promotes DEI
## 2233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Santa Ono sits down with The Daily to talk Campus Plan 2050, DEI in higher education and campus tensions
## 2234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Sassy Cassie: DEI is vital in higher education
## 2235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Sassy Cassie: Trump's first two weeks do more harm than good
## 2236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Saturday Night Live slammed after controversial comedy segment about the Trump assassination attempt
## 2237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Saturday Night Live's Legacy: Why SNL still matters - The Voice
## 2238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Saying 'yes' to DOGE: One federal worker explains why he accepted the 'fork in the road' offer
## 2239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Saying ‘women’ is not allowed, but ‘men’ and ‘white’ are OK? I’m (not) shocked
## 2240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Schoolchildren walk out of Pete Hegseth’s speech in DEI protest
## 2241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Schools serving military service members' kids are pulling books on civil rights history after Trump's DEI threats
## 2242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Schools, colleges receive 'dear colleague' letter from Department of Education threatening to withhold federal funds over DEI programs - City Times
## 2243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Schumer hits Trump over funding freeze memo reversal: ‘Americans made their voices heard’
## 2244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Schumer knocks Trump’s ‘idle speculation’ on DC plane crash: ‘It just turns your stomach’
## 2245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Science is non-partisan': Pitt researchers face NIH funding freeze - The Pitt News
## 2246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Scoop: ICE returns to calling immigrants "aliens"
## 2247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Scottsdale council looks to emulate Trump policies on DEI and return-to-work
## 2248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Scream Night' At DNC: Dems Double Down On Election Losers In Chaotic Forum Repeatedly Disrupted By Climate Extremists
## 2249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Sean Duffy : What to know about newly appointed Department of Transportation secretary
## 2250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sean Duffy is confirmed by the Senate to lead the Transportation Department
## 2251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Seasoned pilot Lauren Sanchez blasts racist, sexist rage-baiting as Trump blames DEI for aviation disaster
## 2252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Second American Revolution': The team behind DOGE's government overhaul
## 2253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Second Trump administration threatens free speech
## 2254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Secret Government Sex Chats?; President Trump Takes Questions at White House; Interview With White House A.I. and Crypto Czar David Sacks; Interview With Rep. Brandon Gill (R- TX ); Cartel Turf Wars
## 2255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Secretary of Defense Pete Hegseth Town Hall at the Pentagon
## 2256                                                                                                                                                                                                       Secretary of State Marco Rubio Interviewed on Trump Administration Proposal to Fold USAID into State Department and Possibly Renewal of Maximum Pressure Campaign against Iran to Prevent Their Production of Nuclear Weapons; Ivanpah Solar Plant in California Shutting Down after 11 Years in Operation; Trump Administration Delays Imposition of Tariffs on Canada and Mexico . Donald Trump Delays Tariffs On Mexico And Canada; Democrats Criticize Donald Trump Policy And Elon Musk Connection; Federal Agencies Brace For Potential Overhaul; Donald Trump And Justin Trudeau Push Pause On Tariff Dispute; Trump And Trudeau Push Pause On Tariff Dispute; United States And Canada Announce Joint Strike Force; Rae Denounced Trump During First Term; Search Continues For Additional Remains To Potomac ; Data Records Reveal New Details Moments Before Crash; Investigation Into Philadelphia Plane Crash
## 2257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Sen. Bernie Sanders: U.S. Moving Toward Oligarchy; Officer Hodges: Rioters Attacked Me, They Don't Deserve A Pardon; Denver Mayor Says City Will Work With ICE On Deporting Criminals, But Won't Allow Arrests At Schools & Churches. Aired 9-10p ET
## 2258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sen. Cruz-Led Investigation Labels $18M in Cornell Research Grants as Promoting DEI, 'Neo-Marxist Class Warfare Propaganda'
## 2259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sen. Jim Banks at CPAC: "The Golden Age of America Means the Death Of DEI"
## 2260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Sen. Jim Banks: Trump Leading America Into New Golden Age | Opinion
## 2261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Sen. Kelly says Trump’s DEI remarks on plane crash reflect ‘poor leadership’
## 2262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sen. Peter Welch (D- VT ) is Interviewed about Kash Patel; Trump Links Diversity to Collision; Controversial Cabinet Picks Face Senators. Aired 6:30-7a ET
## 2263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Sen. Tim Kaine (D- VA ) Discusses Plane-Chopper Midair Collion, Trump Lashing Out at DEI, Democrats; Soon: NTSB Press Conference On Deadly Plane Collision; New Details On Victims Aboard Aircraft; NTSB Gives Update On Investigation Into Deadly Midair Collision. Aired 2:30-3p ET
## 2264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Sen. Warren Grills RFK Jr. On Money From Vaccine Lawsuits: "Kids Might Die, But Robert Kennedy Can Keep Cashing In"; WH Backpedals On Chaotic Funding Freeze Hours After Announcing It; FAA: Passenger Jet Collided In Midair With Black Hawk Helicopter. Aired 9- 10p ET
## 2265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Senate Assembly discusses elections and future of research funding
## 2266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Senate Committee Targets $3 Million in Harvard NSF Research Grants for 'Far-Left Ideology'
## 2267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Senate Democrat: Trump DEI remarks in wake of DC plane crash ‘stomach-turning’
## 2268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Senate Democrats Launch Whistleblower Portal To Make It Easier For Officials To Fight Trump Admin From Within
## 2269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Senate Democrats pledge to hold floor all night in protest against Trump’s budget pick – live
## 2270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Senate Passes Budget Plan After Vote-A-Rama; Bodies Of Bibas Children Returned Without Mother; Trump Clashes With Maine Governor Over Trans-Athletes
## 2271                                                                                                                                                                                                                                                                                                                                                               Senate Votes To Confirm Noem As Homeland Security Secretary; Pete Hegseth Sworn In As Secretary Of Defense After Vance Casts Tie- Breaking Vote; Trump To Meet With Supporters Today In Las Vegas ; Hospital Says All 4 Released Hostages Are In Stable Condition; Trump, Bass Clash On Rebuilding Efforts During Wildfire Roundtable; White House Begins Deportations On Military Aircraft; U.S. Military Increased At U.S. - Mexico Border; Source: Deportation Operations Could Target Over 2 Dozen Cities; Undocumented Immigrants Fear Going Out Amid Crackdown; Some North Carolina Residents Displaced By Storm Slam FEMA; Rep. Chuck Edwards (R- NC ) Discusses Trump Tour Of Hurricane Helene Damage, Trump Saying He May Get Rid Of FEMA. Aired 1-2p ET
## 2272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Senate alleges $4.9 million in Vanderbilt and VUMC NSF-funded research as promoting 'far-left ideology' - The Vanderbilt Hustler
## 2273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Senate bill seeks to financially penalize state agencies with mandatory DEI programs
## 2274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Senate committee advances ex-wrestling CEO Linda McMahon as Trump's nominee for education secretary
## 2275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Senate confirms Doug Collins as VA secretary
## 2276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Senate confirms Pete Hegseth as next defense secretary - Indiana University Student Television
## 2277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Senate investigation led by Ted Cruz '92 targets $2.4 million in Princeton research grants
## 2278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Senator Murray Slams Trump & Elon Threatening to Rip Away Federal Funding for Public Schools & Colleges Over Political Crusade: "Do Not Be Intimidated"
## 2279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Senator Schmitt, Congressman Cloud Introduce the Dismantle DEI Act
## 2280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Senator accuses Trump of executive order 'blitzkrieg' to 'collapse our democracy'
## 2281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Senators Rick Scott and Eric Schmitt Introduce Dismantle DEI Act
## 2282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Senior Pentagon official acknowledges budget cuts under consideration
## 2283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Service members reveal how Trump can 'rejuvenate' the military after COVID purge and DEI 'demoralization'
## 2284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Seth Meyers on Elon Musk’s US takeover: ‘A billionaire coup’
## 2285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Seth Meyers on Trump: ‘Dismantling the government like he’s hacking away at a stolen Benz in a chop shop’
## 2286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shame On You': Sean Spicer Verbally Jousts With Dem Contrib Who Suggests DOGE Not Cutting 'Fraud, Waste And Abuse'
## 2287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sharpton announces boycott of companies ending DEI
## 2288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Sheinbaum offers condolences after 6 Mexican nationals killed in Philadelphia plane crash
## 2289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sheriff's Office withdraws from federal grant funding immigrant inmate records - The Badger Herald
## 2290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Sheryl Crow says goodbye to her Tesla and donates to NPR : 'You have to decide who you are willing to align with'
## 2291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shock and Awe: Trump's First Two Weeks - The Spire
## 2292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shock and awe' coming with immediate actions From mass deportations to ending EV mandate, second term starts with a bang
## 2293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Shoppers are avoiding certain brands over politics: poll
## 2294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shopping blackout aims to put Trump back in his box As today's boycott evolves into a day of consumer action against the US president, Chris Blackhurst looks at whether deleting Amazon and other apps will really make a difference
## 2295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Should You Boycott Target Over DEI Cuts? Internet Divided
## 2296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sky owner faces Trump investigation over diversity policies
## 2297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sky owner faces investigation in US over diversity policies
## 2298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Skyline Chili, Graeter's release a sweet and savory "Skyline Spice" ice cream
## 2299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Small businesses, Black-owned brands and Latinx-run companies to support
## 2300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Snoop Dogg went back on his word with Trump performance. He deserves the backlash. | Opinion
## 2301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So...what has Trump done well? - The Carletonian
## 2302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Social Security Announces Changes After Trump Executive Order
## 2303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Some USF students reconsider their careers after Trump's DEI cuts
## 2304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Some call DEI backlash 'kick in the teeth' Federal employees with disabilities, many of them veterans, feel targeted
## 2305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Some consumers are not spending money for today's economic blackout. Here's what to know.
## 2306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sonoma State slashes departments that reflect Trump's executive orders - Sonoma State Star
## 2307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Soon: Trump Holds Event Marking Black History Month; Sources: Defense Secy. Could Soon Fire Top Generals, Admirals; Sen. Richard Blumenthal (D- CT ) Discusses About Hegseth's Firing of Generals; Sen. Blumenthal Urges Trump Admin. to Reverse Terminations at FAA; Zelensky Calls Meeting with U.S. Envoy Kellogg "Productive". Aired 3-3:30p ET
## 2308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Source: Donald Trump Had A Call With Vladimir Putin; U.S. Senate Confirms Tulsi Gabbard As Intelligence Chief; Trump Hosts Jordan 's King, Reiterates Gaza Takeover Plan; Musk, Trump Defend Sweeping Efforts To Reshape Federal Government; White House Bars "AP" Reporters Over "Gulf Of America" Spat; Wave Of Severe Storms Crossing The U.S. ; Donald Trump And Volodymyr Zelenskyy Spoke By Phone. Aired 12-1p ET
## 2309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Sources Say, Trump Expected To Get Back Classified Documents Taken By FBI; Former USAID Leaders Condemn Trump's Attempts To Dismantle Agency; Trump Admin Tries To Walk Back His Gaza Comments Amid Global Outrage; Police: 100,000 Eggs Stolen From PA Distribution Center As Supply Crunch Sends Prices Soaring; Wolf Blitzer Honored For Excellence In Journalism. Aired 6-7p ET
## 2310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sources: Trump Admin Moves To Begin Dismantling Dept. Of Education; Sources: Trump Admin. Drafting Executive Order To Start Process Of Eliminating Education Dept.; Trump's Actions Echo Project 2025 Despite His Previous Denials; Trump Signs Executive Orders At White House; Trump Signs Order Withdrawing U.S. From UN Human Rights Council. Aired 3-3:30p ET
## 2311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Sources: Trump May Invite Some Jan. 6 Rioters On White House; Trump , Republicans In Congress Defend Jan. 6 Pardons; Trump Dismantles Federal DEI Offices, Puts Staffers On Leave. Aired 12-12:30p ET
## 2312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        South Africa has been blindsided by Trump GLOBAL AFFAIRS
## 2313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         South Africa vows to pursue Israel genocide case despite Trump pressure
## 2314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Southern Indiana residents react to DEI initiatives elimination
## 2315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Spanish PM is Europe’s most outspoken Trump critic – with an ulterior motive
## 2316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Speak On It: NAACP President discusses hardships at Texas State
## 2317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Speaker Johnson Announces New January 6 Subcommittee; Sources: White House In Talks For January 6 Convicts To Meet With Trump; Mandatory Evacuation Orders As New Fire Breaks Out Near L.A.; U.S. Military Orders Thousands More Troops To Southern Border; UK Tabloid Settles With Prince Harry, Apologizes For Phone Hacking; Trump Threatens Sanctions On Russia If Fighting Doesn't End. Aired 4-5p ET
## 2318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Speaker Johnson on President Trump's First Two Weeks: Win After Win After Win
## 2319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Speaker Johnson: President Trump Has Done More for the American People in 48 Hours than Joe Biden Did in Four Years
## 2320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Speeches rule the night at the 67th Grammys - The Pace Press
## 2321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Spells Trouble': Dem Strategist Warns His Party Is Out Of Touch With Major Issue Confronting Americans
## 2322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Squad' member Ilhan Omar has very choice words for Dems who attended Trump 's swearing in
## 2323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Stacey Abrams Somehow Concludes That JD Vance Is 'DEI Graduate' During Meandering Rant
## 2324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Staff Editorial: AU can't stay silent in the face of the Trump administration's policies - The Eagle
## 2325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Staff Editorial: WashU administration, please speak up against bigotry
## 2326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Staff Recs: For the Valentine's Day haters - Washington Square News
## 2327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Staff Recs: Self-care - Washington Square News
## 2328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Staggering bonuses given to Costco executives for hitting DEI targets
## 2329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Starmer plays royal card as he tiptoes around the madness of King Donald
## 2330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Starmer urged to follow Trump's diversity cull NEWS BULLETIN
## 2331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Starmer-Trump meeting live: PM flies to US for crunch talks ahead of Zelensky visit to UK
## 2332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Start your week smart: Hegseth confirmed, hostages released, South Korean president, FEMA's future, religious charter schools
## 2333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Startups are showering employees with wild perks, from MRIs to 'pawternity leave'
## 2334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  State Department told to 'downplay' Black History Month to back Trump's anti-DEI order: report
## 2335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              States Urged to Shield Public Pensions From Federal Anti-ESG Assault, Report Finds
## 2336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Steinhardt USG becomes first school-specific student gov't to offer stipends - Washington Square News
## 2337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Stephen A. Smith Says Hold Off On Judging Musk's Efforts, Says Don't Stand In His Way Of Exposing Hidden Agendas
## 2338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Stephen A. Smith sends Democrats a message over trans issues after landing on 2028 President poll
## 2339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Stephen A. Smith shocks Sean Hannity with brutal verdict on his former Fox colleague Pete Hegseth
## 2340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Stephen A. Smith throws Hannity's DEI rant back in his face with Hegseth dig
## 2341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Stephen Miller Gives Corporate Media 'Civics Lesson' During White House Briefing
## 2342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Stern MBA program launches at Abu Dhabi campus - Washington Square News
## 2343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Stokes announces UNM rapid response teams after Trump administration actions - The Daily Lobo
## 2344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Stonewall National Museum says anti-LGBTQ policies have hurt funding
## 2345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Stop deregulation - The Maine Campus
## 2346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Straight woman lost two jobs to gay colleagues. Supreme Court will decide if she can sue.
## 2347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Straight woman's 'reverse discrimination' case could upend decades of equality safeguards
## 2348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Streeting attacks Nigel Farage as ‘miserablist declinist’
## 2349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Stress impacts academic as students struggle to balance school, work - PNW Pioneer
## 2350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Strike averted at Costco as Teamsters reach a tentative deal
## 2351                                                                                                                                                                                                                                                                                                                                                                           Strong Winds Fuel New Wildfires In Southern California ; Trump Brushes Off January 6 Rioters Beating Cops: Minor Incidents; Trump Curtails Protections Around Diversity, LGBTQ Rights; Trump Grants Temporary Security Clearances To Officials Who Have Not Been Fully Vetted; Trump Threatens Putin With Taxes, Tariffs And Sanctions Over Ukraine War; Strong Winds Fuel New Wildfire Near Los Angeles; Funerals Held for Victims of Deadly Fire at Ski Resort; White House Threatens Sanctuary Cities; Same-Sex Marriage Law Takes Effect, Hundreds Tie the Knot; Bouncing Back from the Brink of Extinction; Bytedance Board Member: Deal in the Works to Save TikTok; Prince Harry Settles Legal Claims against Tabloid Publisher. Aired 1-2a ET
## 2352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Strongman Trump erodes US liberal instincts President's vengefulness was never in doubt but the institutional willingness to restrain him appears to be fading
## 2353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Student leaders fear decreased minority enrollment, employment opportunities after Trump DEI rollback
## 2354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Student leaders react to Trump administration's returns to 2020 Title IX ruling
## 2355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Student protest demands WSU protects undocumented students, DEI - The Daily Evergreen
## 2356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Student protest held on campus in support of DEI initiatives - The Daily Wildcat
## 2357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Student-led town hall addresses Trump Administration policies, reaffirms student solidarity
## 2358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Students 'March for Justice' against Trump's latest executive orders - Kentucky Kernel
## 2359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Students Band Together to Form Trinity s First Campus Town Hall
## 2360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Students Express Fear for Affinity Groups Under Trump at Town Hall
## 2361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Students Support Seattle Children's Hospital with Pie-a-President Event - The Spectator
## 2362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Students Will Be Better Off': Former Education Secretary Pitches Plan To Completely Dismantle Her Old Agency
## 2363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Students and faculty speak up against anti-DEI initiatives - The Daily Evergreen
## 2364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Students do not want political statements, survey says - The Minnesota Daily
## 2365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Students frustrated by limited access to high priced tech needed for studies - PNW Pioneer
## 2366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Students protest NYU investments outside trustees' finance meeting - Washington Square News
## 2367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Students react to Trump administration's ICE raids and DEI dissolution
## 2368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Students react to Trump's executive orders
## 2369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Students respond to rollback on Diversity, Equity, and Inclusion initiatives - The Maroon
## 2370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Students seek clarity about future of DEI
## 2371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Students urge University leaders to resist Trump's executive orders Login or create an account
## 2372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Students voice concerns over Trump's executive orders
## 2373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Students want Trump to tackle real problems, not global expansion - PNW Pioneer
## 2374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Students, Olympic skaters, families and more. A tribute to lives lost in the DC plane crash
## 2375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Students, community call on CSU administration to support DEIA, CRCs - The Rocky Mountain Collegian
## 2376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Sudden removal of DEI in UNCA curriculum causes concerns among staff and students - The Blue Banner
## 2377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Sunny Hostin claims Trump is an unqualified 'DEI' hire in apoplectic rant
## 2378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Sunrise on Trump Executive Orders: 'An Unprecedented Handout to Billionaires; Democrats Need to Take the Gloves Off'
## 2379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Super Bowl sign language performers already had low screen time before attacks on DEI
## 2380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Super Bowl: Kendrick Lamar, the ads, Taylor Swift and everything but the football – as it happened
## 2381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Super Sick Monday  Sees 22.6 Million Miss Work
## 2382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Support for ESG proposals at record low driven by US investors, report shows
## 2383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Support international and undocumented students
## 2384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Supreme Court Hears Discrimination Case; Elon Musk Attends First Trump Cabinet Meeting. Aired 11:30a-12p ET
## 2385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Supreme Court Just Dealt Donald Trump 'Unexpected' Loss—Legal Analyst
## 2386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Supreme Court appears sympathetic toward straight woman’s ‘reverse discrimination’ case
## 2387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Supreme Court could lower bar for white workers to sue for racial bias
## 2388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Supreme Court seems likely to rule for Ohio woman claiming job bias because she's straight
## 2389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Swift justice for influencer who filmed herself calling for Elon Musk's murder and boasted about not paying tax
## 2390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Swimming and wrestling dominate the UAA, track & field shatters records and other news - Washington Square News
## 2391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   TEXAS AGRICULTURE COMMISSIONER SID MILLER DECLARES WAR ON DEI
## 2392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 TEXAS INTRODUCES LANDMARK BILL TO END DEI INDOCTRINATION IN PUBLIC UNIVERSITIES
## 2393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          THE FIRST 100 HOURS: HISTORIC ACTION TO KICK OFF AMERICA 'S GOLDEN AGE
## 2394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      THE INFRASTRUCTURE OF RACIAL JUSTICE IS UNDER ATTACK. WE MUST FIGHT FOR IT
## 2395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             THE ROLE OF THE DEPARTMENT OF GOVERNMENT EFFICIENCY
## 2396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        THIS SUNDAY: NINA TURNER ON HOW WE DEFEAT TRUMP'S RACIST BACKLASH AGAINST DEI. RSVP NOW!
## 2397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      THREE WEEKS IN: IMPACTS OF THE NEW ADMINISTRATION'S ACTIONS ON SAFE ROUTES
## 2398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TITLE VII REFRESHER IN LIGHT OF POSSIBLE CRIMINAL INVESTIGATIONS
## 2399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           TRUMP "DAY ONE" EXECUTIVE ORDER RECAP
## 2400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TRUMP ADMINISTRATION STRIPS FDA DEI HEALTH INITIATIVES, HARMING CLINICAL RESEARCH AND PATIENT CARE
## 2401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           TRUMP EXECUTIVE ORDER ENDS AFFIRMATIVE ACTION FOR FEDERAL CONTRACTORS
## 2402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             TRUMP SETS THE TONE FOR SECOND TERM
## 2403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   TRUMP TERMINATES FIRST WOMAN TO LEAD A BRANCH OF THE MILITARY
## 2404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      TRUMP WHITE HOUSE ACTIONS TO DATE: MSU EXPERTS CAN COMMENT
## 2405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         TRUMP'S ANTI-DEI POLICY AND PRIVATE-SECTOR DICTATORSHIP
## 2406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TRUMP'S DEI EXECUTIVE ORDERS DO NOT CHANGE TITLE VII
## 2407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               TRUMP'S EXECUTIVE ORDERS ARE ONLY THE FIRST STEP IN DEFEATING DEI
## 2408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TRUMP'S EXECUTIVE ORDERS ROLLING BACK DEI AND ACCESSIBILITY EFFORTS, EXPLAINED
## 2409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       TRUMP'S EXECUTIVE ORDERS SHIFT HIGHER EDUCATION LANDSCAPE
## 2410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         TUBERVILLE GETS GAVEL FOR HELP SUBCOMMITTEE ON EDUCATION AND THE AMERICAN FAMILY COACH TOMMY TUBERVILLE
## 2411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         TUBERVILLE, SCOTT LEAD LEGISLATION TO RESTORE MERIT-BASED HIRING COACH TOMMY TUBERVILLE
## 2412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     TYLER O'NEIL: What's Really Behind The Left's Freakout As Trump Dismantles 'Environmental Justice' Offices?
## 2413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Takano: Trump Must Pledge to Stay Out of NTSB's Investigation into DC Crash
## 2414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Talking Money And Taxes At Work
## 2415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Target Boycott March 5: 40-Day Fast Explained
## 2416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Target Drops Diversity Initiatives After It Previously Caved To Pressure From Pride Month Collection
## 2417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Target Post Flooded With Negative Comments After DEI Move
## 2418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Target Sued Over DEI
## 2419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Target becomes latest big US company to end diversity initiatives
## 2420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Target ditches all DEI programmes after Trump inauguration
## 2421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Target hit by consumer anger at its retreat from diversity policies
## 2422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Target is banned from Pride parade as revenge for axing DEI policies
## 2423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Target is ending its diversity goals as a strong DEI opponent occupies the White House
## 2424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Target is getting hit from all sides on DEI
## 2425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Target is the latest company to roll back some DEI programs
## 2426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Target latest company to roll back DEI programs
## 2427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Target pulling back DEI initiatives, shares "Belonging at the Bullseye" strategy
## 2428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Target restructures DEI initiatives: what this means for minority-owned businesses
## 2429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Target was one of the most outspoken supporters of DEI. It's changed its tune
## 2430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Target's DEI rollback raises questions about the retail giant's philanthropic commitments
## 2431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Target's DEI rollbacks spark debate on whether boycotts effectively show support for minority-owned businesses
## 2432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Tariff Debate Rages In Davos As Trump Makes New Threats; Jamie Dimon On Tariffs: Get Over It; Finnish President: The World Order Is Changing; U.S. Government Puts DEI Workers On Administrative Leave; Interview With Richard Edelman On Sense Of Grievance; Hughes Fires Grow Rapidly In Los Angeles County ; Dutch PM Says Europe Needs To Have A Backbone Against Trump. Aired 4-5p ET
## 2433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Tax Breaks: The Disappearing IRS Tax Documents Edition
## 2434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Tax refund 2025: What to know about IRS' tax season, filing taxes and more
## 2435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Teacher tells ICE to visit high school where many students 'don't even speak English'
## 2436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Teachers union sues over Trump admin’s DEI warning to schools
## 2437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Tech CEOs Talk About U.S. Stargate Investment; Now: President Trump Takes Questions
## 2438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Tech bros Mark Zuckerberg, Jeff Bezos and Tim Cook sit together in church as Trump inauguration begins
## 2439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Tech execs send signals about where their companies are headed
## 2440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Tech titans stand with Donald Trump to kill off activism in Silicon Valley
## 2441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Tech titans stand with Trump while liberal Silicon Valley staff stay quiet Employees in 'velvet handcuffs' have done little to protest against rightward shift of their leaders
## 2442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ted Cruz names IU Trustees in list of 'woke' DEI grants from National Science Foundation - Indiana Daily Student
## 2443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ted Cruz takes on 'woke DEI propagandist' government consultants raking in thousands
## 2444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Tell us what free speech means to you at a time when that's up for debate | Opinion
## 2445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ten things Americans think about Trump’s first month in office
## 2446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Tensions High Between Officers, Judges, Rioters Over Pardons; Trump Orders Thousands Of Troops To Southern Border; Trump Already Sued Over Threat To Birthright Citizenship; An Executive Order May Cause Thousands Of Federal Government Workers To Be Displaced; New Wildfire Burns Thousands Of Acres In Los Angeles. Aired 10-11p ET
## 2447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Terrified staff left hysterical as 'well drilled' DOGE nerds storm hyper 'woke' Department of Education
## 2448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Terror Attack in Israel as Three Buses Explode Near Tel Aviv; Body Returned by Hamas Not of Shiri Bibas; President Trump Frustrated with Zelenskyy's Rejection; Germany to Elect New Government; Pope Francis Improving Slightly; U.S. Senate Confirms Kash Patel as FBI Director; Judge Says White House Violating Order To Resume Foreign Aid; Hegseth Orders Military To Prepare For Major Budget Cuts. Aired 2-2:45a ET
## 2449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Texas Gov. Abbott Issues 'Color-Blind' Order in Blow to Diversity Policies
## 2450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Texas teacher calls for ICE to come to their school over students 'who don't even speak English'
## 2451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That Is A Lot Of Fraud': Karoline Leavitt Sniffs Out NBC News Reporter's Attempt To Trip Her Up Over DOGE Cuts
## 2452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The American farmers at the heart of Trump's war with USAID who are struggling to survive
## 2453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Army is BACK! Military releases new high-octane Trump-era ad... and it's a huge split from woke Biden one
## 2454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The BBC's Trump problem ESTABLISHED 1855
## 2455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The BBC’s Trump problem
## 2456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Beginning of the End for the 'Trump Era'  | The Daily Campus Centered Divider Line
## 2457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Case for Woke  - THE CAROLINIAN
## 2458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Cold Civil War Is Over. We Won. | Opinion
## 2459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Cruelty of Colorblindness: Trump's War on DEI
## 2460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The DEI backlash: employers ‘reframing not retreating’
## 2461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The DEI debate: Campus inclusion or a step too far?
## 2462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The DEI divide I don't check the boxes
## 2463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The DNA Of Our Foreign Policy': How USAID Hid Behind Humanitarianism To Export Radical Left-Wing Priorities Abroad
## 2464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Daily Money: Can Trump fix inflation?
## 2465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Daily Money: Going shopping on Friday?
## 2466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Daily Money: Tariffs affect home prices, too
## 2467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Daily Money: Trump takes aim at DEI
## 2468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Daily Money: Will Trump keep his tax pledges?
## 2469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Dangers of Trump's Executive Orders - The Villanovan
## 2470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Democratic Party Supports Every Inch Of The Bureaucracy And Every Penny of Fraud, Waste And Abuse; Interview With Rep. Mike Johnson (R- LA ); Democrats Nullifying Federal Law
## 2471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Department of Education may be on its way out. Is Duke prepared?
## 2472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Digest
## 2473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Entire City Is On Edge': Jonathan Turley Says Trump's Proactive Approach 'Has Everyone Reeling'
## 2474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Fed Holds Rates Steady, Hitting Pause After a Series of Cuts
## 2475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The First Week In Office: All the Orders and Actions That Took Place In President Trump 's First Week in Office
## 2476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Forty Seventh's First Week
## 2477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Future Of Legacy Media In Trump's America - The Spectator
## 2478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Future of American Schools
## 2479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Gatepost Editorial: DEI is not discrimination
## 2480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Gatepost Editorial: Support Black businesses
## 2481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Gavel: Courts become Trump’s only backstop
## 2482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Grammys had a few surprises up their sleeves. Here are some key moments from the show
## 2483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Grammys: Music's biggest night, with even bigger moments
## 2484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Griffin Editorial: Why I didn't watch the inauguration
## 2485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Guardian view on Donald Trump’s power grab: a coup veiled by chaos
## 2486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The Inauguration Of Donald Trump. Aired 7-8p ET
## 2487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The Latest: 21 employees resign from DOGE, refusing to ‘dismantle critical public services’
## 2488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The Latest: Collision between passenger jet and Army helicopter near DC leaves no survivors
## 2489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Latest: Congress passes immigrant detention bill, sending Trump the first law he can sign
## 2490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Latest: EPA wants to repeal a landmark environmental finding, jeopardizing climate regulations
## 2491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Latest: Federal workers face mass layoffs
## 2492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Latest: Hegseth confirmed as defense secretary in victory for Trump
## 2493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Latest: House GOP pushes budget resolution to passage
## 2494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Latest: Judge declines to block Musk and DOGE from accessing federal data or laying off workers
## 2495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Latest: Judge temporarily blocks Trump plan offering incentives for federal workers to resign
## 2496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Latest: Justice Department official urges quick dismissal of criminal case against NYC mayor
## 2497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Latest: Trump administration directs all federal DEI staff to be put on leave
## 2498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Latest: Trump greets Newsom in Los Angeles before touring wildfire damage
## 2499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Latest: Trump meets with UK’s prime minister about drifting US support for Ukraine
## 2500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Latest: Trump says he and Putin have agreed to begin negotiations on ending war in Ukraine
## 2501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Latest: Trump says he will declassify the JFK, RFK and MLK Jr. records
## 2502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Latest: Trump signals he’s open to multiple budget bills instead of just one
## 2503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Latest: White House to pause federal grants and loans starting on Tuesday
## 2504                                                                                                                                                                                                                 The Left Battles To Save Waste And Abuse; Trump Is Righting The Wrongs Of Congress ; No Agency Is Safe From DOGE; Interview With Sen. Markwayne Mullin (R- OK ); Trump Fires Chairman Of Joint Chiefs; Trump Nominates Lieutenant General Dan Caine; Democrats Root For Canada And Mexico ; Democrats Claw At Each Other's Throats; Kash Is Living The American Dream; Trump To Release Bombshell Report; Bondi Has Epstein's Client List On Her Desk; Hegseth Factchecks The Factcheckers; Trump Body Slams Governor Over Trans Law; Noem Lists Migrant Criminals She Deported; 177 Migrant Criminals Land In Venezuela ; Border Patrol Chief Sends Illegals A Warning; Trump Cabinet Is Transparent And Effective; Border Crossings Down 94 Percent; Acting ICE Director Reassigned; Cartels Use Boats To Smuggle Drugs; Trump Puts Cartels Out Of Business; Wanda The Stuffer Turns Herself In; Sink Or Swim
## 2505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Left is privately bracing for a Trump-style DEI apocalypse if Dutton wins. These programs will be first on the chopping block - and you won't believe some of them existed in the first place, writes STEPHEN JOHNSON
## 2506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Long Wave: Fear, loathing and Black resistance under Trump 2.0
## 2507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The Maga vision of corporate life will struggle
## 2508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Memo: Trump goes full bore against DEI
## 2509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Memo: Washington flight disaster sparks political fights
## 2510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Philadelphia Eagles upset Trump in 2018. A petulant president can't let it go. | Opinion
## 2511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Prototype: Math Suggests The Eagles Will Go On Fourth Down During The Super Bowl
## 2512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Return Of Common Sense; Poll: Dems Have Only 31% Approval Rating; Trump To Send 30K Illegals To Gitmo; British women Pleads Guilty to Sending Videos of Herself Farting to Her Boyfriend's Ex to Make Her Uncomfortable; Whoopi Goldberg on "The View" Criticizes White House Press Secretary Karoline Leavitt; Chuck Schumer Lampooned for Using Word "Aroused" during Press Conference.
## 2513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Science of Racism — proof of prejudice
## 2514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Soapbox: Mafia crackdown in Italy , Sudan truce in UAE , cease-fire violation in occupied Palestine - Washington Square News
## 2515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Status Quo Hasn't Worked': Hegseth Breaks Down Why Pentagon Needs Major Shake Up
## 2516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The Three Great Conservative Constitutionalist Presidents In The Last Century Are Calvin Coolidge, Ronald Reagan, And Donald Trump; Interview with Rep. Jim Jordan (R- OH ); The Excitement Around The Election Of Donald Trump
## 2517                                                                             The Tide Is Turning In The US Under Donald Trump; Army Recruiting Hits Record High After Trump's Win; US Regaining Strength On World Stage; Canada's New Fentanyl Czar Will Be Appointed Soon; DOGE Plans To Slash Government Costs; Google Is Latest To Follow Trump's DEI Orders; NFL To Remove "End Racism" Message In End Zone; First Migrant Flight Lands At Gitmo; President Trump Attending Super Bowl Tomorrow; America Is Changing For The Better; Trump Bans Trans Athletes In Women's Sports; NCAA Changes Trans Policy After Trump Ban; Tom Brady On Intangibles You Can't Measure; Tom Brady Calls His First Super Bowl; Democrats Cannot Stand The Idea Of Elon Musk; Unhinged Democrats Take Aim At Elon Musk; Tony Robbins Spear- Heading California Wildfire Efforts; The Death Of DEI; Trump's War On DEI Sends The Left Into A Tailspin; The "60 Minutes" Transcripts Are Out; The Truth About Kamala's CBS Interview; The Question That Could Sink A Campaign; "The View" Loses It Over Trump And Musk; Conservatism Resurgence
## 2518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Times view on diversity policies: DEI Another Day
## 2519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Trump 50 per cent doctrine
## 2520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Trump White House Is In Full Gear
## 2521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The Trump administration causes even more chaos
## 2522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Trump administration returns to office
## 2523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The US is missing again as G20 finance chiefs meet in South Africa
## 2524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The View' Co-Host Appears To Upset Panelist As She States DEI 'Has Not Accomplished Things'
## 2525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The View's Joy Behar suggests Trump is abolishing the penny because he's 'jealous' of past presidents
## 2526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The ban of DEI: What does this mean for students? - BG Falcon Media
## 2527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The best trade in the market might be following everything Elon Musk touches
## 2528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The black business owners who say DEI has never worked and that it 'isn't for us'
## 2529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The brutal way Trump fired the highest-ranking woman in the military in his DEI purge
## 2530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The clash of meritocracy and DEI
## 2531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The corporate trend to boost creativity that is actually counter-productive
## 2532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The cultural wars have arrived at your Google Calendar
## 2533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The current state of US politics
## 2534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The danger of censoring DEI conversations in education
## 2535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The eye-popping amount of money Elon Musk has already slashed from the Education Department as staff melt down
## 2536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The fear is real': As Trump administration targets DEI, professionals worry about the future of their industry
## 2537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The fight Peter Dutton and others like him want to have about diversity is a distraction
## 2538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The fight for academia
## 2539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The four banned words in Trump's overhauled CDC that are sending workers into meltdown
## 2540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The future of DEI at GRCC remains unclear as Trump administration continues policy overhaul
## 2541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The future of DEI: UA community addresses the shifts in diversity, equity and inclusion efforts
## 2542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The future of diversity, equity, and inclusion at Illinois Tech
## 2543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The future of student aid under Trump - Massachusetts Daily Collegian
## 2544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The gun-toting, anti-woke influencer who says she’s had Elon Musk’s 13th child
## 2545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The history of Penn State Black Caucus through Collegian archives
## 2546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The inauguration, brought to you by Tesla and Amazon Prime
## 2547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The key executive orders Trump has signed in the last 24 hours
## 2548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The legacy and history of Latino protest at UI - The Daily Iowan
## 2549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The legal war on DEI begins: Missouri sues Starbucks over its diversity programs
## 2550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The list of CEOs voicing support for their companies' DEI initiatives is growing
## 2551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The low keep getting lower, as shown by Trump’s response to the DC plane crash
## 2552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The most significant executive orders Trump signed on day one of his second US presidency term
## 2553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The next 10 government agencies in DOGE's line of fire that ballooned under Biden
## 2554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The perfect day in SoHo - Washington Square News
## 2555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The professors charting a new route for DEI Interview. Iris Bohnet and Siri Chilazi Research by the pair could guide companies grappling with the backlash against diversity, writes Andrew Hill
## 2556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The quiet exclusion: How the loss of diversity in diplomacy imperils the future Login or create an account
## 2557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The revolution': Trump and the changing landscape of political activism
## 2558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The rise and fall of DEI: How changing politics are reshaping corporate America
## 2559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The sciences are political
## 2560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The six biggest takeaways from Trump's first weeks in government... and what they tell us about the next four years
## 2561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The stars who rebuked Trump in their Grammy speeches
## 2562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The tragic air collision revealed Trump’s rancid, irredeemable character once again
## 2563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The truth behind Donald Trump's astounding claims Biden, Obama and DEI are to blame for crash
## 2564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The truth behind rumor DC crash Black Hawk co-pilot was transgender servicewoman Jo Ellis
## 2565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The underqualified Trump administration exemplifies the meritocracy myth - The Beacon
## 2566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The university's annual Campus Climate Survey - The Charger Bulletin
## 2567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The vibe shift and how to combat it
## 2568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The week woke died: Trump revels in status as ‘horrible human being’
## 2569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The world's most embarrassing inauguration was led by the Culture Wars President
## 2570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    There is a DEI dilemma taking place across Corporate America
## 2571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There is tremendous uncertainty': UMich researchers grapple with the effects of Trump's executive orders
## 2572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They're Exposing Themselves': Tulsi Gabbard Responds To CIA Agents Threatening To Sell Secrets To Enemies
## 2573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Things are pretty grim out there': Media censorship under the Trump administration - The Pitt News
## 2574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This Week In Politics: Zelenskyy, McConnell & DEI - The Villanovan
## 2575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This Week in Climate Action - February 14, 2025
## 2576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This Week in Politics - The Villanovan
## 2577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is not just a story of struggle, it's a call to action': Nancy Maxwell's film inspire community change - The Daily Egyptian
## 2578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This is our responsibility': Protesters gather at Capitol to oppose Trump, Project 2025
## 2579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This newsletter has gone to the dogs
## 2580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This will not stand': Air Force resumes teaching on first Black pilots after DEI review
## 2581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This year, the United States made history by electing Donald Trump: the first convicted felon to be sworn into the White House.
## 2582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thousands More U.S. Troops Head To Southern Border; Border Czar: Deportation Raids Already Underway; White House Orders Federal DEI Employees To Be Placed On Leave; Israel's "Operation Iron Wall: Underway In West Bank; Trump Signs Executive Order To Pull U.S. Out Of The Agreement; Texas Town Fears Trump's Mass Deportation Threats; Royal Unexpectedly Settles With Murdoch Tabloids; Aired 12-1p ET
## 2583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thousands Of USAID Employees Given Just 15 Minutes To Vacate Workstations; Trump To Meet With British PM Keir Starmer At The White House; Meta Apologizes, Americans With Disabilities Warn Protections Are Vanishing In Trump's DEI Rollback; Fixes Glitch That Caused Violent Video Recommendations On Reels. Aired 9:30-10a ET
## 2584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thousands Under Evacuation Due to the Hughes Fire Near Los Angeles ; Thais Tie Their Knots as Same-Sex Marriage Takes Effect; Trump Presses Russia to Make Peace with Ukraine ; Prince Harry Settled Lawsuit Against Murdoch-owned Tabloids. Aired 3-4a ET
## 2585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thousands protest Trump at Presidents' Day demonstration in Washington Square Park - Washington Square News
## 2586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Three weeks in: Reflecting on the second Trump Administration so far
## 2587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thune and Johnson vow to take DOGE spending cuts to the next level
## 2588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Tiger Woods Hears Chants at White House, Gets Mixed Reactions Online
## 2589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Tiger Woods fights back tears as Donald Trump reveals him as surprise guest at Black History Month event
## 2590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Tiny rural Pennsylvania town tears itself apart over politics and pronouns
## 2591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To the CEOs who’ve joined Trump’s fight against diversity, I say this: you’re making a big mistake
## 2592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To these Black retirees, the federal civil service now under attack was a path to the middle class
## 2593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Today's 'economic blackout' began from an unlikely source. But it's tapped into Americans' anger
## 2594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Tom Brady, TV’s No 1 jaw, oozed stagnant charisma in Fox’s Super Bowl broadcast
## 2595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Tom Hanks blasted for 'racist and disgusting' portrayal of MAGA supporter on star-studded SNL 50
## 2596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Tonight: Deadline For Federal Workers To Accept "Buyout" Offer; Musk's Team Expands Its Influence Throughout Government; Ex-Trump WH lawyer: "It's A Naked Power Grab....To Flood The Zone"; Democrats Target "Unelected, Unaccountable Billionaire" Elon Musk; Now: House GOP Leaders Meet With Trump At White House; Trump Plots Out Legislative Strategy With House GOP Leaders. Aired 12-12:30p ET
## 2597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Tonight: Freed American Hostage Meets With Trump At The White House
## 2598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Top General Ousted As Trump Admin. Wages "War On Woke"; Legal Challenges Over Anti-DEI Orders Get First Results; Judge Temporarily Blocks Certain Trump Anti-DEI Directives. Target Is Getting Hit From All Sides On DEI; On Set With Starts Of New Soap Opera Centered On Black Family; "Liberated Muse" Takes Stage At Kennedy Center Amid Trump Takeover. Aired 8-9a ET
## 2599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Top Trump Officials Meet With Russians In Saudi Arabia ; Department Of Education Letter Threatens Federal Funding; At Least 9 Dead As Storms Slam Kentucky , Georgia , Tennessee And Virginia ; Experts Worry Russian Aggression Could Go Beyond Ukraine ; Measles Outbreak In West Texas Doubles To 48 Cases; Trump Disputes Rift With Elon Musk; New Mini-Tournament Format For All-Star Game. Aired 6-7p ET
## 2600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Top spy Gabbard says she fired 100+ intel officers for 'really horrific' chat messages
## 2601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Tories express alarm at report saying cost of Chagos Islands deal has risen far beyond £9bn, saying it’s ‘madness’ – as it happened
## 2602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Tracking Trump – updates on the presidency’s first 100 days
## 2603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Tracking Trump's executive actions by category
## 2604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Tracking Trump's executive orders on higher education
## 2605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trans Black Hawk pilot forced to respond after she's falsely identified as D.C. crash captain
## 2606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trans extremists corrupting DEI, say gay rights groups
## 2607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trans extremists have corrupted DEI, says gay rights group
## 2608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trans troops, Hunter's helpers, DEI fanatics: Wokest heads to roll as Trump vows to fire MORE in bloodbath
## 2609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Transcript: Mayor Adams Appears on NY1's "In Focus With Cheryl Wills"
## 2610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Transcript: Unilever’s CEO gets the boot
## 2611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Transcript: ‘ America is now an adversary’
## 2612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Transportation Sec. Sean Duffy vows it's safe to fly after shocking crashes, echoes Trump's DEI criticism
## 2613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Treasury Sued Over Giving Musk's DOGE Access to Payment Data; Interview with Sen. Tammy Duckworth (D- IL ); Deconstruction Project; Senior FBI Leaders Ordered To Retire, Resign Or Be Fired; DOJ Orders FBI To Hand Over Names Of All Officials Who Worked On Jan. 6 Riot Cases By Tomorrow; Recovery Begins Of Plane Wreckage From Potomac River . Aired 8-9p ET
## 2614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trevor Noah leads anti-Trump roast at the Grammys as Hollywood targets tariffs, celebrates DEI and trans rights
## 2615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trouble for Research Funding? - The George-Anne Media Group
## 2616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump & Musk Consider DOGE Dividend Checks; Santos: Nadler "Smelliest in Congress ", Former Transportation Secretary Pete Buttigieg Criticizes Democrats' Approach to Promoting Diversity; Scientists Reportedly Improve Existing Brain Decoder Using A.I. to Turn Thoughts into Text; NASA States Asteroid Has 3.1 Percent Chance of Hitting Earth in 2032.
## 2617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump 'gender ideology' executive orders seek to deny existence of trans people and end DEI
## 2618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump 's Executive Orders: A Drastic Reversal of Biden-Era Policies
## 2619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump 's inauguration: A hypocritical and frightening beginning - The Pace Press
## 2620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump 2.0 could spell end of pronouns on email signatures
## 2621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Acknowledges Black History Month After Weeks Of Attacking Diversity
## 2622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Acknowledges He Doesn't Have Evidence DEI Caused D.C. Plane Crash
## 2623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Admin Axes FEMA Employees Behind $59 Million Scheme To Fund 'Luxury' Hotel Stays For Migrants
## 2624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Admin Defends Agenda As CNN Poll Shows Rising Pessimism; White House: Trump "Very Frustrated" With Zelenskyy Right Now; Senate Confirms Kash Patel To Lead FBI In 51-49 Vote; Trump Economist: DOGE Checks To Americans Wouldn't Drive Inflation; Hamas Releases Remains Of Four Israeli Hostages. Aired 4-5p ET
## 2625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Admin Directs Agencies to Prepare for Large-scale Firings; Trump Says U.S. To Sell $5 Million 'Gold Card' That Offers Path to Citizenship; Johnson, Trump Pull Off Last-minute Win as House Passes Budget Plan; Sexually Explicit Messages Found on NSA Chat Rooms; Pope Remains in Critical but Stable Condition; National Parks Litter Turned to Art; Zelenskyy Says Security Guarantees by U.S. Could Be a Step Toward Peace; U.S. Votes Against U.N. Resolution Condemning Russia 's War on Ukraine . Aired 8:30-9a ET
## 2626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump Admin Dismantles Federal DEI Offices, Puts Staffers on Leave; At Least Nine Dead as Once-in-a-Generation Storm Slams South; Prince Harry Settles Legal Claim Against The Sun Publisher. Aired 7- 7:30a ET
## 2627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Admin Offering Millions Of Gov't Workers 'Payout' If They Would Rather Step Aside Than Return To Work
## 2628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Admin Orders All Federal DEI Office Staff to be on Paid Leave
## 2629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Admin Ousts Left-Wing Biden Appointee Stacey Dixon From Key Intel Position Ahead Of Gabbard Hearings
## 2630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Admin Reportedly Set To Can Notorious Liberal General
## 2631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Admin Resists " Russian Aggression" Phrase In G7 Document; Elon Musk's Chainsaw; "Inflation Is Back"; Surgeon: Insurance Is Taking The "Humanity" Out Of Health Care. Aired 7-8p ET
## 2632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump Admin. Tries To Clarify Remarks On Taking Over Gaza; Trump Orders Ban On Transgender Women In Women's Sports; CIA Offer "Buyouts" To Workforce; Doubts Over Trump's Immigration Policy In Red Nebraska ; U.S. Postal Service Briefly Pausing Package Deliveries From China. Aired 6-7p ET
## 2633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump Administration And Colombia Reach Agreement On Migrant Flights; Navajo Officials: 15 Indigenous People Questioned Since Wednesday; Super Bowl LIX: Chiefs Vs. Eagles. Aired 5:30-6a ET
## 2634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Administration Eliminates Diversity, Equity, and Inclusion Initiatives, Affecting College Landscapes Across the Nation - The New Hampshire
## 2635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump Administration Gives Update on Black History Month After Anti-DEI Order
## 2636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Administration Puts Dozens Of USAID Senior Officials On Paid Leave; White House Pauses All Federal Grants And Loans; Lawsuit: Electric Sparking Caught On Video Started Eaton Fire. Aired 7:30-8a ET
## 2637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Administration Rescinds Grant Freeze Memo Here s Everything We Know
## 2638                                                                                                                                                                            Trump Administration Sending 1,500 Troops To Border; Prosecutors Ordered To Follow Immigration Agenda; Senate Scheduled Hearings For Nominees; Democrats Invoking 30-Hour Debate Rule On Donald Trump Pick; Massive Blaze In Northern Los Angeles County; European Concern About Trump Tariff Threats; Trump Policy Pronouncements Unveiled At Frenetic Pace; Rubio Signals Changes To State Department Priorities; Secretary of State Marco Rubio Sends Cable to State Department Employees Detailing President Trump's Foreign Policy Overhaul; Panamanian Government Submit Letter of Complaint to U.N. Security Council Rejecting President Trump's Claims To Panama Canal; History Of Sanctuary Cities Beginning With Berkeley , California , Examined; Democrats Delaying Senate Confirmation Votes On Some Trump Cabinet Nominees; Justice Department Instructed To Investigate State Or Local Officials Who Obstruct Immigration Enforcement
## 2639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Administration Targeting Generals and Admirals?; IRS Layoffs Expected; Senate Set to Approve Kash Patel; Ukraine - U.S. Relationship Falling Apart?. Aired 1-1:30p ET
## 2640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Administration Tells Agencies To Carry Out Widespread Layoffs; Vance To WSJ: Sending U.S. Troops To Ukraine Is "On The Table"; Jets Moving On From Rodgers. Aired 5:30-6a ET
## 2641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Administration Will 'Collapse' in 30 Days, Says James Carville
## 2642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Administration demands schools dismantle DEI programs or risk federal funding
## 2643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Administration orders DEI program cuts, sparking widespread concern
## 2644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Administration's Anti-DEI Letter Causes Confusion, Anxiety
## 2645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Administration's Legal Strategy Raises Constitutional Concerns - Chicago Maroon
## 2646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Administration's new DEI orders and directives raise uncertainties at Hopkins
## 2647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Administration: Follow the Law
## 2648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Aides Defend Gaza Takeover Proposal; Critics Raise Concerns About Elon Musk's Role In Government; Trump Targets Federal Workers For Mass Layoffs; Sweden Mourns Worst Mass Shooting In Country's History; Palestinians Push Back Against Gaza Takeover Idea; Trump Proposal To Remove Palestinians From Gaza Called A Crime Against Humanity; Syria Sees Long Road Ahead As It Starts To Rebuild. Aired 12-12:45a ET
## 2649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Announces Statues Of Several Legendary Athletes Will Be Placed In National Garden Of American Heroes
## 2650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump Announces Sweeping Tariffs On China, Canada, Mexico ; One- On-One With Former Treasury Secretary Larry Summers. Democrats Pick Minnesota 's Ken Martin as New DNC Chair; Trump Nominees Clean Up Past Comments Before Senate; Can Democrats Retake the House Majority Next November? Aired 8-9a ET
## 2651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Approval At 47 Percent, Higher Than Any Point In First Term; Americans Weigh In On Trump's First Month In Office; 62 Percent Say Trump Not Doing Enough To Bring Down Prices; Source: DOGE Firings Amount To "Indiscriminate Madness"; McConnell Announces He Won't Run For Reelection; Senate On Track To Confirm Patel As FBI Director This Afternoon; One Month In: Much Of Project 2025 Agenda May Be Still To Come. Aired 12-12:30p ET
## 2652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Approval Dips, Still Above Any Point in His First Term; Hamas Hands Bodies of Four Israeli Hostages to Red Cross; Trump Holds Event Marking Black History Month. Aired 3:30-4p ET
## 2653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Baselessly Appears To Blame FAA "Diversity Push" For Collision; 67 Presumed Dead In Mid-Air Collision Over Potomac River ; Kash Patel, Tulsi Gabbard Face Confirmation Hearings; Sources: FBI Agents Association Officials Urged Patel To Protect Agents Who Investigated Jan. 6 Violent Crime. Aired 12:30-1p ET
## 2654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Border Agenda Moves At Full Throttle; ICE Arrests 1,200 Illegal Immigrants In One Day; Kristi Noem Oversees First NYC ICE Raids; New York Magazine Defends "Cropped" Image On Cover; Conservative Group Creates DEI Watchlist; Philanthropist Cuts Through Red Tape To Help Victims; Gen Z TikToker Helps RFK Jr. Reach Young Voters
## 2655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Brings Receipts On DC Waste; Miller Schools CNN On DOGE; Democrats Cry About DOGE's Reign Of Terror; Elon Gets A Dose Of TDS; DOGE Exposes Insane Government Waste; Former Democrat Voters Love The Pace Of Change; Mexico Threatens To Sue Google Over Map; Trump Boots AP Over Gulf Of America Snub; Trump Airstrikes al-Qaeda Leader; Carville: Sit This One Out, Democrats; Democrats Are In Shambles; Biden Chocked Projects With Woke Red Tape;
## 2656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Cabinet Picks Face Senate Scrutiny; President Trump Takes Questions at White House; Secretary of State Marco Rubio Heading to Panama ; Midair Collision Investigation Continues
## 2657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Calls For Federal Emergency Response Reform; Trump Meets Newsom In Los Angeles Before Damage Tour; Donald Trump Meets Gavin Newsom In Los Angeles Before Damage Tour; Senate To Hold Confirmation Vote On Pete Hegseth; New Administration Addresses March For Life Rally; President Trump Issues Executive Order Directing Justice Department To Investigate Diversity, Equity, And Inclusion Hiring And Training Practices Of Publicly Traded Corporations; President Trump Orders Review And Potential Overhaul Of Federal Emergency Management Agency Department
## 2658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Continuing to Blame DEI For Midair Collision; White House Holds Press Briefing; Midair Collision Investigation. Aired 1-1:30p ET
## 2659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Could Host Jan. 6 Rioters After Pardons; Trump's War On DEI; At Least Two Injured In Nashville School Shooting. Aired 2-2:30p ET
## 2660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Dealt Double Down Blow Amid Effort To Gut U.S. Government; Musk Deputy Out; "Most Dangerous Nominee?"; Report: Russia Falls For Spoof Report On China's DeepSeek. Aired 7-8p ET
## 2661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Declassifies, JFK, RFK and MLK Files; America Becomes the Crypto Capital; Trump to Davos : America is Back, Get Used to It; Trump Lifts Freeze on Natural Gas Exports; Trump Puts the Elite in their Place; Trump Signs Flurry of Executive Orders; America is Back and Open for Business; Democrats Descend Into Civil War; Carville: No One Wants to Hear from Biden Again; Democrats and Media are Falling Apart; Democrats are Desperate for New Leaders; Chris Hansen Takes Down a Naked Predator; ICE Agents Take Down Criminal Aliens;
## 2662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Delays TikTok Ban as He Looks for Options to Save It; Blue-collar Trump Voters Want Quick Proof Promises Will Be Kept; Trump Shares Letter From Biden Left in Resolute Desk With Fox News. Aired 12:30-1p ET
## 2663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Delivers Fresh Tariff Threats Against EU And China; U.S. Military Sends More Troops To U.S. - Mexico Border Amid Trump Immigration Crackdown; U.N. Official Says More Than 2,400 Aid Trucks Enter Gaza Under Ceasefire; DOJ Issues Memo Threatening Officials Who Resist Immigration Crackdown; Mexico Foreign Minister Spoke With U.S. Secretary Of State Rubio; Record Snowfall Across Southern U.S. Aired 2-3p ET
## 2664                                                                                                                                                                                                                                                                                                                                            Trump Does Laps At Daytona 500; Canadians Boo US National Anthem; Miller Exposes Massive Tax Fraud; Hegseth Says Biden's IRS Audited Him; Elon Is Ready To Audit The Auditors; DOGE To Look Into Fort Knox Gold Reserve; America Wasters Millions On Foreign Pet Projects; Democrats Believe They Own The Government; Media Defends Bloated Government; CBS Thinks Free Speech Caused The Holocaust; Trump's Border Policies Are Working; Homan: All Criminal Migrants Must Be Deported; Border Crossings Reach Historic Lows; Kamala Gives Lame Pep Talk On Broadway; Psaki Rips Kamala For Campaigning With Cheney; Resistance Sings Away Its Pain; Protesters Drags Trump Effigy with Noose; Historians Want To Cancel Presidents' Day; "The Unbreakable Boy" Comes Out On Friday
## 2665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Doubles Down On Attacking DEI After Fatal DC Plane Crash But FAA s Diversity Hiring Policies Existed For Years
## 2666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Expected To Lay Out Plans To Make Tip Tax-Exempt; Pete Hegseth Sworn In As Defense Secretary; Guatemalan Officials On U.S. Deportation Actions; 4 Israeli Soldiers Freed In Latest Round Of Hamas Hostage Release; Putin Claims " Ukraine Crisis" May Have Been Prevented If Trump Was In Power; U.S. Cancer Rates Rising Among Younger Women. Aired 3-4p ET
## 2667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Expected To Sign Executive Orders Banning DEI, Transgender Service Members From Military
## 2668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Expected to Reshape Military With New Executive Orders; Trump Expected to Sign Order Banning Transgender Service Members; Trump Admin Launches Immigration Crackdown in Chicago. Aired 2-2:30p ET
## 2669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump Fires Board Members of the Kennedy Center, Appoints Himself as Chairman
## 2670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Fires Chairman Of The Joint Chiefs Of Staff; Judge Blocks Trump's Order Targeting DEI Programs; Supreme Court Says, Watchdog Fired By Trump Can Stay on Job; Maine Governor Takes A Stand Against Trump's Policy On Transgender Athletes; Actor George Clooney Explains Why Donald Trump Won And Why Joe Biden Clung To Hope That He Could Win. Aired 10-11p ET
## 2671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump Fires Inspectors General From Over A Dozen Federal Agencies; Trump Suggests Plan For Gaza Is To "Clean Out The Whole Thing"; NIH Told It Can Continue Purchasing Supplies For Studies. Aired 7:30-8a ET
## 2672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Fires Justice Department Officials Who Prosecuted Him; Trump Plots Strategy With House GOP as He Readies New Orders; Chinese A.I. Advancement Sends U.S. Tech Stocks Plunging. Displaced Palestinians Making Emotional Return To Gaza; Survivors Mark 80 Years Since Auschwitz Liberation. Aired 6-7p ET
## 2673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Fires Military's Top General
## 2674                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump Fires Top U.S. General, Calls Gen. Charles Brown A "Fine Gentleman"; Trump Falling Sort; Acting ICE Director Removed Amid Frustration Over Pace Of Arrests; Pentagon Announces It Plans To Fire 5-8 Percent Of Civilian Workforce; NY Times Columnist: Musk Is "Operating As What Cybersecurity Experts Call An Insider Threat"; Mine Workers Tell CNN Musk Claims Are False; Alleged Healthcare CEO Killer Appears In Court, Attracting Dozens Of Supporters, Observers; Los Angeles D.A. Urges Judge To Deny Menendez Brothers' Request For A New Trial; Second Body Said To Be That Of Israeli Hostage Shiri Bibas Handed Over By Hamas. Aired 8-9p ET
## 2675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Floats Gutting The IRS Moving Agents To The Border Armed With Guns; Biden Admin Quietly Spent $15 Mil To Distribute 'Contraceptives and Condoms' In Afghanistan ; CIA Now Says COVID-19 Is More Likely To Have Originated From A Lab Leak; Previous Comments Criticizing Lab Leak Theory For Origins Of COVID-19 Examined; Trump Administration's Education Department Throwing Out 11 Complaints Against Book Bans; During His Podcast Howie Mandel Introduces Possible Half-Brothers Bill Burr And Billy Corgan Without Burr's Knowledge.
## 2676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Funding Freeze Remains in "Full Force" Despite Rescinding Memo; Kennedy Confirmation Prospects Unclear After Combative Hearing; FBI Director Nominee Kash Patel In The Hot Seat; Defense Secretary Revokes Security Detail And Clearance For Trump Critic General Mark Milley; American Volunteer Fighters Killed And MIA In Ukraine . Aired 8-9p ET
## 2677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Had A Busy First 12 Hours In Office - Here Were His First Big Moves
## 2678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump Heads To L.A. To Survey The Fire Damage; Trump Suggests Eliminating FEMA; WH: Deportation Flights Have Begun; U.S. -North Korean Relations; Djokovic Withdraws from Australian Open. Aired 6-7p ET
## 2679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Hits Top Trading Partners Canada, Mexico , China With Tariffs; Secretary Duffy: We Are Going To "Surge" Air Traffic Controllers; NBA Trade Stunner: Doncic To Lakers And Davis To Mavericks. Aired 7:30-8a ET
## 2680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Hosts France's Macron At Crucial Moment For Ukraine ; Interview With Senator Mark Kelly (D- AZ ); MAGA Podcaster Dan Bongino Tapped To Be Next FBI Deputy Director; Former Proud Boys Leader Taunts Officers Who Protected; Political Conference In D.C. Interrupted By Death Threats Against Speakers Critical Of Trump; Colorado Trump Voters On The President's Tumultuous New Term; Clint Hill, Secret Service Agent Who Jumped Onto Limo After JFK Was Shot, Dies At 93. Aired 8-9p ET
## 2681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Hosts Japanese PM In Washington; Israel Receives Names Of Hostages To Be Released By Hamas Saturday; The Impact Of USAID Funding Cuts In Africa; Elon Musk Targets UK PM Starmer Over Abuse Scandal; Chiefs And Eagles Prep For Sunday's Big Game. Aired 3-4p ET
## 2682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Introducing Pfizer CEO Sparks Loud Booing Inside White House
## 2683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Issues Dire Warning To Iran
## 2684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Jump Starts Second Term With Stunning Slew of Executive Orders; Southern States Brace for Another Major Winter Storms; Trump Threatens 25 Percent Tariffs on Mexico and Canada on Feb. 1. Aired 7- 7:30a ET
## 2685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Kicks Off Second Week in Office with Raft of New Executive Orders
## 2686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Lashes Out At Jerome Powell After Fed Doesn t Cut Interest Rates
## 2687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Launched FAA Diversity Program to Hire People With Disabilities
## 2688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Lays Out Foreign Policy Plans; Fox News Embeds With Deportation Officers; Some Locals Are Appreciative Of ICE Making Arrests; "The Worst First" Deportations Underway; Trump Sends Strong Message To World Economic Forum; Trump Pardons Nearly 1,600 January 6th Defendants; Charges Dropped On Massaquoi Thanks To Trump Pardons; New Brush Fire Breaks Out In Ventura County ; L.A. Residents Want Answers From City Officials; Trump Set To Visit Los Angeles On Friday; Federal Agencies Accused Of Hiding DEI Programs
## 2689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Looks to Week Two; U.S. Cities Brace for Trump's Immigration Crackdown; Trump Picks Face Confirmation Hearings This Week; Netanyahu Arranging Meeting with Trump; U.S. Justice Dept. Wipes Jan. 6 Database; Los Angeles Looks to Rebuild; Israel Stops Palestinian from Returning to N. Gaza; Trump Says He'll Meet with Putin. Aired 4-5a ET
## 2690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Makes Demands, Threats in First Message to World; Trump on Musk Criticizing A.I. Announcement, He Hates Altman; Two GOP Senators Will Vote Against Pentagon Pick Hegseth. Federal Judge Blocks Trump's Executive Order Targeting 14th Amendment. Aired 10-11p ET
## 2691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Makes Unprecedented Shake-up At The Pentagon; CNN Presents " America Asks"; Fans Flock To See Alleged Killer Luigi Mangione In Court; Major Setback In Bid To Free The Menendez Brothers; Laura Coates Interviews Roy Wood Jr. Aired 11p-12a ET
## 2692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump Media set to launch its own financial investment brand
## 2693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Meeting Key GOP Leadership, Speaking Soon; Trump Signs Executive Orders, Says U.S. Decline Is Over; Trump Begins Immigration Crackdown On Day 1; Former AG Barr On Trump's Power To Secure Border; Hunter Laptop Letter Signees Stripped Of Clearance; Trump To Unveil AI Infrastructure Venture
## 2694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Officials Raise Concerns Over 'Antiquated' Air Traffic Tech
## 2695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump Order Issued and Rescinded, Leaving Students Confounded
## 2696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Orders Dash Myanmar Refugees' Dreams of Living in the U.S.
## 2697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Orders End Of Federal DEI Programs; Musk Casts Doubt On Trump's $500B AI Project; Trump Rebuffs Security Concerns Over Kids Using TikTok. Aired 6:30-7a ET
## 2698                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Orders Precision Airstrikes In Somalia ; Seven People Dead After Medical Jet Crashes In Philadelphia; Today: Trump To Impose Tariffs On Mexico , Canada And China; Defense Dept. Will Not Host Events To Recognize "Identity Months"; Media Spars With Trump Over DEI Assertions; Hamas Releases 3 Hostages From Gaza, Including Israeli - American ; 183 Palestinians Freed In Latest Round Of Hostage Releases. Investigators Could Give Initial Black Box Findings Today; First Responders Salute Remains Of Servicemembers; Today: Trump To Impose Tariffs On Mexico , Canada And China; "Super/Man: The Christopher Reeve Story" Airs Tomorrow At 8PM ET/PT. Aired 1-2p ET
## 2699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Orders Review of FAA Hiring Decisions During Biden Admin
## 2700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Pardons January 6th Rioters; Skye Perryman is Interviewed about a Lawsuit against DOGE; CNN Original Series on Kobe Bryant. Aired 9:30-10a ET
## 2701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Pardons Nearly All Charged With January 6 U.S. Capitol Riot; Trump Begins Slew Of Executive Actions On Immigration, Economy, Other Programs; Taliban Announce Release Of Two Americans Held In Afghanistan In A Prisoner Exchange; Trump Speaks Out On U.S. -China Ties, Potential Tariffs. Trump Speaks Out on U.S. -China Ties, Potential Tariffs; Trump Hails "Golden Age"; Trump Plans to Meet Putin, End Ukraine War Quickly; Trump Vows to Take Back Panama Canal; Prince Harry Suing Rupert Murdoch's Tabloids. Aired 1-2a ET
## 2702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump Pauses Federal Grants and Loans, Taking Effect Today: Live Updates
## 2703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Pauses Tariffs On Canada And Mexico For 30 Days; Netanyahu In Washington To Meet With President Trump; China Imposes Retaliatory Tariffs On U.S. Imports. Aired 5-5:30a ET
## 2704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Pauses Tariffs On Mexico And Canada; USAID Agency Workers Sent Home; Netanyahu Set To Meet With Trump On Tuesday; Israeli Operation In Jenin; Beyonce Wins Big At The Grammys. Aired 6-7p ET
## 2705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Picks Chiefs To Win Super Bowl And He s Clashed With The Eagles In The Past
## 2706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Places Freeze On Federal Credit Cards In Newest DOGE Executive Order
## 2707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump Plans About 100 Executive Orders & Actions On Day One; Freed Palestinians Greeted By Huge Crowds In West Bank; Trump Seeks Dialogue With China While Pushing Hardline Stance; Trump Plans about 100 Executive Orders and Actions on Day One; Trump Makes Big Promises But Can He Deliver. Aired 1-2a ET
## 2708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Plans To Own, Control, And Develop Gaza; Democrats Blast Elon Musk; CIA Offering Buyouts To Entire Workforce; New York Doctor Indicted In Louisiana For Sending Abortion Pills. Aired 11p-12a ET
## 2709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump Proposes U.S. Take Over Gaza To Be Riviera; Trump Not Ruling Out Sending Troops To Take Over Gaza; Speechless Democrats On Trump Wanting To Seize Gaza, Insane; CIA Offers Buyouts To Its Entire Workforce; Democrats Versus Elon Musk. Aired 10-11p ET
## 2710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Pushes for Radical Changes Across the Policy Spectrum
## 2711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Questions FEMA s Usefulness, Says He d  Rather See The States Take Care Of Their Own Problems
## 2712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump Reshapes America 's Government & Alliances; CNN Poll: 62 Percent Say Trump Has 'Not Gone Far Enough' to Reduce Prices; Arctic Blast Sets New Cold Records Across the Central U.S. Aired 6-6:30a ET
## 2713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Responds After Jet Crashes in Philadelphia: 'So Sad'
## 2714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump Says DOGE Could Give 20% of Savings Directly to Taxpayers: Live Updates
## 2715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump Says He Will Take on Paper Straws With Executive Order
## 2716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Says He'll Pause Tariffs On Mexico For One Month; Trump Admits Tariffs May Cause "A Little Pain" For Americans; Trump Says He'll Speak Again With Canadian PM This Afternoon; Musk Team Gains Access To System That Writes America 's Checks; Trump, Allies Pulling Levers Of Power That Few Knew Existed; Secretary Of State Rubio Says He Is Acting Director Of USAID. Aired 12-12:30p ET
## 2717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Says Musk Head Of DOGE, White House Says He's Not; Trump Dodges On Musk Decisions, Firings And Resignations; Steve Bannon Says, Elon Musk Is Parasitic Illegal Immigrant; MAGA Universe Says SNL Skit Reviled Them; Michigan Judge Sentences Shoplifters To Wash Cars For Free In A Walmart Parking Lot. Aired 10-11p ET
## 2718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Says Pausing Government Websites Not 'Bad Idea' Amid Outage Reports
## 2719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Says Putin Agreed To Start Talks On Ukraine ; U.S. Inflation Hits 3 Percent For First Time Since June; Trump Speaks With Reporters In The Oval Office. Aired 4-5p ET
## 2720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Scores Major Legal Win Against Pulitzer; More Public Hysteria From The Left
## 2721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Shows 'Leftist Idealogues' Entrenched In Military Academies The Exit
## 2722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Shuts Down Federal DEI Initiatives And Put Staffers On Leave
## 2723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Signs "No Men In Women's Sports" Exec Order; Bureaucrats Fume Over DOGE Spending Cuts; Democrats Protest USAID Funding Pause; Female Athletes React To Trump Executive Order; XX-XY Athletics Ad Goes Viral On Social Media; Delta And Japan Airlines Planes Collide In Seattle ; White House On Trump's Gaza Announcement; Former Ambassador Says Trump Is Aware Of Limitations
## 2724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Signs Order Banning Trans Athletes From Women's Sports; Texas Governor On Trump's Border Crackdown; Fired Agents Sue, Accusing DOJ Of Violating Constitution; Bondi Sworn In As Attorney General Amid DOJ Turmoil; Trump Expected To Get Mar-a-Lago Classified Docs Returned. Aired 5-5:59p ET
## 2725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Signs Order Targeting "Anti-Christian Bias"; Media Reaction To 'DOGE' And Executive Orders; CNN Anchor Compares Elon Musk To George Soros; Navarro: We Should "Hit The Streets" In Protest; Newsom Softens Tone About Trump Wildfires Response; Grenell Meets With Bass In Wildfire Aftermath; Homan Blames Leak For Failed Immigration Operation; RPT: Mexico Does Not Want Migrants Sent To Gitmo; Bondi Pauses Federal Funding For Sanctuary Cities; NCAA Updates Policy On Trans Athletes; All The Right Movie Times: Should Theaters Be Obligated To Show Actual Start Time?
## 2726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Speaks Ahead of Signing Laken Riley Act; Senators Grill RFK Jr. Aired 2:30-3p ET
## 2727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Speaks At CPAC Amid Major Purge At Pentagon; Dozens Line Up For Free Eggs in New York City ; Lawmakers Face Backlash At Town Halls Over DOGE Cuts; Former Employees, Lawmakers Express Concern Over CDC Layoffs; Elon Musk's Private Security Detail Deputized By U.S. Marshals; Crowds Gather To Support Suspect Luigi Mangione At Court Appearance. Aired 3-4p ET
## 2728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Suggests He s Considering  DOGE Dividend  Checks For Americans
## 2729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Tackles Workplace In First Executive Orders
## 2730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Takes Necessary Action To Eradicate DEI | Opinion
## 2731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Takes On The Media; "60 Minutes" Releases Unaired Kamala Footage; Trump Takes on Pulitzer Prize Board; NFL Swaps "End Racism" For "Choose Love" At Big Game;
## 2732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Talks Border At House GOP Retreat
## 2733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Talks Jan. 6 Pardons, Immigration, Biden in Oval Office Interview; Trump Targets Federal Workers Who Focus on DEI; Trump's Bid to End Birthright Citizenship Faces Legal Challenges; Fast-Spreading Hughes Fire Racing in Los Angeles County . Aired 9-9:30a ET
## 2734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Tells Federal Officials To Rein In DEI Programs at Universities
## 2735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump Threatens Diversity, Equity and Inclusion
## 2736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Threatens Funding Cuts For K-12 Schools That Teach Gender Ideology And Critical Race Theory
## 2737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Threatens Tariffs with Japanese Prime Minister; US Jobs Report: Employers Added 143K Jobs in January; Trump Expected to Slash 97 Percent of USAID Workforce; Trump: Europe Is Lagging Behind U.S. In Support For Ukraine ; Trump Uses Tariffs, Threats In Disputes With Other Countries; Baltic States Readying To Cut Ties To Russian Power Grid. Aired 4-5p ET
## 2738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Threatens to Cut Off Funding for Sanctuary Cities; Trump's Immigration Plans Bring Refugee Programs to a Halt; Scientists Sound the Alarm After Trump Administration Halts NIH Meetings; Elon Musk Bashes Trump's $500 Billion A.I. Project; Trump Criticizes FEMA, Questions if Disaster Agency is Needed. Aired 8:30-9a ET
## 2739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump To Make First Major Speech To Global Business, Political Leaders; Trump Targets Federal Employees Involved With DEI Practices; President Trump Announces Withdrawal From World Health Organization. Aired 7:30-8a ET
## 2740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump To Putin: End War Or Face Tariffs, Sanctions; Trump Pushes Ambitious Agenda In First 100 Days; Now, White Press Secretary On Trump's First Week In Office; Democrats Stalling Confirmation; Protesters Disrupt Class On Israel At Columbia; Bishop Defends Lecturing Trump On Migrants, LGBTQ; Deadline To End Government Diversity Programs
## 2741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump Tours States Hit By National Disasters; White House: US Using Military Planes To Deport Migrants; Hamas Names Four Hostages To Be Released Saturday; Trump Floats "Getting Rid Of FEMA"; Hamas Names Israeli Hostages Due For Release; Trump Heads To California To See Wildfire Damage. Aired 4-5p ET
## 2742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Unveils $500B Stargate AI Initiative with Tech Giants: Live Updates
## 2743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump Vs. Education Department: McMahon Says She ll Keep Pell Grants, Title I As Trump Pushes To Shutter DOE
## 2744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Wants Dept. Of Education To Be "Closed Immediately"; Trump Speaks With Russia 's Putin & Ukraine 's Zelenskyy; Democrats Bash Musk In First DOGE Subcommittee Hearing; Rep. Jasmine Crockett, (D- TX ), Is Interviewed About DOGE Subcommittee Hearing, Elon Musk; Trump Plan To Slash USAID Could Cost U.S. Farmers Billions. White House Bars Associated Press Over "Gulf Of America"; CNN Speaks With The Attorneys Who Managed Prisoner Swap; U.S. Hit By Most Intense Flu Season In 15 Years. Aired 5-6p ET
## 2745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Welcomes Freed American Prisoner; Moments Ago: Trump Greets Fogel At White House; Trump Threatens Hamas Over Release Of Hostages; Trump Calls Hamas "Bullies" As Deadline Looms; DHS Fires FEMA Employees Over NYC Migrant Hotels; Sama Altman Says Trump Is A "Breath Of Fresh Air; The Left's New Phrase Is "Constitutional Crisis"; Media Reaction To Trump's DOGE Executive Order; FBI Discovers Thousands Of JFK Assassination Files; Some L.A. Residents Frustrated Over C.A. Leadership; Grenell To Army Corps, Speed Up Debris Removal
## 2746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Welcomes Japanese Prime Minister To White House; World Leaders Watching Trump's Early Moves Closely; Panama Says State Department Claim About Canal Fees Are "Based on A Falsehood"; Project 2025 Co-Author Starts Job As Trump's Budget Chief; New Time Cover Depicts Musk Sitting Behind President's Desk. Aired 12-12:30p ET
## 2747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump White House Holds First Press Briefing. Aired 1-1:30p ET
## 2748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump White House Stirs New Confusion As It Tries To Clarify Status Of Frozen Federal Funds; RFK Jr. Grilled On Vaccines & Abortion In Confirmation Hearing; Israel : Three Israeli And Five Thai Hostages To Be Released Thursday. Aired 4-5p ET
## 2749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump White House marks Black History Month while Defense Department declares 'identity months dead'
## 2750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump Won't Call Putin A "Dictator": I Don't Use World "Lightly"; Musk: "Failure To Respond A Second Time" Will Result In Firing; Ex-Official: NASA Never Got Offer From Musk To Help Astronauts. Aired 7-8p ET
## 2751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump accuses Dems of delaying his nominees in late night Truth Social rant
## 2752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump accuses USAID of being 'corrupt'; implies the agency's days are numbered
## 2753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump acts to remove Federal Election Commission chair – as it happened
## 2754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump admin orders federal DEI staff to be placed on paid leave by Wednesday
## 2755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump admin removes commandant of Coast Guard, citing border failures and focus on DEI
## 2756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump admin tells agencies to start firing DEI staffers
## 2757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump administration bans non- US flags from being flown at embassies
## 2758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump administration briefing: top immigration official removed and judge clears way for USAid firings
## 2759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump administration directs all federal diversity, equity and inclusion staff be put on leave
## 2760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump administration fires top US general and Navy chief in unprecedented purge of military leadership
## 2761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump administration gives schools a deadline to end DEI programs or risk losing federal money
## 2762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump administration letter orders higher education DEI termination
## 2763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump administration looks to slash HUD workers tackling the housing crisis
## 2764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump administration offers buyouts to federal workers
## 2765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump administration pauses federal grants, impact for OSU's research unknown
## 2766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump administration warns universities of funding cuts over continued DEI efforts
## 2767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump aid freeze ‘may force Stonewall to cut up to half of staff’
## 2768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump amplifies attacks on 'activist' judges halting DOGE's work as Democrats fear MAGA will defy courts
## 2769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump amps up pressure on companies to roll back DEI
## 2770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump and Allies Propose Increased Taxes on Scholarships, Endowments - The Bi-College News
## 2771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump and GOP map out agenda
## 2772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump and MAGA Allies Celebrating Firings Despite Chaos, Loss; Sources Say, 50,000-Plus Pentagon Workers at Risk of Firing; Trump Marks Black History Month Amid His War on Diversity. President Trump Says He Should Not Be Blamed For New Warning Signs About the Economy; V.P. Vance Talks About Masculinity In An Interview. Aired 10-11p ET
## 2773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump and Musk are Gutting the Deep State; Media Happily Defends Fired Feds; Democrats Go Nuclear with Elon Derangement; Time to Defund the Deep State Piggy Bank; Bondi Sues Chicago Over Sanctuary Laws; Trump Promises Largest Tax Cut in History; Trump to Honor US Heroes at New National Park; Trump: Let's Bring God Back into Our Lives; Media Can't Catch Up with Trump; RFK, Jr. to Face Confirmation Vote; The Left Has Fallen on Hard Times; Fetterman: I'm Not Sure WE Can Win Back White Men; Democrats Keep Fighting Losing Battles
## 2774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump and Musk's DOGE fire team of lawyers trying to stop drunk pilots from flying
## 2775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump and Putin have no plans to discuss Washington DC plane crash despite Russians on board: Live
## 2776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump appoints FAA-veteran Chris Rocheleau to serve as agency’s acting administrator
## 2777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump approval rating slips after flurry of executive actions: Survey
## 2778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump asserts dominance as GOP senators come to heel
## 2779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump at the Super Bowl: how the NFL’s culture war ended in surrender
## 2780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump bans transgender service members from military, floats unprecedented punishment for 'repeat offenders': Live
## 2781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump baselessly blames D.C. plane crash that killed 67 on DEI and Biden
## 2782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump baselessly blames DEI and Democrats for Washington DC plane crash
## 2783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump bashes Fed after bank doesn’t cut rates
## 2784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump berates Black Hawk helicopter crew for DC plane crash after targeting DEI
## 2785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump blames 'no angel' Zelensky for Russian invasion ahead of Los Angeles visit to survey wildfire damage: Live
## 2786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump blames DC plane crash on DEI
## 2787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump blames DEI after tragic plane crash. This is our president. | Opinion
## 2788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump blames DEI for American Airlines crash that killed 67
## 2789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump blames DEI for plane crashes, Boston residents react
## 2790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump blames DEI for weakening FAA in aftermath of Reagan National plane crash
## 2791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump blames Democrats for fatal collision Mid-air crash President hits at diversity, equity and inclusion policies after deaths of 67
## 2792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump blames Obama and Biden for plane crash — as it happened
## 2793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump blames diversity hires for plane crash that killed 67
## 2794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump blames diversity hiring for Washington plane crash that killed 67
## 2795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump blames media for federal funding freeze chaos and reveals move has already uncovered millions in waste
## 2796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump blames others but Washington air crash comes amid upheaval in US aviation
## 2797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump cabinet flunkies hail wannabe Caesar and Elon, his oligarch pal
## 2798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump calls Ukraine 's Zelenskyy a 'dictator without elections' | The Excerpt
## 2799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump can't end the Department of Education without Congress but what programs can he curtail?
## 2800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump chairing a major arts institution would be laughable if it weren’t so deeply troubling
## 2801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump claims Musk has already found 'tens of billions' in savings. Even DOGE's social media accounts disagree
## 2802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump continues government purge by dismantling DEI from another agency
## 2803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump continues purge by dismantling DEI from another agency
## 2804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump could deport Prince Harry – this is how
## 2805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump criticizes FAA diversity efforts after deadly plane crash, even as he says he doesn't know the cause yet
## 2806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump culpa a la DEI y a Biden del accidente aéreo
## 2807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump cuts threaten a ‘generation of scientists’ as many weigh leaving US
## 2808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump declares transgender soldiers unfit for US military
## 2809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump defends pardons for rioters and suggests Proud Boys could have place in politics
## 2810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump defense chief reportedly orders Pentagon to plan for sweeping budget cuts – US politics live
## 2811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump demands apology from bishop for asking for mercy as latest executive orders target DEI: Live updates
## 2812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump dismisses bishop’s call for mercy; ban on immigration raids in churches and schools scrapped – live
## 2813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump ditches script in Oval Office free-for-all At impromptu news conference, questions fly as fast as the executive orders are signed
## 2814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump divided America as a candidate. So far, he's doing the same as president
## 2815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump doles out security clearances to unvetted officials
## 2816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump doubles down on DEI attacks in wake of DCA crash
## 2817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump doubles down on DEI claims after DC plane crash
## 2818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump doubles down on blaming DEI for air tragedy as Fox host says diversity policies embolden 'dwarves': Live
## 2819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump drops European Union tariff bombshell as astonishing new front opens up in global trade war
## 2820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump eases on Colombia tariff threat after President Petro reluctantly accepts deported migrants: Live
## 2821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump ends DEI programs in the Federal Government
## 2822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump escalates attacks on Zelensky; administration moves to end New York 's congestion pricing tolls: Live
## 2823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump evicts highest-ranking woman in the military from her home on short notice after her ouster over obsession with DEI policies
## 2824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump executive order targets payments and travel after reporters barred from cabinet meeting – live
## 2825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump fans chant 'four more years' as president bathes in praise and hypes Elon Musk's DOGE at Black History Month event
## 2826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump fires Black joint chiefs chair Hegseth accused of promoting diversity
## 2827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump fires Charles Q. Brown as chairman of the Joint Chiefs of Staff
## 2828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump fires Democratic commissioners at civil rights enforcement agency
## 2829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump fires top-ranked US military officer as shake-ups spread
## 2830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump fires two Democratic commissioners of agency that enforces civil rights laws in the workplace
## 2831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump forces federal agencies to work with Musk as USAID inspector fired, ICE officials demoted: Live
## 2832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump freezes federal grant payments in surprise move
## 2833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump funding threat sends Mass. into red alert
## 2834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump gave schools 2 weeks to ban DEI. Lawyers say it's not that simple.
## 2835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump gets an early jump on his presidency - with Biden's help
## 2836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump gifts Elon Musk the Lincoln Bedroom at the White House after turning DOGE office into sleeping quarters
## 2837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump guts DEI, sending legal shockwaves across government, companies, schools
## 2838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump halts aid to South Africa citing new land law
## 2839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump has always been a white supremacist, and it has only gotten worse
## 2840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump has been president for nearly a month. How do you think he's doing? | Opinion
## 2841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump has brought much-needed attention to a site of great tragedy: the Gulf of Mexico
## 2842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump has declared war on DEI. What will change?
## 2843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump has fallen short with his war on DEI
## 2844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump has issued a freeze on grants and loans. Here's what it means for your bottom line
## 2845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump hit with suit by USAID workers union for slashing jobs as court blocks buyout offers: Live
## 2846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump holds Black History Month event as some agencies skip recognition after anti-DEI order
## 2847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump hosts Black History Month event despite diversity crackdown
## 2848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump huddles with House Republicans Agenda includes differences on tax cuts, spending
## 2849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump imposes 25% tariffs on steel and aluminum, threatens 'hell' for Hamas over hostages: Live
## 2850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump intensifies crackdown on diversity, immigration
## 2851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump introduces $5m 'gold card' visa alternative to green cards for 'high level people': Live updates
## 2852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump is Overwhelming the System; ICE Rounds Up Criminal Migrants; Homan: Illegal Immigration has Consequences; Homan Won't Apologize for Making us Safer; CNN Admits Americans are in Line with Donald Trump; The Military is Getting a Makeover; Secretary Hegseth Revamps the Military; Former Fed Worker Exposes Government Laziness; Trump Purges DEI from Government; Media Suddenly Interested in Grocery Prices;
## 2853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump is attacking DEI. Big businesses believe DEI is valuable
## 2854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump is back in office. Here's what it could mean for Carleton - The Carletonian
## 2855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump is holding the middle finger to Hopkins scientists and students
## 2856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump is humiliating his woke enemies – and it’s a joy to watch
## 2857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump is least popular newly-elected president for 80 years – for the second time
## 2858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump is not a cartoon villain; stop making him one
## 2859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump is set to sign a slew of executive orders on Day 1. What are his priorities?
## 2860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump is unleashing sadism upon the world. But we cannot get overwhelmed
## 2861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump isn't gutting medical research. He's cleaning up a corrupt system. | Opinion
## 2862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump issued a flurry of executive orders on Monday. Here are the most notable.
## 2863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump issues an ultimatum to senior FBI agents in his government purge after Kash Patel vowed to 'not go backward'
## 2864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump jumps right to the blame game over DC midair collision that left dozens dead
## 2865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump lashes out at CNN's Kaitlan Collins for asking if he's 'getting ahead of investigation' by blaming DC crash on DEI
## 2866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump launches White House faith office to protect Christians
## 2867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump leans into culture wars in first month in office
## 2868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump loyalist Peter Navarro steering trade war as White House says Elon Musk not in charge of DOGE: Live
## 2869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump makes bombshell decision on 'DOGE dividend' - here's how much every taxpayer could receive
## 2870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump makes dramatic pivot on stance towards the World Health Organization... days after ordering exit
## 2871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump message to corporate America : Stop 'illegal' DEI or face investigations
## 2872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump move to pause federal loans and grants rooted in Project 2025
## 2873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump moves swiftly on his agenda in a departure from his first-termstumbles
## 2874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump moves to slap tariffs on nearly every nation | The Excerpt
## 2875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump moves you might have missed this week
## 2876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump news in brief
## 2877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump no longer needs MAGA voters, so he's gutting Medicaid and laying off veterans | Opinion
## 2878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump nominates former fast-food CEO as ambassador to EU
## 2879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump obliterates DEI with new demand to place every federal diversity program employee on paid leave by 5 pm Wednesday
## 2880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump offering buyouts to all federal workers, source says
## 2881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump offers 2 million federal workers eight months' pay if they quit as funding freeze blocked by judge: Live
## 2882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump officials baselessly blame DEI in plane crash presser
## 2883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump order ending federal DEI programs leaves agencies and stakeholders on uncertain ground
## 2884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump order endsdiversity drive in US armed forces
## 2885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump orders FAA to terminate DEI hiring efforts
## 2886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump orders Treasury to stop 'producing new pennies' as he continues to target wasteful spending: 'literally cost us more than 2 cents'
## 2887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump orders all executive agencies to place DEI employees on leave: Updates
## 2888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump orders all federal employees to remove pronouns from their emails
## 2889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump orders end to remote work, hiring freeze for federal workers
## 2890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump orders end to ‘radical gender ideology’ in US military
## 2891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump orders purge of military academy visitor boards
## 2892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump orders reflect his promises to roll back transgender protections and end DEI programs
## 2893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump ousts top U.S. general Charles "CQ" Brown
## 2894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump pauses ALL federal grants, loans and other assistance, leaked memo reveals
## 2895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump pauses federal grants, impact for research universities unknown
## 2896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump picks right-wing podcaster as FBI deputy
## 2897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump plays golf with Tiger Woods before attending Super Bowl
## 2898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump pledges Iron Dome to shield US from hypersonic missiles
## 2899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump points finger at diversity ty drive under Biden and Obama
## 2900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump praises Elon Musk as pair repeat familiar criticisms of opponents – as it happened
## 2901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump predicts ‘billions’ of dollars of Pentagon fraud in Fox News interview
## 2902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump preparing plans to dismantle the 'woke' Department of Education through executive order
## 2903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump presidency sparks concerns over future of diversity culture at UK firms
## 2904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump prioritizes immigration, DEI rollback and government reform in first week - The Parthenon
## 2905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump promises to make King's dream a reality, as some rally to defend civil rights
## 2906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump puts all DEI federal employees on leave
## 2907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump puts all diversity staff on leave ‘immediately’
## 2908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump puts all federal DEI workers on leave - and plans to fire them - in latest 'culture wars' attack
## 2909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump puts his people first. We should too America is slashing foreign aid. It's time we ignored the global elites and prioritised Britain 's national interest
## 2910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump puts tariff threat on hold after Colombia agrees to take deported migrants: Live
## 2911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump raises alarm with Napoleon dictator quote as 20 immigration judges abruptly fired: Live updates
## 2912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump refuses to take accountability for deadly plane crashes
## 2913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump reiterates hostage deadline threat to Hamas; scramble to fix DOGE's nuclear experts blunder: Live
## 2914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump releases message ahead of Super Bowl as he jets into New Orleans after playing golf with Tiger Woods
## 2915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump removes Brown, names new Joint Chiefs of Staff chairman
## 2916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump removes Joint Chiefs chairman Gen. CQ Brown in purge of military leaders
## 2917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump removes chairman of Joint Chiefs Military purge affects several senior officials
## 2918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump rescinds measure used to fight workplace discrimination for 60 years
## 2919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump reshapes policy with flurry of executive orders - The DePaulia
## 2920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump returns to power after unprecedented comeback, emboldened to reshape American institutions - UNF Spinnaker
## 2921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump reverses Biden diversity ban on saying ‘airmen’
## 2922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump revokes Biden-era order allowing transgender members to serve in military
## 2923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump rolls back DEI across the federal government. Is your workplace next?
## 2924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump rolls back DEI rules in the federal workforce
## 2925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump rolls back bedrock 1960s-era civil rights measure
## 2926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump rolls back trans and gender-identity rights and takes aim at DEI
## 2927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump s Biggest Staff Shakeups So Far: DEI Employees On Leave, DOJ Vets Reassigned, José Andrés Fired
## 2928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump s Executive Orders: Here Are All His Big Day-One Actions On Immigration, Energy, TikTok And More
## 2929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump s Federal Worker Buyout Pause Lifted: Here s What To Know As 75,000 Workers Accept Offer
## 2930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump sacks US military’s top-ranked officer
## 2931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump sacks coast guard leader over ‘excessive diversity focus’
## 2932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump says FEMA is "getting in the way" and states should "take care of their own problems"
## 2933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump says USAID run by "a bunch of radical lunatics" as Dems demand answers on DOGE visit
## 2934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump says disaster management agency ‘getting in the way’, states should take care of own problems – live updates
## 2935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump says he hasn't read it, but Project 2025's dystopian vision is coming true before our eyes
## 2936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump says he wants Kyiv to 'do a deal' to give the US Ukraine 's rare earth metals in exchange for aid
## 2937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump says helicopter in crash was flying too high
## 2938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump says ‘I’m OK with’ Russian president Putin’s demand to keep Ukraine out of Nato – as it happened
## 2939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump scores big win as John Ratcliffe confirmed as CIA director
## 2940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump seeks to expand his influence over arts and culture with Kennedy Center moves
## 2941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump selects DEI critic and former Virginia senate candidate Hung Cao for Navy's No. 2 post
## 2942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump signed slew of executive orders on Day 1. What are his priorities?
## 2943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump signs 26 executive orders on first day in office
## 2944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump signs 4 new executive orders, transforming military
## 2945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump signs an order to revise the Pentagon’s policy on transgender troops
## 2946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump signs bombshell executive order to make himself the most powerful president in history as he enacts controversial Constitutional theory
## 2947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump signs executive order to eradicate DEI from the FAA and makes awkward JOKE about visiting plane crash site
## 2948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump signs executive orders to reshape the military, including banning transgender troops
## 2949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump signs flurry of executive orders in his first week back in office
## 2950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump signs multiple executive orders after taking office earlier this month
## 2951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump signs new executive orders, Quakers sue government department  | The Daily Campus Centered Divider Line
## 2952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump signs order on birthright citizenship – as it happened
## 2953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump signs orders to eliminate DEI from US military and reinstate troops who refused Covid vaccines – as it happened
## 2954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump signs wave of executive orders on his first day in office
## 2955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump softens tone but Starmer leaves without Ukraine security pledges
## 2956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump sparks fear and euphoria among the global elite
## 2957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump starts 'two-year race' with huge star-studded rally President-elect promises to kickstart reforms from day one
## 2958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump starts military overhaul with Coast Guard's first female leader
## 2959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump strips millions from DEI foreign aid programs funding Irish musicals, LGBTQ programs in Serbia and more
## 2960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump successfully plunges government into darkness as 8,000 DEI web pages stripped from internet
## 2961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump sued in attempt to block his anti-diversity orders
## 2962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump tackles immigration and DEI in first two weeks
## 2963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump takes executive action on aviation DEI, appointing FAA lead in wake of plane crash
## 2964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump targets Board of Visitors for Army, Air Force, Navy, Coast Guard academies
## 2965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump targets DEI and civil service protections, striking fear in some federal workers
## 2966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump targets FAA diversity efforts in plane crash probe despite no evidence they played any role
## 2967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump teaches the are of the deal; Mexico and Canada cave to Trump; What went wrong above the Potomac; Fixing the FAA, what went wrong in D.C. ; New York Times reports 90 percent of air traffic control facilities are understaffed; Kanye West's wife showed up naked to the Grammys; Music and nudist's biggest night; USAID Corruption Evident For Years; DOGE Critical To Ending The Abuse; Anti-ICE Agitators Take Over L.A. Streets
## 2968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump tears into lazy federal staff who work from home and warns they will be FIRED if they don't return to office
## 2969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump teases executive order overhauling or nixing FEMA
## 2970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump thanks Black Americans for electing him in Black History Month remarks
## 2971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump to Leave Blair House for Church Service; Sen. Katie Britt (R- AL ) is Interviewed about the Trump Administration. Aired 8:30-9a ET
## 2972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump to Quickly Take Action on Immigration, Energy, DEI Policies; Hamas Releases Three Hostages, Celebrations in Tel Aviv; Trump Says We Have to Save TikTok at Victory Rally. Aired 4:30-5a ET
## 2973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump to Sign Laken Riley Act Into Law; WH Says Federal Aid Freeze Still in Effect; Fed Leaves Interest Rates Steady, Despite Trump Demands. Aired 2-2:30p ET
## 2974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump to attend Saudi -backed conference in Miami and sign more executive orders today: Live updates
## 2975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump to cut off funding for schools and universities with Covid vaccine mandates – as it happened
## 2976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump to hit Canada, Mexico and China with tariffs beginning Saturday | The Excerpt
## 2977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump to issue executive orders defining sexes, ending DEI practices in government
## 2978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump to order DEI review of aviation, despite lack of link to crash
## 2979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump to order end to DEI in military and reinstate troops who refused COVID vaccines
## 2980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump to sign executive order removing DEI from military, says Pete Hegseth
## 2981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump to sign more than 200 executive orders on first day in office, report says
## 2982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump to sign order creating a new 'Iron Dome' U.S. missile defense system
## 2983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump touts national unity over air disaster before bashing Biden and Obama
## 2984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump unleashing death by a thousand cuts to D.C. federal workforce
## 2985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump uses trip to Super Bowl to declare Gulf of America Day as he flies over it: Live
## 2986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump vowed to champion US workers - the reality has been a relentless assault
## 2987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump vowed to tackle inflation, but this post is fabricated | Fact check
## 2988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump wants a US sovereign wealth fund. Here's what that could mean.
## 2989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump wants an Israeli -style 'Iron Dome' missile defense shield for U.S.
## 2990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump wants federal workers back in offices within 30 days
## 2991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump wants media to bend the knee. His new FCC chairman is leading the charge | Opinion
## 2992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump wants to dismantle DEI. These advocates are pushing back.
## 2993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump wants to undo diversity programs. Some agencies react by scrubbing US history and culture
## 2994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump was challenged after blaming DEI for the DC plane crash. Here's what he said
## 2995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump wins war on woke with vow to remake US
## 2996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump won't make America great by wrecking Nato and the global post-war order Relentless optimism at home, but unyielding pessimism abroad: that is the disconnect in the president's message
## 2997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump won't visit Washington DC plane crash site because it's 'the water': 'You want me to go swimming?'
## 2998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump's "Sharpiegate" pick to lead NOAA faces new, mounting challenges
## 2999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump's "anti-" rhetoric and the Great Replacement Theory - Northern Iowan
## 3000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's 50 per cent doctrine
## 3001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump's America—Land of Cruelty and Vengeance | Opinion
## 3002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's Approval Rating; Trump Revokes Security for Ex-Aides; Christopher Reeve's Story. Aired 8:30-9a ET
## 3003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump's Baselessly Links Diversity Initiatives to Collision; Rain Could Hamper Recovery Efforts in Icy Potomac River; Divers Battle Mud, Zero Visibility in Recovery Efforts. Aired 6-6:30a ET
## 3004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump's Corruption Claims Are a Smokescreen for His Own Ill Deeds | Opinion
## 3005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's DEI attack may halt progress for disabled workers
## 3006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's DEI attacks send Colorado universities scrambling
## 3007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump's DEI changes pose challenges to CPP
## 3008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump's DEI executive order leaves Brown administrators uncertain - The Brown Daily Herald
## 3009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's DEI order leaves academic researchers fearing for political influence over grants
## 3010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's DEI order strips Air Force curriculum of 1st Black pilots, female WWII pilots
## 3011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's DEI war in private sector grows Fear increases over probes, losing federal contracts
## 3012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump's Diversity Orders Rattle CEOs: What Companies Should Know About New DEI Rules
## 3013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump's Education Department dismantles DEI measures, suspends staff
## 3014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's Executive Order Sparks Controversy Over Equal Employment Opportunity Act
## 3015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump's Executive Orders Loom Large Over Davos ; Trump Presidency Brings New Challenges For Global Leaders; Trump To Announce AI Infrastructure Investment; Zelenskyy Urges European Unity As Trump Returns To Office; Interview With Nicolai Tangen Of Norges Bank IM; Interview With Klaus Schwab Of The World Economic Forum. Aired 4-5p ET
## 3016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump's Executive Orders Spark Concern Over Diversity, Equity and Inclusion at Cornell
## 3017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's Executive Orders and Canisius
## 3018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump's Executive Orders on DEI Cause Uncertainty
## 3019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's First 36 Hours: A Triumph For America ; America Grateful To Have A Real POTUS Again; Democrats Are Out Of Touch On Birthright Citizenship; Trump Pardons January 6 Defendants On Inauguration Day; Democrats Outraged Over Trump Pardons Of Jan. 6 Defendants; Trump Lectured By Woke Bishop; Woke Bishop Says People In The Country Are Scared Now And Asks Trump To Have Mercy On Migrants; Bishop Budde Has Been Going After Trump Since 2020; Trump Withdraws U.S. From WHO; Trump Is Restoring American Sovereignty
## 3020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's First Days In Office
## 3021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump's First Week in Office - Exponent
## 3022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump's Freeze On Federal Aid Money Takes Effect At 5PM ET; New Jet Breaks Sound Barrier On Historic Test Flight. Aired 4-5p ET
## 3023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump's Funding Freeze Causes Uncertainty for U Researchers
## 3024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump's Guantanamo Bay Threat; Cuba Slams Trump's Guantanamo Bay Threat; Trump Settles His Lawsuit Against Meta; RFK Jr. Clashes With Democrats Over Vaccines And Abortion Rights; DeepSeek's Disruption; Three Israeli And Five Thai Hostages Expected To Be Released Thursday; Steve Witkoff Enters Gaza; Escape From The Democratic Republic Of Congo; A.I.- Powered Robot Therapy Dog. Aired 6-7p ET
## 3025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump's Health Care Executive Order Could Hit Republican States Hardest
## 3026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's Housing Sec To Scrap Obama-Era Rule Allowing Men In Women's Shelters
## 3027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's Impressive Achievements In One Month
## 3028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's Justice Department Halts Police Reform Agreements; Trump Signs New Executive Orders in Oval Office. Aired 3:30-4p ET
## 3029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's Manufacturing Campaign Pledge Caught in Crosshairs of Grant Pause
## 3030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump's New Deal: 100 daysto reverse the legacy of FDR weekend essay In the first of his monthly essays, Niall Ferguson compares the executive orders of the past ten days with a similar blizzard from the president who shaped modern America
## 3031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump's New Military Executive Orders Set for Pete Hegseth's First Day
## 3032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's Reckless Agenda of Firings and Funding Cuts Devastates Americans Nationwide Arrow
## 3033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump's Treasury chief Scott Bessent has witty comeback about being highest-ranking LGBTQ official in history
## 3034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's aggressive tariffs on Canada, Mexico and China begin today after president admits it may cause 'disruption': Live
## 3035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump's anti-DEI campaign reverses a landmark civil rights law
## 3036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's anti-DEI efforts at schools have unclear fate at GW, experts say - The GW Hatchet Donation Button
## 3037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump's anti-DEI military initiative blatantly attempts to erase Black American contributions
## 3038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump's anti-DEI orders worry some federal workers
## 3039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's attacks against DEI are unacceptable
## 3040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump's blame game returns after deadly plane crash
## 3041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump's bureaucracy goes to war
## 3042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's cash freeze leaves tech, AI projects in limbo
## 3043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump's chaotic loan freeze ordeal is bad for business
## 3044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's day two orders: See a list of highlights
## 3045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's diversity rollback sparks civil rights outcry
## 3046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump's education chief comes from the boardroom, not the classroom. Backers say that's her strength
## 3047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's example will help Britain finally crush the woke brigade
## 3048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump's executive orders create uncertainty for international students - The Charger Bulletin
## 3049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump's executive orders jeopardize UCSD research funding - The UCSD Guardian
## 3050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump's executive orders really aren't 'shock and awe' after Biden's overreach | Opinion
## 3051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump's executive orders reshape American policies - Richland Student Media
## 3052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's executive orders undermine our government - The Murray State News
## 3053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump's federal aid pause is a necessary reassessment of funds - The Ticker
## 3054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump's first month has been devastating. And people voted for all of this. | Your Turn
## 3055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's first week a blizzard of action Aggressive use of power is testing boundaries
## 3056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's foreign aid freeze forces health clinics in a vulnerable region of Syria to close
## 3057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's frantic first week back in White House ends with attacks on DEI, promises of tax breaks: Live
## 3058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump's funding pause will not impact student loans But review leaves some in education frightened
## 3059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's gut-it-all plan for D.C. 's "Deep State"
## 3060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump's gutting of federal DEI programs will hit rural poor communities
## 3061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump's hatchet signals the death of American soft power
## 3062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's historic war on traditional media
## 3063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump's mega-MAGA month transforms America
## 3064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's military firings leave some Democrats reeling
## 3065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's move to cut USAID funding is too aggressive to be justified - The Ticker
## 3066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump's orders leave US Inc straining to keep up Regulation. Corporate outlook Businesses strive to assess what a barrage of executive actions will mean for them
## 3067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump's orders to end DEI programs reflect his push for a profound cultural shift
## 3068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump's pick for education chief sketches a roadmap for dismantling the department
## 3069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's prejudiced agenda endangers security
## 3070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's push against Education Department raises concerns over DEI, civil rights
## 3071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump's reelection lands Army best free promotion in 15 years as recruitment swells to record high
## 3072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's renaming spree continues as Pete Hegseth refers to Fort Liberty as ' Fort Bragg '
## 3073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump's return eclipses Davos agenda as global elite voice hopes and fears Summit. Economic sentiment US executives look forward to 'bonfire of regulations' while Europeans remain nervous
## 3074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump's second term: What his education agenda means for colleges and universities
## 3075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump's second week in office delivers jolts and chaotic orders with a mix of politics and tragedy
## 3076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump's second week leaves uncertainty over federal workers' jobs and the services they provide
## 3077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump's shock and awe tests Americans' response to chaos
## 3078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump's spending pause creates chaos in Virginia
## 3079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump's spite agenda shows lust for revenge is undimmed
## 3080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump's sweeping changes to grants and loans begins now... here's what it means for you
## 3081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump's team wants snitches to expose DEI work
## 3082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's telling remark about JD Vance 's brilliant wife Usha ... and what it reveals about America 's future
## 3083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump's transportation secretary faces Washington plane crash crisis on his first full day in office
## 3084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump, Putin discuss Ukraine , mutual visits to US and Russia ; Tulsi Gabbard confirmed to lead intelligence: Live
## 3085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump, U.K. Prime Minister Starmer To Meet At White House For Critical Talks On Ukraine ; RKF Jr. Downplays Texas Outbreak Amid Measles Death; Sen. Chris Coons (D- DE ) Discusses Speaker Johnson Vowing GOP Will Not Cut Medicaid. Aired 7:30-8a ET
## 3086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump, Vance And Zelenskyy Spar In Oval Office
## 3087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump, Zelenskyy Trade Insults In Escalating War Of Words; Defense Secretary Orders Military To Prepare For Major Budget Cuts; No Ruling Yet On DOJ Push To Drop Corruption Charges Against Adams. Aired 7:30-8a ET
## 3088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump-Musk Overreach Has Ignited the Opposition. Viva La Resistance! | Opinion
## 3089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump: Apple should get rid of DEI rules instead of making ‘adjustments’
## 3090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump: Iowa should pass measure removing protections for transgender people ‘as fast as possible’
## 3091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump: Judges Shouldn't Say "What You're Supposed To Be Doing"; Trump Pardons Former Illinois Gov. Rod Blagojevich; Trump Doesn't See Vance As His Successor: "It's Too Early." Aired 9-10p ET
## 3092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump: Musk "Won't Do Anything Without Our Approval"; Trump Declares Victory In Stand-Off With Mexico & Canada; Father: All Victims "Deserve To Be Remembered." Aired 9-10p ET
## 3093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump: Reciprocal Tariffs Are About "Fairness"; RFK Jr. Confirmed And Sworn In As Health Secretary; NYT Claims Common Sense Department Echoes Trump; Arab States Seek Alternative To Trump's Gaza Plan; Both Putin And Zelenskyy Want To Make A Deal; California And Minnesota Face Federal Investigation; DOGE Cuts Wasteful Spending By Education Department
## 3094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump: Tariffs Are Very Powerful
## 3095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump: The Golden Age Of America Has Begun; Global Perspective On Trump's First Week; Trump's Message To The World: America Is Back; President Trump Declares Border Emergency On Day One; Trump Pressures Putin To End War; Trump Takes Aim At Newsom Policies; The Left Loses It Over Dismantling Of DEI; Media Moments That Matter
## 3096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump: The U.S. Will Take Over The Gaza Strip; Democrats Sound Off On DOGE; Department Of Education On The Chopping Block; Anti-Trump Protests Planned For Wednesday; Some School Districts Resist ICE Enforcement; Trump Campaign Promise To Dismantle Education Department; Black National Anthem To Be Performed At Super Bowl
## 3097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump: Ukraine Will Be Part of Any Peace Negotiations; Trump Appears to Cast Doubt on Whether McConnell is a Polio Survivor; Judge Extends Pause on Trump's Dismantling of USAID. Aired 3:30-4p ET
## 3098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump’s 27-year-old press secretary announces ‘no more condoms for Gaza’ in new-look briefing
## 3099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump’s DEI stance scares disabled workers
## 3100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump’s FCC probing Comcast, NBC over DEI policies
## 3101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump’s IVF order: a PR move that gives pronatalists cause for cheer
## 3102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump’s aid freeze confusion leaves trillions of dollars in balance
## 3103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump’s anti-DEI executive orders could jeopardize safety of Nasa crews
## 3104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump’s anti-DEI push puts top colleges in the crosshairs
## 3105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump’s anti-diversity executive orders threaten Americans’ health, experts say
## 3106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump’s approval rating dips after rush of executive orders, poll finds
## 3107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump’s blame game after DC plane crash
## 3108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump’s demands to drop DEI leads to deletion of unrelated federal pages
## 3109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump’s first 10 days have overwhelmed the Democrats – and the liberal media
## 3110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump’s first full day back in office — as it happened
## 3111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump’s first week: New president moved with lightning speed to overhaul government
## 3112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump’s funding freeze temporarily blocked by court – what we know so far
## 3113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump’s immigration crackdown
## 3114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump’s imperial emporium
## 3115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump’s new tariffs might be his first mistake
## 3116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump’s obsession with immigration is really an obsession with segregation
## 3117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump’s policies clash. But the numbers may just add up
## 3118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump’s press chief shows she’s more than capable of going full North Korea
## 3119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump’s return drowns out the Davos agenda
## 3120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump’s scapegoating threatens the entire basis of aviation safety
## 3121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump’s spending freeze roils Capitol Hill
## 3122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump’s war on diversity initiatives divides Britons
## 3123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump’s ‘Thomas Cromwell’: How a little-known fixer is seizing control of the US government
## 3124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trying To Digest Everything': Federal Employee Really Upset That Trump's Executive Orders Are Making Her Work Harder
## 3125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Tuberville Supporting Elimination of DEI, Restoration of Lethality in Armed Forces
## 3126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Tuberville Urges Senate to Confirm Hegseth and Rollins, Secure American Farmland with the FARM Act
## 3127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Tuberville, Schmitt Introduce Legislation To Dismantle DEI
## 3128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Tulsi Gabbard Was Victimized By The Intel Community - Now She's Trying To Oversee It
## 3129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Tulsi Gabbard fires more than 100 intelligence agents over transgender sex chat messages
## 3130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Turn This TV Off: The revolution is being televised
## 3131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Twin Cities Pride Cuts Target Sponsor Amid DEI Rollbacks
## 3132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Twin Cities Pride to cut ties with Target over DEI rollback
## 3133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            U.N. Security Council Adopts U.S. -Led Resolution That Fails to Call Russia the Aggressor; Europeans Abstain; Europeans Show Solidarity with Kyiv in G7 Conference; Vatican: Pope Still Critical, Showing "Slight Improvement"; Trump: Podcaster Dan Bongino to be FBI Deputy Director; Apple to Invest $500 Billion in U.S. as Trump Tariffs Loom. Aired 4-4:30a ET
## 3134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  U.S. , Colombia Hit Each Other With Dueling Tariffs In Deportation Fight; Colombia Tariffs Could Impact Prices Of Coffee, Flowers And Gas; Trump Administration Launches Immigration Enforcement Blitz; Interview With Laredo Mayor Victor Trevino About Immigration Enforcement; DOJ Removes Online Database Of January 6th Convictions; Trump Closes Federal DEI Offices, Puts Staffers On Leave; Fire- Scorched Parts Of LA County Brace For Rain, Mudslides; Trump Says He May Consider Rejoining World Health Organization. Aired 7-8p ET
## 3135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            U.S. - Russia Talks To Take Place In Saudi Arabia Tuesday; Netanyahu Vows To "Finish the Job Against Iran " With U.S. Support; Storm Causes Flooding Across Parts Of West Virginia ; UnitedHealthcare CEO Shooting Suspect Thanks People For Fan Mail; White House Bans AP Indefinitely Over The Use Of Gulf Of Mexico; Kentucky Refugees, Support Agencies Reeling Impacts Of Trump Crackdown; New Mini Tournament For All-Star Game. Aired 7-8p ET
## 3136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               U.S. DEPARTMENT OF EDUCATION ADVANCES SCHOOL CHOICE BY SUPPORTING CHARTER SCHOOLS
## 3137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          U.S. DEPARTMENT OF EDUCATION DIRECTS SCHOOLS TO END RACIAL PREFERENCES
## 3138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      U.S. DEPARTMENT OF EDUCATION TAKES ACTION TO ELIMINATE DEI
## 3139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          U.S. Department of Education Launches "End DEI" Portal
## 3140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       U.S. Distances Itself from Ukraine as Trump Invites Putin; Reporter Barred from Oval Over Gulf of America Clash; FCC Opens Probe into Comcast to Root Out DEI Programs. Employee and Union Sources Say Mass Firings Have Begun at Federal Agencies; Pam Bondi Sues New York Over Sanctuary City Policies. Aired 10-11p ET
## 3141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          U.S. Stocks Fall as Trump's Tariff Package is About to Take Effect; American Among Three Hostages Set to be Freed From Gaza Tomorrow. Aired 3:30-4p ET
## 3142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UA Board of Regents DEI practice assessment and elimination could affect Alaska Native Studies
## 3143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UA Land Acknowledgement drops DEI Language - The Daily Wildcat
## 3144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UA administrators navigate new federal policies from the Trump Administration - The Daily Wildcat
## 3145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UAA begins assessing and eliminating DEI practices
## 3146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     UC Berkeley faculty respond to Department of Education letter on race and diversity | Campus | dailycal.org
## 3147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UCAR , NSF NCAR Close DEI Offices
## 3148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UCLA School of Law Williams Institute: Proposed Cuts to the Federal Workforce Could Impact 314,000 LGBTQ U.S. Government Employees
## 3149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          UCR students and community react to President Trump's executive orders
## 3150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UCSD celebrates Black History Month - The UCSD Guardian
## 3151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UF ceases DEI and accessibility funding
## 3152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UF pauses non-academic Living Learning Communities in campus housing - The Independent Florida Alligator
## 3153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UH pauses federal research grants due to Trump's executive orders, attacks on DEI continue
## 3154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UI President Barbara Wilson tells lawmakers 'diversity still matters' - The Daily Iowan
## 3155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UI proposes closing gender studies department, drawing controversy and praise - The Daily Iowan
## 3156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UK politics live: Starmer warns UK faces 'generational' threat to security as PM to meet Trump in Washington
## 3157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UK receives letter regarding racial discrimination from US Department of Education - Kentucky Kernel
## 3158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   UK returns to growth but living standards fall; oil price weakens on Ukraine peace talk hopes – business live
## 3159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UK spent aid budget on diversity scheme in Mauritius during Chagos negotiations
## 3160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          UMN and UCLA students perspective on recent California wildfires - The Minnesota Daily
## 3161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UMN rolls back DEI, pauses hiring for Law School Assistant Dean position - The Minnesota Daily
## 3162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UMN students, faculty react to potential DEI rollbacks - The Minnesota Daily
## 3163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UMich student leaders and administration react to new federal orders
## 3164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UN Security Council adopts neutral US stance on war in Ukraine | The Excerpt
## 3165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UN chief warns against 'ethnic cleansing' after Trump's shocking threat to take over Gaza: Live updates
## 3166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UNC Asheville suspends certain requirements related to diversity-intensive courses
## 3167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UNC System Suspends DEI Course Requirements?  - THE CAROLINIAN
## 3168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UNC System suspends DEI-related mandated course credits
## 3169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UNC system removes DEI course requirements following Trump orders
## 3170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     UNL students, APU react to MLK and Inauguration Day overlap
## 3171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UNL students, staff join nationwide protest against Trump's executive orders
## 3172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   UNM reaffirms commitment to diversity following federal guidance against race-based programs - The Daily Lobo
## 3173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             UO community reacts to Trump's first week in office
## 3174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            US Air Force Cuts Training Course on Tuskegee and Female WWII Pilots
## 3175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            US Army Identifies Third Black Hawk Soldier, Family Issues Statement
## 3176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 US Army Responds to Claims DEI Simply Rebranded
## 3177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   US Army Says It Will 'No Longer' Accept Transgender Applicants, Support Sex-Change Procedures
## 3178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             US Government Department to Tie Funding to Marriage and Birth Rates
## 3179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           US INFORMATION ERASURE HURTS EVERYONE
## 3180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       US Pressures United Nations to Drop Diversity, Equity, Inclusion Language
## 3181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    US Recession Warning Issued by Economist Who Predicted 2008 Financial Crisis
## 3182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                US Veterans Given Update Amid Federal Pay Freeze
## 3183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              US and UK out of step with rest of the world on AI
## 3184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              US army refuses to name female pilot killed in helicopter crash with passenger jet
## 3185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             US business schools brace for the second Trump term
## 3186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      US central bankers resist pressure from Donald Trump to cut interest rates
## 3187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               US culture war show comes to London – and strikes a chord with European populists
## 3188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     US diversity staff put on leave as Trump orders end to federal DEI programs
## 3189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   US education department offers buyout that employees call ‘beyond misleading’
## 3190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        US equality chief fired by Trump condemns ‘demonization of the term DEI’
## 3191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             US federal workers ordered to remove pronouns from email signatures
## 3192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    US federal workers weigh Trump’s buyout offer: ‘We’re feeling petty as hell’
## 3193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        US foreign aid freeze is upending global aid and the work of contractors
## 3194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 US foreign aid funded legal advice for gay asylum seekers in UK
## 3195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          US government agencies order employees to remove gender pronouns from email signatures
## 3196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          US health websites, datasets taken down as agencies comply with Trump executive orders
## 3197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            US imports hit record high as Trump tariffs backfire
## 3198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              US intelligence workers turned work chat into sexually explicit trans advice group
## 3199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               US is on course for higher inflation, interest rates and deficits
## 3200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              US judge temporarily blocks Trump’s anti-DEI purge
## 3201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       US officials have been absent from global climate forums during Trump 2.0
## 3202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               US president's shadow looms large over the elite at Davos Delegates at the World Economic Forum are gripped by what Donald Trump may do next, reports Matt Oliver
## 3203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       US private equity diversity project for Black students affirms commitment
## 3204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    US scientists feeling ‘stress and fear’ as sweeping Trump orders hit funding
## 3205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 US scientists must resist Trump’s efforts to tear down research
## 3206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         US scientists must resist the assault on research Opinion Public health
## 3207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              US scientists warn ‘critical work’ at risk from further Trump cuts
## 3208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 US supreme court likely to back straight woman in ‘reverse discrimination’ case
## 3209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             US tech giants are rolling back DEI. Its ripple effects could spill over to Europe.
## 3210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 USAID Cash Ended Up in Terrorist Hands; Democrats Want Musk Deported; Democrats Revive Dictator Hoax; Retirement Cave Just Went Digital; DOGE is Catching Waste Everywhere; Trump Talks Tariffs with U.K. Prime Minister; DOJ Releases Phase One of Epstein Documents; Bondi Demands to See All Epstein Documents; FBI Withheld Thousands of Epstein Documents; Authorities: Hackman and Wife's Deaths Suspicious; DEI Thursday
## 3211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  USAID In Limbo As Musk Says Trump Signed Off On Shutting Down Agency; Rep. Pat Ryan (D- NY ) On China Hits Back At U.S. With Retaliatory Tariffs; Today: NTSB To Release Data From Black Box Of Black Hawk Helicopter That Collided With Jet. Aired 7:30-8a ET
## 3212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         USAID Programs at Risk of Being Gutted by Elon Musk, and What They Cost
## 3213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          USAID Wasted Billions Of Tax Dollars On Programs That Actively Harmed Americans. Here Are The Receipts
## 3214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              USAID inspector general is fired by the White House after attacking DOGE and Trump
## 3215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                USAID workers will be escorted to their desks and have 15 minutes to collect personal belongings from gutted agency HQ this week
## 3216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              USDA Trying To Rehire Staff Working On Bird Flu After Firing Them; Senate Votes To Confirm Kash Patel As FBI Director; Waltz: Trump "Frustrated" By Ukraine 's Zelenskyy Not Accepting Deal; Child Dies By Suicide After Alleged Bullying, Deportation Threats; HHS Narrows Definitions Of Words Like "Sex," "Males" & "Females". Aired 2:30-3p ET
## 3217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      USF researchers face uncertainty over NIH grant reductions
## 3218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UW PEOPLE Program not impacted by national DEI policy changes - The Badger Herald
## 3219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UW political science professor previews first 100 days of Trump's presidency - The Badger Herald
## 3220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UW-Madison to reassess race-based programs to comply with federal orders
## 3221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UWO lists campus DEI building for sale - The Advance-Titan
## 3222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ukraine Marks Three Years Since Russia 's Full-Scale Invasion; European Leaders In Ukraine To Mark Three Years Since Russian Invasion; Several Agencies Push Back On Musk's Mass Email Threat; Federal Workers Dispute Musk's Claims, Admit System Needs Updating; Merz Hopes For Good Test With U.S. Despite Its "Waning" Interest; Israel Deploys Tanks In West Bank For First Time In Two Decades; Pop Icon Confirms Ninth Studio Album Underway. Aired 12-1p ET
## 3223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ukraine ’s uncertain future on the third anniversary of Russia ’s invasion
## 3224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Uncertainty Lingers Over Ukraine 's Mineral Wealth; Some Republicans Angry Over Government Cuts; Measles Cases on the Rise as Vaccination Rates Decrease; Police Investigating Deaths of Gene Hackman, Wife. Aired 4:30-5a ET
## 3225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Uncertainty at Wesleyan After White House Calls for End of Diversity Initiatives
## 3226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Uncertainty of Trump 2.0 takes some college presidents back to pandemic times
## 3227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Under 30 Company Accern Gets Acquired By  Hotter  AI Startup
## 3228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Under pressure, White House reinstates HBCU scholars program
## 3229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Undergrads worry DEI rollbacks will impede job search - PNW Pioneer
## 3230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Undergraduate Student Congress elects vice chair, amends election rules
## 3231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Undermining Federal Programs Depletes the Common Good | Opinion
## 3232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Unions troll Elon Musk's DOGE with 'Department of People Who Work for a Living'
## 3233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               University DEI website changes language following executive orders - The Observer
## 3234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      University President Farnam Jahanian  speaks to students at Undergraduate Student Senate GBM  - The Tartan
## 3235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    University Senate discusses political impacts on higher education - The Whit
## 3236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                University alumni react to ODI dissolution, some cease donations
## 3237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 University permanently removes Green Library banner, citing institutional neutrality Login or create an account
## 3238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        University responds to anti-DEI executive orders - The Murray State News
## 3239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  University to review DEI programs following Trump's executive order Login or create an account
## 3240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          University weathers uncertainty surrounding Trump executive orders - The Vermont Cynic
## 3241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Unknown future for Department of Education
## 3242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Unpacking Trump's historic shake-up of the federal workforce
## 3243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Up to 74m Americans unable to access healthcare after Trump's federal funding freeze causes Medicaid chaos
## 3244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Upcoming Financial Aid Changes: How Do They Affect College of DuPage Students? - The Courier
## 3245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Updated: University removes diversity from DEI page - The Mass Media
## 3246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Urgent Investigation After Deadliest U.S. Airliner Crash in 23 Years; Trump Baselessly Blames Diversity Initiatives for Plane Crash; One Black Box Has Been Recovered from Potomac River . Some Victims Of Mid-Air Collision Being Identified. Aired 6-7p ET
## 3247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Useless': Piers Morgan Rips Failed DNC Chair Nominee Saying Racism, Misogyny 'Played A Role' In Harris' Loss
## 3248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             VA Dismisses More Than 1,400 Probationary Employees
## 3249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                VA Ends Diversity, Equity, Inclusion, Stops Millions in Spending on Diversity, Equity, Inclusion
## 3250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                VA Job Cuts Spark Anger: 'Putting Veterans Last'
## 3251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      VA secretary: ‘We’re not cutting benefits’
## 3252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     VIDEO: Blackburn Details DOGE's Efforts to Restore Accountability in the Federal Government
## 3253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         VIDEO: GOVERNOR PATRICK MORRISEY'S STATEMENT ON WVU ENDING DEI PROGRAMS
## 3254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VIDEO: In Hearing, Pressley Slams GOP Attacks on DEI, Gutting of Essential Services for Vulnerable Communities
## 3255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            VIDEO: On Senate Floor, Hirono Warns Against Confirming Vought--Project 2025 Architect and Trump Nominee to Lead OMB
## 3256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                VUMC removes DEI from all websites, social media; SCSJI changes to SCBC - The Vanderbilt Hustler
## 3257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Vance Enters Oval Office For First Time; Donald Trump Reflects On Historic White House Return; Trump Shuts Down DEI Office; Woke Bishop Chose Partisanship Over Prayer; Media Still Obsessing Over January 6th; Biden Crime Family Pardons Are A Red Flag; ICE Launches Mass Deportation Operation; Trump Revives Remain-In- Mexico Policy; Trump Frees Up ICE Agents To Remove Migrants; What Did Barron Tell the Big Guy
## 3258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Vance Pressed On Trump Plans To Lower Prices; Selena Gomez Cries Over Ice Detaining Migrants; Navy Vet's Stirring NFL National Anthem Goes Viral; China's DeepSeek AI Model Triggers Stock Selloff
## 3259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Vance Scolds European Allies Over Immigration, Free Speech; Vance: "Threat From Within" More Dangerous To Europe Than Russia ; Now: Vance & Zelenskyy Meet At Munich Security Conference; Mixed Message On Ukraine Coming From Trump, Vance, Hegseth; Seventh Prosecutor Resigns Over Order To Drop Eric Adams Case. Aired 12-12:30p ET
## 3260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Vance breaks tie to confirm Pete Hegseth as Defense secretary
## 3261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Vance defends Trump’s DEI comments after DC plane crash: Trump ‘wasn’t blaming anybody’
## 3262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Vance: Gas, grocery prices ‘are going to come down,’ but it will ‘take a little bit of time’
## 3263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Venezuela Returns Six American Hostages; Trump: We're Taking Back the Panama Canal; Mexico Caved in Under 48 Hours; Border Security is National Security; Canada Begs for Mercy on CNN; Canada Caves Just Like Mexico ; Trump Proves Tariff Threats Work; Trump Swaps Soft Power for American Might; Carville Rips Kamala to Pieces; New Democratic Leader Loves DEI; Lost Democrats Look for a Leader; Elon Exposes Massive Government Waste; USAID Gets the DOGE Treatment; Rubio Takes the Reins of USAID; Democrats Melt Down Over DOGE
## 3264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Victor Davis Hanson Says 'It's Ironic The Left' Imposes Out-Of-Mainstream Values Globally
## 3265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Victor Davis Hanson Tells Megyn Kelly Dems Are On 'Wrong Side' Of Every Issue, Says No One Left To 'Sabotage' Trump
## 3266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Video Shows Flight Attendant From DC Crash Joking With Passengers
## 3267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Video shows Trump at college football game, not Super Bowl | Fact check
## 3268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Videos Show Philadelphia Plane Crash, Massive Fire
## 3269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Villanova Reacts To Federal Guidance On Higher Education - The Villanovan
## 3270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Villanova's Response to the Dismantling of DEI - The Villanovan
## 3271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Virgin Media O2's American owner defies Trump with commitment to diversity rules
## 3272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Voice of the People - 2/14/2025 - The Oberlin Review
## 3273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Voices: A British Trump tribute act could snatch power in the UK - and wreak similar chaos
## 3274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Voices: City chiefs must say it loud and clear: DEI is good for business
## 3275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Voices: Get real, Mr Gove: you're the one with TDS (Trump Derangement Syndrome)
## 3276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Voices: I was there when 'woke' began in the Sixties - and Trump is about to take it all away
## 3277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Voices: Trump's first moves as president are catastrophic for LGBT+ rights
## 3278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Voices: Trump's response to air crashes suggests Americans don't understand irony
## 3279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Voices: Trump's vendetta agenda shows an undimmed lust for retribution
## 3280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Vos calls for 'intellectual diversity,' decentering racial DEI at UW-Madison
## 3281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             W&L administration won't speculate on the future of DEI. Students have opinions. - The Ring-tum Phi
## 3282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WATCH: Illinois State Board of Education not complying with Trump's DEI orders
## 3283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WATCH: Pressley Slams Trump for Baselessly Blaming Tragic Plane Crash on "DEI"
## 3284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           WC pledges continued commitment to DEI in face of presidential orders
## 3285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             WE HAVE TO RECLAIM RACE AND RACISM'
## 3286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             WEEK 4: TRUMP CONTINUES TO BLOCK HUNDREDS OF BILLIONS OF DOLLARS OWED TO COMMUNITIES ACROSS AMERICA
## 3287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WEEK IN REVIEW: 'I'M GOING TO DIE. IT DOESN'T HAVE TO BE THAT WAY'
## 3288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WH to Speak on Deadly Midair Collision; All 67 on Board Two Aircrafts Presumed Dead; FAA Closes Helicopter Routes Near Reagan National Airport; White House Holds News Briefing; Germany Reject Oppositions Migration Law Draft. Aired 1-2p ET
## 3289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                WHAT IS AN EXECUTIVE ORDER AND HOW DOES IT WORK?
## 3290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 WHAT THE DEI EXECUTIVE ORDERS MEAN FOR EMPLOYEE RESOURCE GROUPS
## 3291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   WHAT THEY ARE SAYING: U.S. DEPARTMENT OF EDUCATION DISMANTLES DEI IN WEEK ONE
## 3292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          WHITE HOUSE PAUSES FEDERAL GRANTS, OTHER PROGRAMS IMPLICATED BY EXECUTIVE ORDERS; OMB SAYS MEDICARE AND MEDICAID NOT AFFECTED BY PAUSE
## 3293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             WHITEHOUSE DEMANDS EPA FULLY COMPLY WITH DOCUMENT PRESERVATION LAWS
## 3294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                WVU to close DEI Office, establish Division of Campus Engagement
## 3295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Waffle House bumps egg prices while Trump focuses on DEI. I say yolk before woke. | Opinion
## 3296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Walt Disney cuts diversity category from executive pay scheme
## 3297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Warning: Content will invoke hunger
## 3298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Warnock at National Cathedral: ‘Don’t tell me you reject DEI when you live in a White House built by Black hands’
## 3299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Warren Buffett defends record $334bn cash pile
## 3300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Warren Buffett's Berkshire takes a cryptic turn under Trump's shadow
## 3301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Was he grave, sombre, the consoler-in-chief? Are you kidding – this is Trump
## 3302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Wash. A.G. Brown: Joint Statement From 13 State Attorneys General - President Trump is Misleading the American People on Diversity, Equity, Inclusion and Accessibility Initiatives
## 3303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Washington DC plane crash latest: Trump blames DEI as his press conference after 67 die goes off the rails
## 3304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Washington DC plane crash: What we know so far about the mid-air collision near Reagan Airport
## 3305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Washington DC plane crash: ‘black box’ data recorder recovered from Black Hawk helicopter – as it happened
## 3306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Washington DC plane disaster
## 3307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Washington air crash update: two Black Hawk crew formally named
## 3308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Watch live: NTSB provides update on probe into deadly collision near DCA
## 3309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Watch live: Trump signs executive order
## 3310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Watch: Donald Trump blames diversity and inclusion for Washington DC crash that claimed 67 lives
## 3311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Watch: House Democratic Caucus holds press conference
## 3312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Watch: Jeffries, CBC chair hold press conference after Trump DEI attack
## 3313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Watch: Trump hosts Black History Month reception at White House after anti-DEI order
## 3314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Watch: Trump hosts event honoring Black History Month
## 3315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Watch: White House holds briefing with DC plane crash investigation underway
## 3316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Act for Environmental Justice: Trump Federal Funding Freeze Attempt is an Illegal, Unconstitutional, and Inhumane Assault on Millions of People
## 3317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We Failed': Dem Rep Gives Brutal Assessment Of His Own Party
## 3318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We Should Not Be an Institution That Operates Out of Fear': Khurana Praises Diversity Amid Trump Threats
## 3319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We are witnessing the rise of a new Republican ‘Southern Strategy’
## 3320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We can finally put the rich in their place — so they’ve moved away
## 3321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We have to be in action': Martin Luther King Jr. supporters rally in capital as holiday overlaps with Inauguration Day - The Daily Egyptian
## 3322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We look to you for steadiness in the storm, Biden tells Trump
## 3323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We the people must fight against it' | Students, professors voice concerns about Trump's 2nd term
## 3324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We'll find a way' Advocates vow to teach Black History outside work
## 3325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We've been woke for decades but this inauguration signals a bonfire of liberal vanities
## 3326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We've entered the era of scaredy-cat capitalism
## 3327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Wealth in division: seeking community to combat our polarized digital age
## 3328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weary GOP lawmakers lash out at 'childish' Elon Musk for drastic DOGE cuts during secret House meeting
## 3329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Wednesday briefing: Inside the US president’s chaos machine
## 3330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Welcome to the new campustimes.org. The steep price of health and wellness Take a look at the ASIS gallery's current exhibit, Lines of Inquiry Congestion pricing is clearly the way to go
## 3331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wes Streeting attacks NHS over diversity schemes
## 3332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                West Point Shuts Down Inclusive Clubs Due to Executive Order. | RMU Sentry Media
## 3333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     West Point disbands clubs related to gender, race and ethnicity after Trump executive order
## 3334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             West Point shuts down clubs based on gender, race and ethnicity in response to Trump's DEI policies
## 3335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 West Point shuts down clubs for women and students of color in response to Trump's DEI policies
## 3336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             What CEOs Dealing With Tariff Uncertainty Should Do
## 3337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              What Do Americans Think of Elon Musk?; Philadelphia Celebrates Super Bowl Win; Was Indiana Teenager Planning School Shooting?. Aired 11:30a-12p ET
## 3338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What Does USAID Spend Money on? List of Potential Cuts
## 3339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What Donald Trump's Day One Executive Orders Could Look Like
## 3340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       What Happens Now: Oberlin Under Trump Administration - The Oberlin Review
## 3341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What Hegseth thinks of Russia and China as he takes the Pentagon reins
## 3342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What Is #Shutdown315? Nationwide Plan to Shut Down USA for 1 Day
## 3343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           What Is the People's Union? Group Behind Nationwide Economic Blackout
## 3344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      What Octavia Butler saw on Feb. 1, 2025, three decades ago
## 3345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              What Republicans really mean when they blame ‘DEI’
## 3346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             What Silicon Valley really thinks about DeepSeek, TikTok, and Trump
## 3347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              What Trump Wants From CA : Voter ID Laws And Water Flow; Trump Says He Wants States, Not FEMA, To Run Disaster Response; Trump In North Carolina To Tour Hurricane Helene Damage; Today: Senate Vote On Defense Secretary Nominee Pete Hegseth. Aired 12-12:30p ET
## 3348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What Trump's DEI rollbacks could mean for NYU - Washington Square News
## 3349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What Trump's public scolding of Bank of America's CEO was really about
## 3350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What Trump-supporting federal workers think of his blitz of moves to shake up the government
## 3351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       What We Know About The Black Hawk Crew Involved In Fatal D.C. Plane Crash
## 3352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   What do the TWAGs really think about their tech bro husbands?
## 3353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What does 'equity' really mean? - Northern Iowan
## 3354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What does Elon Musk believe?
## 3355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              What environmental agency firings could mean for energy, pollution, national parks
## 3356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         What executive orders has Trump signed?
## 3357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      What happens if the Department of Education is dismantled?
## 3358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              What has Trump done so far? The winners and losers
## 3359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What if they're at my bus stop?': Indiana lawyers and teachers explain the current landscape of deportation and immigration. Immigration Enforcement and Preventative Action Misconceptions The Courts and Law Community and Self-Care
## 3360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           What investors can learn from the DeepSeek tech shock
## 3361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What is American Accountability Foundation? 'DEI Watchlist' Released
## 3362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     What is DEI and why is Trump opposed to it?
## 3363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   What is DEI, and why is it dividing America ?
## 3364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      What is DEI? The diversity scheme Trump is blaming for Washington DC crash
## 3365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What is DEI? The initiative designed to help has become the ire of Trump and Republicans
## 3366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       What some CEOs do in Davos (it’s stranger than you think)
## 3367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           What the Trump administration did during its first week back in power
## 3368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             What to know about Elon Musk's DOGE
## 3369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   What to know about Trump's first executive orders as the president renames the Gulf of Mexico
## 3370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What to know about Trump's freeze on foreign aid
## 3371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               What to know about the equal employment opportunity executive order Trump revoked
## 3372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   What type of pen does Donald Trump use? Here's how he signs executive orders.
## 3373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     What we know so far about Trump’s orders on diversity, equity and inclusion
## 3374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What will happen if schools don't ban DEI by deadline?
## 3375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       What's at stake for Wellesley College under Trump's executive orders - The Wellesley News
## 3376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         What's next for DEI? Nissan policy changes mark another 'anti-woke' win
## 3377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  What’s behind financiers’ ‘blind spot’ on coal
## 3378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When’s Black History Month? Don’t ask Google
## 3379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Where 'woke' went wrong Seemingly irresistible only a few years ago, a complex of social movements aimed at addressing systemic inequalities is now in retreat. Henry Mance examines the contradictions that curtailed a revolution Where 'woke' went wrong
## 3380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Where ‘woke’ went wrong
## 3381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Which Countries Spend the Most on Military Defense?
## 3382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Which Interest Rate Should You Care About? Strategies
## 3383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Which Trump family members and in-laws have conflicts of interest?
## 3384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Which US companies are pulling back on diversity initiatives?
## 3385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Which companies are rolling back DEI and which are standing firm
## 3386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Which states get the most federal health and science funding
## 3387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        While Democrats Slow-Walk Tulsi Gabbard's Confirmation, The Acting DNI Will Be A Pro-DEI Biden Appointee
## 3388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           While Democrats sleep
## 3389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whining Elizabeth Warren gives Elon Musk a swanky new nickname while complaining on MSNBC
## 3390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            White House And Treasury Department Agree To Block DOGE From Personal Taxpayer Data, Report Says Here s What To Know
## 3391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           White House Attempts to Freeze Federal Grant Payments
## 3392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          White House Fact Sheet: Flights Should Be Supervised By Best Employees
## 3393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    White House Fact Sheet: OMB Q&A Regarding Memorandum M-25-13
## 3394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 White House Fact Sheet: President Trump Restores Merit and Lethality to America 's Armed Forces
## 3395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            White House Fact Sheet: Protecting Civil Rights and Expanding Individual Opportunity
## 3396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 White House Holds First Press Briefing Of Trump's Second Term. Aired 1:30-2p ET
## 3397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      White House Issues Transcript of News Briefing by Press Secretary Leavitt on Feb. 20, 2025
## 3398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               White House Now Has Tech Support; Democrats Think This is Our Civil War; DOGE Has D.C. on Edge; DOGE Coming for Pentagon and IRS; Competence, Caring and Cutting Cost; Americans Voted for Change; Make Trade Fair Again; The Red Wave is Rising; Schumer's Messaging Falls Flat; Democrats Have No Strategy to Combat Trump; Trump is Turning America Red; ICE is Working Overtime; Trump Cuts Off Migrant Money Flow; Bass Opens Investigation into Her Ghana Trip; Monica Lewinsky Launches Podcast; Gayle King Blames Trump for Plane Crashes
## 3399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              White House Orders All Federal DEI Staff Be Put On Leave; Military Orders Thousands More Troops At Southern Border; Texas Town Braces For Trump Immigration Crackdown; Senate Receives Affidavit Accusing Hegseth Of "Abusive" Behavior; New Fire Breaks Out In Los Angeles County . Aired 3-4p ET
## 3400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         White House Orders Freeze On All Federal Grants And Loans; Assistance Pause Could Impact School Breakfast & Lunch Programs; Justice Department Fires Officials Who Investigated Trump; Trump Picks His Criminal Defense Attorneys For Key DOJ Posts. Aired 12-12:30p ET
## 3401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               White House Rescinds Controversial Federal Aid Freeze Memo; RFK Jr. Says He Is "Not Antivaccine" Despite Past Statements; RFK Jr. Grilled At Department Of Health Confirmation Hearing; Trump To Prepare Guantanamo To House 30,000 Migrants; Defense Secretary Hegseth Pulls Security Detail And Clearance For Trump Critic Gen. Mark Milley; Poor Test Scores Among U.S. Students Raise Concerns. Aired 5-6p ET
## 3402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        White House abruptly backs off Trump's federal funding freeze after lawsuits and outrage
## 3403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        White House aide says spending freeze isn’t being rescinded despite memo
## 3404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  White House budget office rescinds federal funding freeze memo
## 3405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          White House defends sweeping pause on grants and loans
## 3406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                White House demands agencies identify hundreds of thousands of potential layoffs
## 3407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          White House gives muddled answer when asked if it's safe to fly on commercial airlines
## 3408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               White House orders government DEI employees to be placed on leave
## 3409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         White House rescinded funding memo after GOP senators ‘hit the ceiling’
## 3410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 White House says EPA will cut 65 percent of spending, not staff
## 3411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    White House says Elon Musk not in charge of DOGE as top social security official exits: Live
## 3412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  White House touts feverish first month, success on immigration
## 3413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      White House: America Is Back - and President Trump Is Just Getting Started
## 3414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                White House: At USAID, Waste and Abuse Runs Deep
## 3415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                White House: First 100 Hours - Historic Action to Kick Off America 's Golden Age
## 3416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        White cornerback, Black QB: did Eagles grab ultimate DEI Super Bowl win?
## 3417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Who Is James Fishback? Investor Who Created DOGE Stimulus Check Plan
## 3418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Who Is Loren AliKhan? Judge Who Blocked Trump's Federal Grant Freeze
## 3419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Who is 'Big Balls'? Teen DOGE Engineer Edward Coristine
## 3420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Who is Jo Ellis, the transgender pilot wrongly named in DC crash?
## 3421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Who is Lorenzo Sewell, the pastor who referenced King's 'dream' speech in inaugural prayer?
## 3422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Who is Sean Duffy, the new transportation secretary responding to the DC plane crash?
## 3423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Who is Sean Duffy, the public face of the federal government's response to the DC plane crash?
## 3424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Who is the new 'Bragg' that the North Carolina base will now be named after?
## 3425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Who ordered the runway switch minutes before the DC crash? Are DEI air traffic controllers to blame? Why did Biden's FAA chief suddenly quit? All the unanswered questions
## 3426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Who was on the plane? Washington DC crash victims named
## 3427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Why DEI is key to our nation's unity - The Hawk News
## 3428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Why Hollywood may ignore Trump 2.0 at the Oscars
## 3429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Why Is Elon Musk Attacking USAID? How Partisan Politics Made Foreign Aid Agency Suddenly So Controversial
## 3430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Why Republicans keep blaming disasters on DEI
## 3431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Why Trump wants to own the Pentagon
## 3432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Why We Must Protect DEI on College Campuses - The Voice
## 3433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Why are diversity, equity and inclusion policies in the news?
## 3434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why does Donald Trump want to gut the Department of Education?
## 3435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why people are boycotting Coca-Cola - and did they really call ICE on their own employees?
## 3436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why some Americans won't spend a cent on Friday in 24-hour 'economic blackout'
## 3437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Why you should be careful before copying Trump's take-no-prisoners leadership style
## 3438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Wicked' reflects our own flawed society - if we choose to look
## 3439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Wife of slain California fire captain believed to have fled to Mexico as police issue arrest warrant for murder
## 3440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Will Nationwide Economic Blackout on February 28 Work?
## 3441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Will There Be Political Fallout For J6 Pardons; Trump Calls For Full Release Of JFK, RFK, MLK Assassination Files. Four Israeli Female Hostages Returned To Israel As Part Of Ceasefire Deal. Aired 9-10a ET
## 3442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Wins Come All Day Under President Donald J. Trump
## 3443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Winter recap: What you missed over break - Washington Square News
## 3444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Wisconsin Governor Defends Push To Redefine 'Mother' as 'Inseminated Person'
## 3445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Wisconsin governor defends inclusive language proposal to change 'mother' to 'inseminated person'
## 3446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               With NIH In Chaos, Scientists Fear Trump Will Hamstring Critical Medical Research
## 3447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    With No Evidence, Trump Blame DEI For Deadly Midair Collision; 67 Presumed Dead In Midair Collision Over Potomac River ; Trump Baselessly Blames Democrats & Diversity For Plane Crash; Trump Baselessly Appears To Blame FAA "Diversity Push" For Collision; Plane's Fuselage Found In 3 Sections In Potomac River; American Airlines CEO Says Pilot Were "Experienced". Aired 12-12:30p ET
## 3448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        With President Trump, This Time It's Different | Opinion
## 3449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           With Trump Taking Aim at Department of Education, University Could See Major Changes - Chicago Maroon
## 3450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            With Trump, every day is 'Groundhog Day.' A nightmare over and over again. | Opinion
## 3451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             With public broadcasters pressured by the Trump administration, PBS shuts down its diversity office
## 3452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Without Evidence, Trump Blames DEI For Midair Collision; Israel Releasing 110 Palestinian Prisoners; Confirmation Hearings For Trump's Picks For FBI Director, DNI; No Survivors After Midair Collision Near Washington, D.C. ; Trump Baselessly Blames Democrats And Diversity For Plane Crash; Aired 12-1p ET
## 3453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Woke 'plot' to axe face of Founding Father from Washington state flag
## 3454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woke Bishop Doubles Down On Donald Trump Attacks; Donald Trump Orders End To All Government DEI Practices By 5:00 P.M. Today; Shock And Awe Border Blitz: President Trump Cracking Down At Lightning Speed; Talk Like A Message Document: Liberal Pod Hosts Slam Dem Party For Being Disingenuous
## 3455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Woke DEI teacher complains about Trump removing their pronouns in parody-like speech
## 3456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Woke is the only enemy Trump wants to fight His reluctance to take military action is well known, but he is happy to purge DEI-loving commanders
## 3457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Wokest' DEI government workers revealed... along with their staggering taxpayer-funded pay
## 3458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Woman was passed over for promotion because she was not gay, Supreme Court case claims
## 3459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Woman ‘demoted for being straight’ eyes victory in the US Supreme Court
## 3460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Woman's Neighbors Fly MAGA Flags for Years—but They've Suddenly Disappeared
## 3461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Workers' rights caught in collision of Trump's priorities
## 3462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            World marks 80th anniversary of Auschwitz liberation
## 3463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             World news in brief
## 3464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wrecking ball: Trump’s war on ‘woke’ marks US society’s plunge into ‘dark times’
## 3465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            You want me to go swimming?': Trump says he won't visit DC plane crash site because it's 'the water'
## 3466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   You're fired': Female coastguard boss among first to fall in diversity purge Trump gets down to business with wave of sackings and dozens of executive orders
## 3467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Zelensky says Trump relationship can be repaired after White House row
## 3468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Zelenskyy Addresses World Economic Forum; Trump Shuts Down Immigration App Allowing Migrants to Enter U.S. Legally as Asylum-Seekers; Zelenskyy Urges "United" Self-Sufficient Europe at Davos ; Late Night Hosts React to Trump's Second Inauguration; Trial Against Murdoch's Tabloids Begins. Aired 9-9:45a ET
## 3469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Zelenskyy Is Defiant After Explosive Oval Office Meeting With Trump; Officials Rule Out Key Theory In Gene Hackman's Death; Trump Reveals Private Blame Game Talk With Biden; Laura Coates Interviews Author Ben Arogundade. Aired 11p-12a ET
## 3470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Zelenskyy Says, Talk With Top Trump Envoy Gives Hope; Sources Say, Hegseth Could Fire Top Generals and Admirals Soon; Gov. Kathy Hochul (D- NY ) Says She Won't Move to Oust Mayor Eric Adams (D- New York City , NY ). Sen. Mitch McConnell Announces He Won't Seek Re-Election; U.S. Senate Confirms Kash Patel For FBI Director; Hawaiian Volcano Spews Lava 400 Feet Into The Air. Aired 6-7p ET
## 3471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Zuckerberg philanthropy ends DEI programs
## 3472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Zuckerberg's charity scraps diversity team despite pledge to staff
## 3473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Zuckerberg’s swerve: how diversity went from being a Meta priority to getting cancelled
## 3474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 » Learning the Importance of Maintaining Community During Political Uncertainty
## 3475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                » Students Advocate for DEI in Light of Trump's Executive Orders
## 3476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ‘A fight for our lives’: Trump’s USAid freeze is harming millions of women and girls
## 3477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ‘A true free-speech emergency’: alarm over Trump’s ‘chilling’ attacks on media
## 3478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ‘Another woke disaster from Hollywood!’ How Captain America joined the culture wars
## 3479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ‘Become American , Work Hard, Love Democracy’: Dreams Dashed by Trump Orders
## 3480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ‘Black box’ from helicopter involved in Washington plane crash recovered
## 3481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ‘Committed to inclusion’: BT refuses to shut the door on DEI
## 3482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ‘DEI Watch list’ sparks racism charges; Advocates see that as validation
## 3483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ‘DEI cost me a job in aviation – a crash was inevitable’
## 3484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ‘Debanking,’ and the Trump Diss Heard Around Davos DealBook Newsletter
## 3485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ‘He feels empowered’: DeSantis kicks off takeover of second liberal Florida school
## 3486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ‘Headed for technofascism’: the rightwing roots of Silicon Valley
## 3487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ‘History was attempted to be buried’: the true story behind Oscar-nominated Nickel Boys
## 3488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ‘Hit them where it hurts’: US consumers begin economic blackout to protest anti-DEI policies
## 3489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ‘It’s been madness’: US federal workers reeling over Trump-Musk takeover
## 3490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ‘I’ve had it’: JP Morgan boss rails against Gen Z in expletive-laden outburst
## 3491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ‘Panic, fear and confusion’: The USAID controversy explained
## 3492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ‘Really scary’: rightwing watchlist found of mostly Black federal health workers
## 3493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ‘SNL’ cold open spoofs signing of Declaration of Independence with Hamilton, Trump
## 3494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ‘Safe to be a white male again’: how conservative media covered Trump’s first week
## 3495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ‘Stomach-turning’: Democrats condemn Trump’s DEI claims after Washington plane crash
## 3496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ‘The View’ host Sunny Hostin calls Trump a ‘DEI hire’
## 3497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ‘The deification of Trump will be complete’ at CPAC 2025
## 3498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ‘The greatest propaganda op in history’: Trump’s reshaping of US culture evokes past antidemocratic regimes
## 3499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ‘They will collide eventually’: how long will the Trump-Musk relationship survive?
## 3500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ‘They’ve lost my trust’: consumers shun companies as bosses kowtow to Trump
## 3501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ‘This moment is medieval’: Jackson Katz on misogyny, the manosphere – and why men must oppose Trumpism
## 3502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ‘Very retaliatory’: the federal workers caught up in Trump ’s DEI purge
## 3503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ‘We are concerned when we give up on fairness’: the professors charting a new route for DEI
## 3504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ‘We’re like sitting ducks’: the right’s ‘war on woke’ has a well-tested playbook to take down academics
##      n
## 1    1
## 2    1
## 3    1
## 4    1
## 5    1
## 6    1
## 7    1
## 8    1
## 9    1
## 10   1
## 11   1
## 12   1
## 13   1
## 14   1
## 15   1
## 16   1
## 17   1
## 18   1
## 19   1
## 20   1
## 21   1
## 22   1
## 23   1
## 24   1
## 25   1
## 26   1
## 27   1
## 28   1
## 29   1
## 30   1
## 31   1
## 32   1
## 33   1
## 34   1
## 35   1
## 36   1
## 37   1
## 38   1
## 39   1
## 40   1
## 41   1
## 42   1
## 43   1
## 44   1
## 45   1
## 46   1
## 47   1
## 48   1
## 49   1
## 50   1
## 51   1
## 52   1
## 53   1
## 54   1
## 55   1
## 56   1
## 57   1
## 58   1
## 59   1
## 60   1
## 61   1
## 62   1
## 63   1
## 64   1
## 65   1
## 66   1
## 67   1
## 68   1
## 69   1
## 70   1
## 71   1
## 72   1
## 73   1
## 74   1
## 75   1
## 76   1
## 77   1
## 78   1
## 79   1
## 80   1
## 81   1
## 82   1
## 83   1
## 84   1
## 85   1
## 86   1
## 87   1
## 88   1
## 89   1
## 90   1
## 91   1
## 92   1
## 93   1
## 94   1
## 95   1
## 96   1
## 97   1
## 98   1
## 99   1
## 100  1
## 101  1
## 102  1
## 103  1
## 104  1
## 105  1
## 106  1
## 107  1
## 108  1
## 109  1
## 110  1
## 111  1
## 112  1
## 113  1
## 114  1
## 115  1
## 116  1
## 117  1
## 118  1
## 119  1
## 120  1
## 121  1
## 122  1
## 123  1
## 124  1
## 125  1
## 126  1
## 127  1
## 128  1
## 129  1
## 130  1
## 131  1
## 132  1
## 133  1
## 134  1
## 135  1
## 136  1
## 137  1
## 138  1
## 139  1
## 140  1
## 141  1
## 142  1
## 143  1
## 144  1
## 145  1
## 146  1
## 147  1
## 148  1
## 149  1
## 150  1
## 151  1
## 152  1
## 153  1
## 154  1
## 155  1
## 156  1
## 157  1
## 158  1
## 159  1
## 160  1
## 161  1
## 162  1
## 163  1
## 164  1
## 165  1
## 166  1
## 167  1
## 168  1
## 169  1
## 170  1
## 171  1
## 172  1
## 173  1
## 174  1
## 175  1
## 176  1
## 177  1
## 178  1
## 179  1
## 180  1
## 181  1
## 182  1
## 183  1
## 184  1
## 185  1
## 186  1
## 187  1
## 188  1
## 189  1
## 190  1
## 191  1
## 192  1
## 193  1
## 194  1
## 195  1
## 196  1
## 197  1
## 198  1
## 199  1
## 200  1
## 201  1
## 202  1
## 203  1
## 204  1
## 205  1
## 206  1
## 207  1
## 208  1
## 209  1
## 210  1
## 211  1
## 212  1
## 213  1
## 214  1
## 215  1
## 216  1
## 217  1
## 218  1
## 219  1
## 220  1
## 221  1
## 222  1
## 223  1
## 224  1
## 225  1
## 226  1
## 227  1
## 228  1
## 229  1
## 230  1
## 231  1
## 232  1
## 233  1
## 234  1
## 235  1
## 236  1
## 237  1
## 238  1
## 239  1
## 240  1
## 241  1
## 242  1
## 243  1
## 244  1
## 245  1
## 246  1
## 247  1
## 248  1
## 249  1
## 250  1
## 251  1
## 252  1
## 253  1
## 254  1
## 255  1
## 256  1
## 257  1
## 258  1
## 259  1
## 260  1
## 261  1
## 262  1
## 263  1
## 264  1
## 265  1
## 266  1
## 267  1
## 268  1
## 269  1
## 270  1
## 271  1
## 272  1
## 273  1
## 274  1
## 275  1
## 276  1
## 277  1
## 278  1
## 279  1
## 280  1
## 281  1
## 282  1
## 283  1
## 284  1
## 285  1
## 286  1
## 287  1
## 288  1
## 289  1
## 290  1
## 291  1
## 292  1
## 293  1
## 294  1
## 295  1
## 296  1
## 297  1
## 298  1
## 299  1
## 300  1
## 301  1
## 302  1
## 303  1
## 304  1
## 305  1
## 306  1
## 307  1
## 308  1
## 309  1
## 310  1
## 311  1
## 312  1
## 313  1
## 314  1
## 315  1
## 316  1
## 317  1
## 318  1
## 319  1
## 320  1
## 321  1
## 322  1
## 323  1
## 324  1
## 325  1
## 326  1
## 327  1
## 328  1
## 329  1
## 330  1
## 331  1
## 332  1
## 333  1
## 334  1
## 335  1
## 336  1
## 337  1
## 338  1
## 339  1
## 340  1
## 341  1
## 342  1
## 343  1
## 344  1
## 345  1
## 346  1
## 347  1
## 348  1
## 349  1
## 350  1
## 351  1
## 352  1
## 353  1
## 354  1
## 355  1
## 356  1
## 357  1
## 358  1
## 359  1
## 360  1
## 361  1
## 362  1
## 363  1
## 364  1
## 365  1
## 366  1
## 367  1
## 368  1
## 369  1
## 370  1
## 371  1
## 372  1
## 373  1
## 374  1
## 375  1
## 376  1
## 377  1
## 378  1
## 379  1
## 380  1
## 381  1
## 382  1
## 383  1
## 384  1
## 385  1
## 386  1
## 387  1
## 388  1
## 389  1
## 390  1
## 391  1
## 392  1
## 393  1
## 394  1
## 395  1
## 396  1
## 397  1
## 398  1
## 399  1
## 400  1
## 401  1
## 402  1
## 403  1
## 404  1
## 405  1
## 406  1
## 407  1
## 408  1
## 409  1
## 410  1
## 411  1
## 412  1
## 413  1
## 414  1
## 415  1
## 416  1
## 417  1
## 418  1
## 419  1
## 420  1
## 421  1
## 422  1
## 423  1
## 424  1
## 425  1
## 426  1
## 427  1
## 428  1
## 429  1
## 430  1
## 431  1
## 432  1
## 433  1
## 434  1
## 435  1
## 436  1
## 437  1
## 438  1
## 439  1
## 440  1
## 441  1
## 442  1
## 443  1
## 444  1
## 445  1
## 446  1
## 447  1
## 448  1
## 449  1
## 450  1
## 451  1
## 452  1
## 453  1
## 454  1
## 455  1
## 456  1
## 457  1
## 458  1
## 459  1
## 460  1
## 461  1
## 462  1
## 463  1
## 464  1
## 465  1
## 466  1
## 467  1
## 468  1
## 469  1
## 470  1
## 471  1
## 472  1
## 473  1
## 474  1
## 475  1
## 476  1
## 477  1
## 478  1
## 479  1
## 480  1
## 481  1
## 482  1
## 483  1
## 484  1
## 485  1
## 486  1
## 487  1
## 488  1
## 489  1
## 490  1
## 491  1
## 492  1
## 493  1
## 494  1
## 495  1
## 496  1
## 497  1
## 498  1
## 499  1
## 500  1
## 501  1
## 502  1
## 503  1
## 504  1
## 505  1
## 506  1
## 507  1
## 508  1
## 509  1
## 510  1
## 511  1
## 512  1
## 513  1
## 514  1
## 515  1
## 516  1
## 517  1
## 518  1
## 519  1
## 520  1
## 521  1
## 522  1
## 523  1
## 524  1
## 525  1
## 526  1
## 527  1
## 528  1
## 529  1
## 530  1
## 531  1
## 532  1
## 533  1
## 534  1
## 535  1
## 536  1
## 537  1
## 538  1
## 539  1
## 540  1
## 541  1
## 542  1
## 543  1
## 544  1
## 545  1
## 546  1
## 547  1
## 548  1
## 549  1
## 550  1
## 551  1
## 552  1
## 553  1
## 554  1
## 555  1
## 556  1
## 557  1
## 558  1
## 559  1
## 560  1
## 561  1
## 562  1
## 563  1
## 564  1
## 565  1
## 566  1
## 567  1
## 568  1
## 569  1
## 570  1
## 571  1
## 572  1
## 573  1
## 574  1
## 575  1
## 576  1
## 577  1
## 578  1
## 579  1
## 580  1
## 581  1
## 582  1
## 583  1
## 584  1
## 585  1
## 586  1
## 587  1
## 588  1
## 589  1
## 590  1
## 591  1
## 592  1
## 593  1
## 594  1
## 595  1
## 596  1
## 597  1
## 598  1
## 599  1
## 600  1
## 601  1
## 602  1
## 603  1
## 604  1
## 605  1
## 606  1
## 607  1
## 608  1
## 609  1
## 610  1
## 611  1
## 612  1
## 613  1
## 614  1
## 615  1
## 616  1
## 617  1
## 618  1
## 619  1
## 620  1
## 621  1
## 622  1
## 623  1
## 624  1
## 625  1
## 626  1
## 627  1
## 628  1
## 629  1
## 630  1
## 631  1
## 632  1
## 633  1
## 634  1
## 635  1
## 636  1
## 637  1
## 638  1
## 639  1
## 640  1
## 641  1
## 642  1
## 643  1
## 644  1
## 645  1
## 646  1
## 647  1
## 648  1
## 649  1
## 650  1
## 651  1
## 652  1
## 653  1
## 654  1
## 655  1
## 656  1
## 657  1
## 658  1
## 659  1
## 660  1
## 661  1
## 662  1
## 663  1
## 664  1
## 665  1
## 666  1
## 667  1
## 668  1
## 669  1
## 670  1
## 671  1
## 672  1
## 673  1
## 674  1
## 675  1
## 676  1
## 677  1
## 678  1
## 679  1
## 680  1
## 681  1
## 682  1
## 683  1
## 684  1
## 685  1
## 686  1
## 687  1
## 688  1
## 689  1
## 690  1
## 691  1
## 692  1
## 693  1
## 694  1
## 695  1
## 696  1
## 697  1
## 698  1
## 699  1
## 700  1
## 701  1
## 702  1
## 703  1
## 704  1
## 705  1
## 706  1
## 707  1
## 708  1
## 709  1
## 710  1
## 711  1
## 712  1
## 713  1
## 714  1
## 715  1
## 716  1
## 717  1
## 718  1
## 719  1
## 720  1
## 721  1
## 722  1
## 723  1
## 724  1
## 725  1
## 726  1
## 727  1
## 728  1
## 729  1
## 730  1
## 731  1
## 732  1
## 733  1
## 734  1
## 735  1
## 736  1
## 737  1
## 738  1
## 739  1
## 740  1
## 741  1
## 742  1
## 743  1
## 744  1
## 745  1
## 746  1
## 747  1
## 748  1
## 749  1
## 750  1
## 751  1
## 752  1
## 753  1
## 754  1
## 755  1
## 756  1
## 757  1
## 758  1
## 759  1
## 760  1
## 761  1
## 762  1
## 763  1
## 764  1
## 765  1
## 766  1
## 767  1
## 768  1
## 769  1
## 770  1
## 771  1
## 772  1
## 773  1
## 774  1
## 775  1
## 776  1
## 777  1
## 778  1
## 779  1
## 780  1
## 781  1
## 782  1
## 783  1
## 784  1
## 785  1
## 786  1
## 787  1
## 788  1
## 789  1
## 790  1
## 791  1
## 792  1
## 793  1
## 794  1
## 795  1
## 796  1
## 797  1
## 798  1
## 799  1
## 800  1
## 801  1
## 802  1
## 803  1
## 804  1
## 805  1
## 806  1
## 807  1
## 808  1
## 809  1
## 810  1
## 811  1
## 812  1
## 813  1
## 814  1
## 815  1
## 816  1
## 817  1
## 818  1
## 819  1
## 820  1
## 821  1
## 822  1
## 823  1
## 824  1
## 825  1
## 826  1
## 827  1
## 828  1
## 829  1
## 830  1
## 831  1
## 832  1
## 833  1
## 834  1
## 835  1
## 836  1
## 837  1
## 838  1
## 839  1
## 840  1
## 841  1
## 842  1
## 843  1
## 844  1
## 845  1
## 846  1
## 847  1
## 848  1
## 849  1
## 850  1
## 851  1
## 852  1
## 853  1
## 854  1
## 855  1
## 856  1
## 857  1
## 858  1
## 859  1
## 860  1
## 861  1
## 862  1
## 863  1
## 864  1
## 865  1
## 866  1
## 867  1
## 868  1
## 869  1
## 870  1
## 871  1
## 872  1
## 873  1
## 874  1
## 875  1
## 876  1
## 877  1
## 878  1
## 879  1
## 880  1
## 881  1
## 882  1
## 883  1
## 884  1
## 885  1
## 886  1
## 887  1
## 888  1
## 889  1
## 890  1
## 891  1
## 892  1
## 893  1
## 894  1
## 895  1
## 896  1
## 897  1
## 898  1
## 899  1
## 900  1
## 901  1
## 902  1
## 903  1
## 904  1
## 905  1
## 906  1
## 907  1
## 908  1
## 909  1
## 910  1
## 911  1
## 912  1
## 913  1
## 914  1
## 915  1
## 916  1
## 917  1
## 918  1
## 919  1
## 920  1
## 921  1
## 922  1
## 923  1
## 924  1
## 925  1
## 926  1
## 927  1
## 928  1
## 929  1
## 930  1
## 931  1
## 932  1
## 933  1
## 934  1
## 935  1
## 936  1
## 937  1
## 938  1
## 939  1
## 940  1
## 941  1
## 942  1
## 943  1
## 944  1
## 945  1
## 946  1
## 947  1
## 948  1
## 949  1
## 950  1
## 951  1
## 952  1
## 953  1
## 954  1
## 955  1
## 956  1
## 957  1
## 958  1
## 959  1
## 960  1
## 961  1
## 962  1
## 963  1
## 964  1
## 965  1
## 966  1
## 967  1
## 968  1
## 969  1
## 970  1
## 971  1
## 972  1
## 973  1
## 974  1
## 975  1
## 976  1
## 977  1
## 978  1
## 979  1
## 980  1
## 981  1
## 982  1
## 983  1
## 984  1
## 985  1
## 986  1
## 987  1
## 988  1
## 989  1
## 990  1
## 991  1
## 992  1
## 993  1
## 994  1
## 995  1
## 996  1
## 997  1
## 998  1
## 999  1
## 1000 1
## 1001 1
## 1002 1
## 1003 1
## 1004 1
## 1005 1
## 1006 1
## 1007 1
## 1008 1
## 1009 1
## 1010 1
## 1011 1
## 1012 1
## 1013 1
## 1014 1
## 1015 1
## 1016 1
## 1017 1
## 1018 1
## 1019 1
## 1020 1
## 1021 1
## 1022 1
## 1023 1
## 1024 1
## 1025 1
## 1026 1
## 1027 1
## 1028 1
## 1029 1
## 1030 1
## 1031 1
## 1032 1
## 1033 1
## 1034 1
## 1035 1
## 1036 1
## 1037 1
## 1038 1
## 1039 1
## 1040 1
## 1041 1
## 1042 1
## 1043 1
## 1044 1
## 1045 1
## 1046 1
## 1047 1
## 1048 1
## 1049 1
## 1050 1
## 1051 1
## 1052 1
## 1053 1
## 1054 1
## 1055 1
## 1056 1
## 1057 1
## 1058 1
## 1059 1
## 1060 1
## 1061 1
## 1062 1
## 1063 1
## 1064 1
## 1065 1
## 1066 1
## 1067 1
## 1068 1
## 1069 1
## 1070 1
## 1071 1
## 1072 1
## 1073 1
## 1074 1
## 1075 1
## 1076 1
## 1077 1
## 1078 1
## 1079 1
## 1080 1
## 1081 1
## 1082 1
## 1083 1
## 1084 1
## 1085 1
## 1086 1
## 1087 1
## 1088 1
## 1089 1
## 1090 1
## 1091 1
## 1092 1
## 1093 1
## 1094 1
## 1095 1
## 1096 1
## 1097 1
## 1098 1
## 1099 1
## 1100 1
## 1101 1
## 1102 1
## 1103 1
## 1104 1
## 1105 1
## 1106 1
## 1107 1
## 1108 1
## 1109 1
## 1110 1
## 1111 1
## 1112 1
## 1113 1
## 1114 1
## 1115 1
## 1116 1
## 1117 1
## 1118 1
## 1119 1
## 1120 1
## 1121 1
## 1122 1
## 1123 1
## 1124 1
## 1125 1
## 1126 1
## 1127 1
## 1128 1
## 1129 1
## 1130 1
## 1131 1
## 1132 1
## 1133 1
## 1134 1
## 1135 1
## 1136 1
## 1137 1
## 1138 1
## 1139 1
## 1140 1
## 1141 1
## 1142 1
## 1143 1
## 1144 1
## 1145 1
## 1146 1
## 1147 1
## 1148 1
## 1149 1
## 1150 1
## 1151 1
## 1152 1
## 1153 1
## 1154 1
## 1155 1
## 1156 1
## 1157 1
## 1158 1
## 1159 1
## 1160 1
## 1161 1
## 1162 1
## 1163 1
## 1164 1
## 1165 1
## 1166 1
## 1167 1
## 1168 1
## 1169 1
## 1170 1
## 1171 1
## 1172 1
## 1173 1
## 1174 1
## 1175 1
## 1176 1
## 1177 1
## 1178 1
## 1179 1
## 1180 1
## 1181 1
## 1182 1
## 1183 1
## 1184 1
## 1185 1
## 1186 1
## 1187 1
## 1188 1
## 1189 1
## 1190 1
## 1191 1
## 1192 1
## 1193 1
## 1194 1
## 1195 1
## 1196 1
## 1197 1
## 1198 1
## 1199 1
## 1200 1
## 1201 1
## 1202 1
## 1203 1
## 1204 1
## 1205 1
## 1206 1
## 1207 1
## 1208 1
## 1209 1
## 1210 1
## 1211 1
## 1212 1
## 1213 1
## 1214 1
## 1215 1
## 1216 1
## 1217 1
## 1218 1
## 1219 1
## 1220 1
## 1221 1
## 1222 1
## 1223 1
## 1224 1
## 1225 1
## 1226 1
## 1227 1
## 1228 1
## 1229 1
## 1230 1
## 1231 1
## 1232 1
## 1233 1
## 1234 1
## 1235 1
## 1236 1
## 1237 1
## 1238 1
## 1239 1
## 1240 1
## 1241 1
## 1242 1
## 1243 1
## 1244 1
## 1245 1
## 1246 1
## 1247 1
## 1248 1
## 1249 1
## 1250 1
## 1251 1
## 1252 1
## 1253 1
## 1254 1
## 1255 1
## 1256 1
## 1257 1
## 1258 1
## 1259 1
## 1260 1
## 1261 1
## 1262 1
## 1263 1
## 1264 1
## 1265 1
## 1266 1
## 1267 1
## 1268 1
## 1269 1
## 1270 1
## 1271 1
## 1272 1
## 1273 1
## 1274 1
## 1275 1
## 1276 1
## 1277 1
## 1278 1
## 1279 1
## 1280 1
## 1281 1
## 1282 1
## 1283 1
## 1284 1
## 1285 1
## 1286 1
## 1287 1
## 1288 1
## 1289 1
## 1290 1
## 1291 1
## 1292 1
## 1293 1
## 1294 1
## 1295 1
## 1296 1
## 1297 1
## 1298 1
## 1299 1
## 1300 1
## 1301 1
## 1302 1
## 1303 1
## 1304 1
## 1305 1
## 1306 1
## 1307 1
## 1308 1
## 1309 1
## 1310 1
## 1311 1
## 1312 1
## 1313 1
## 1314 1
## 1315 1
## 1316 1
## 1317 1
## 1318 1
## 1319 1
## 1320 1
## 1321 1
## 1322 1
## 1323 1
## 1324 1
## 1325 1
## 1326 1
## 1327 1
## 1328 1
## 1329 1
## 1330 1
## 1331 1
## 1332 1
## 1333 1
## 1334 1
## 1335 1
## 1336 1
## 1337 1
## 1338 1
## 1339 1
## 1340 1
## 1341 1
## 1342 1
## 1343 1
## 1344 1
## 1345 1
## 1346 1
## 1347 1
## 1348 1
## 1349 1
## 1350 1
## 1351 1
## 1352 1
## 1353 1
## 1354 1
## 1355 1
## 1356 1
## 1357 1
## 1358 1
## 1359 1
## 1360 1
## 1361 1
## 1362 1
## 1363 1
## 1364 1
## 1365 1
## 1366 1
## 1367 1
## 1368 1
## 1369 1
## 1370 1
## 1371 1
## 1372 1
## 1373 1
## 1374 1
## 1375 1
## 1376 1
## 1377 1
## 1378 1
## 1379 1
## 1380 1
## 1381 1
## 1382 1
## 1383 1
## 1384 1
## 1385 1
## 1386 1
## 1387 1
## 1388 1
## 1389 1
## 1390 1
## 1391 1
## 1392 1
## 1393 1
## 1394 1
## 1395 1
## 1396 1
## 1397 1
## 1398 1
## 1399 1
## 1400 1
## 1401 1
## 1402 1
## 1403 1
## 1404 1
## 1405 1
## 1406 1
## 1407 1
## 1408 1
## 1409 1
## 1410 1
## 1411 1
## 1412 1
## 1413 1
## 1414 1
## 1415 1
## 1416 1
## 1417 1
## 1418 1
## 1419 1
## 1420 1
## 1421 1
## 1422 1
## 1423 1
## 1424 1
## 1425 1
## 1426 1
## 1427 1
## 1428 1
## 1429 1
## 1430 1
## 1431 1
## 1432 1
## 1433 1
## 1434 1
## 1435 1
## 1436 1
## 1437 1
## 1438 1
## 1439 1
## 1440 1
## 1441 1
## 1442 1
## 1443 1
## 1444 1
## 1445 1
## 1446 1
## 1447 1
## 1448 1
## 1449 1
## 1450 1
## 1451 1
## 1452 1
## 1453 1
## 1454 1
## 1455 1
## 1456 1
## 1457 1
## 1458 1
## 1459 1
## 1460 1
## 1461 1
## 1462 1
## 1463 1
## 1464 1
## 1465 1
## 1466 1
## 1467 1
## 1468 1
## 1469 1
## 1470 1
## 1471 1
## 1472 1
## 1473 1
## 1474 1
## 1475 1
## 1476 1
## 1477 1
## 1478 1
## 1479 1
## 1480 1
## 1481 1
## 1482 1
## 1483 1
## 1484 1
## 1485 1
## 1486 1
## 1487 1
## 1488 1
## 1489 1
## 1490 1
## 1491 1
## 1492 1
## 1493 1
## 1494 1
## 1495 1
## 1496 1
## 1497 1
## 1498 1
## 1499 1
## 1500 1
## 1501 1
## 1502 1
## 1503 1
## 1504 1
## 1505 1
## 1506 1
## 1507 1
## 1508 1
## 1509 1
## 1510 1
## 1511 1
## 1512 1
## 1513 1
## 1514 1
## 1515 1
## 1516 1
## 1517 1
## 1518 1
## 1519 1
## 1520 1
## 1521 1
## 1522 1
## 1523 1
## 1524 1
## 1525 1
## 1526 1
## 1527 1
## 1528 1
## 1529 1
## 1530 1
## 1531 1
## 1532 1
## 1533 1
## 1534 1
## 1535 1
## 1536 1
## 1537 1
## 1538 1
## 1539 1
## 1540 1
## 1541 1
## 1542 1
## 1543 1
## 1544 1
## 1545 1
## 1546 1
## 1547 1
## 1548 1
## 1549 1
## 1550 1
## 1551 1
## 1552 1
## 1553 1
## 1554 1
## 1555 1
## 1556 1
## 1557 1
## 1558 1
## 1559 1
## 1560 1
## 1561 1
## 1562 1
## 1563 1
## 1564 1
## 1565 1
## 1566 1
## 1567 1
## 1568 1
## 1569 1
## 1570 1
## 1571 1
## 1572 1
## 1573 1
## 1574 1
## 1575 1
## 1576 1
## 1577 1
## 1578 1
## 1579 1
## 1580 1
## 1581 1
## 1582 1
## 1583 1
## 1584 1
## 1585 1
## 1586 1
## 1587 1
## 1588 1
## 1589 1
## 1590 1
## 1591 1
## 1592 1
## 1593 1
## 1594 1
## 1595 1
## 1596 1
## 1597 1
## 1598 1
## 1599 1
## 1600 1
## 1601 1
## 1602 1
## 1603 1
## 1604 1
## 1605 1
## 1606 1
## 1607 1
## 1608 1
## 1609 1
## 1610 1
## 1611 1
## 1612 1
## 1613 1
## 1614 1
## 1615 1
## 1616 1
## 1617 1
## 1618 1
## 1619 1
## 1620 1
## 1621 1
## 1622 1
## 1623 1
## 1624 1
## 1625 1
## 1626 1
## 1627 1
## 1628 1
## 1629 1
## 1630 1
## 1631 1
## 1632 1
## 1633 1
## 1634 1
## 1635 1
## 1636 1
## 1637 1
## 1638 1
## 1639 1
## 1640 1
## 1641 1
## 1642 1
## 1643 1
## 1644 1
## 1645 1
## 1646 1
## 1647 1
## 1648 1
## 1649 1
## 1650 1
## 1651 1
## 1652 1
## 1653 1
## 1654 1
## 1655 1
## 1656 1
## 1657 1
## 1658 1
## 1659 1
## 1660 1
## 1661 1
## 1662 1
## 1663 1
## 1664 1
## 1665 1
## 1666 1
## 1667 1
## 1668 1
## 1669 1
## 1670 1
## 1671 1
## 1672 1
## 1673 1
## 1674 1
## 1675 1
## 1676 1
## 1677 1
## 1678 1
## 1679 1
## 1680 1
## 1681 1
## 1682 1
## 1683 1
## 1684 1
## 1685 1
## 1686 1
## 1687 1
## 1688 1
## 1689 1
## 1690 1
## 1691 1
## 1692 1
## 1693 1
## 1694 1
## 1695 1
## 1696 1
## 1697 1
## 1698 1
## 1699 1
## 1700 1
## 1701 1
## 1702 1
## 1703 1
## 1704 1
## 1705 1
## 1706 1
## 1707 1
## 1708 1
## 1709 1
## 1710 1
## 1711 1
## 1712 1
## 1713 1
## 1714 1
## 1715 1
## 1716 1
## 1717 1
## 1718 1
## 1719 1
## 1720 1
## 1721 1
## 1722 1
## 1723 1
## 1724 1
## 1725 1
## 1726 1
## 1727 1
## 1728 1
## 1729 1
## 1730 1
## 1731 1
## 1732 1
## 1733 1
## 1734 1
## 1735 1
## 1736 1
## 1737 1
## 1738 1
## 1739 1
## 1740 1
## 1741 1
## 1742 1
## 1743 1
## 1744 1
## 1745 1
## 1746 1
## 1747 1
## 1748 1
## 1749 1
## 1750 1
## 1751 1
## 1752 1
## 1753 1
## 1754 1
## 1755 1
## 1756 1
## 1757 1
## 1758 1
## 1759 1
## 1760 1
## 1761 1
## 1762 1
## 1763 1
## 1764 1
## 1765 1
## 1766 1
## 1767 1
## 1768 1
## 1769 1
## 1770 1
## 1771 1
## 1772 1
## 1773 1
## 1774 1
## 1775 1
## 1776 1
## 1777 1
## 1778 1
## 1779 1
## 1780 1
## 1781 1
## 1782 1
## 1783 1
## 1784 1
## 1785 1
## 1786 1
## 1787 1
## 1788 1
## 1789 1
## 1790 1
## 1791 1
## 1792 1
## 1793 1
## 1794 1
## 1795 1
## 1796 1
## 1797 1
## 1798 1
## 1799 1
## 1800 1
## 1801 1
## 1802 1
## 1803 1
## 1804 1
## 1805 1
## 1806 1
## 1807 1
## 1808 1
## 1809 1
## 1810 1
## 1811 1
## 1812 1
## 1813 1
## 1814 1
## 1815 1
## 1816 1
## 1817 1
## 1818 1
## 1819 1
## 1820 1
## 1821 1
## 1822 1
## 1823 1
## 1824 1
## 1825 1
## 1826 1
## 1827 1
## 1828 1
## 1829 1
## 1830 1
## 1831 1
## 1832 1
## 1833 1
## 1834 1
## 1835 1
## 1836 1
## 1837 1
## 1838 1
## 1839 1
## 1840 1
## 1841 1
## 1842 1
## 1843 1
## 1844 1
## 1845 1
## 1846 1
## 1847 1
## 1848 1
## 1849 1
## 1850 1
## 1851 1
## 1852 1
## 1853 1
## 1854 1
## 1855 1
## 1856 1
## 1857 1
## 1858 1
## 1859 1
## 1860 1
## 1861 1
## 1862 1
## 1863 1
## 1864 1
## 1865 1
## 1866 1
## 1867 1
## 1868 1
## 1869 1
## 1870 1
## 1871 1
## 1872 1
## 1873 1
## 1874 1
## 1875 1
## 1876 1
## 1877 1
## 1878 1
## 1879 1
## 1880 1
## 1881 1
## 1882 1
## 1883 1
## 1884 1
## 1885 1
## 1886 1
## 1887 1
## 1888 1
## 1889 1
## 1890 1
## 1891 1
## 1892 1
## 1893 1
## 1894 1
## 1895 1
## 1896 1
## 1897 1
## 1898 1
## 1899 1
## 1900 1
## 1901 1
## 1902 1
## 1903 1
## 1904 1
## 1905 1
## 1906 1
## 1907 1
## 1908 1
## 1909 1
## 1910 1
## 1911 1
## 1912 1
## 1913 1
## 1914 1
## 1915 1
## 1916 1
## 1917 1
## 1918 1
## 1919 1
## 1920 1
## 1921 1
## 1922 1
## 1923 1
## 1924 1
## 1925 1
## 1926 1
## 1927 1
## 1928 1
## 1929 1
## 1930 1
## 1931 1
## 1932 1
## 1933 1
## 1934 1
## 1935 1
## 1936 1
## 1937 1
## 1938 1
## 1939 1
## 1940 1
## 1941 1
## 1942 1
## 1943 1
## 1944 1
## 1945 1
## 1946 1
## 1947 1
## 1948 1
## 1949 1
## 1950 1
## 1951 1
## 1952 1
## 1953 1
## 1954 1
## 1955 1
## 1956 1
## 1957 1
## 1958 1
## 1959 1
## 1960 1
## 1961 1
## 1962 1
## 1963 1
## 1964 1
## 1965 1
## 1966 1
## 1967 1
## 1968 1
## 1969 1
## 1970 1
## 1971 1
## 1972 1
## 1973 1
## 1974 1
## 1975 1
## 1976 1
## 1977 1
## 1978 1
## 1979 1
## 1980 1
## 1981 1
## 1982 1
## 1983 1
## 1984 1
## 1985 1
## 1986 1
## 1987 1
## 1988 1
## 1989 1
## 1990 1
## 1991 1
## 1992 1
## 1993 1
## 1994 1
## 1995 1
## 1996 1
## 1997 1
## 1998 1
## 1999 1
## 2000 1
## 2001 1
## 2002 1
## 2003 1
## 2004 1
## 2005 1
## 2006 1
## 2007 1
## 2008 1
## 2009 1
## 2010 1
## 2011 1
## 2012 1
## 2013 1
## 2014 1
## 2015 1
## 2016 1
## 2017 1
## 2018 1
## 2019 1
## 2020 1
## 2021 1
## 2022 1
## 2023 1
## 2024 1
## 2025 1
## 2026 1
## 2027 1
## 2028 1
## 2029 1
## 2030 1
## 2031 1
## 2032 1
## 2033 1
## 2034 1
## 2035 1
## 2036 1
## 2037 1
## 2038 1
## 2039 1
## 2040 1
## 2041 1
## 2042 1
## 2043 1
## 2044 1
## 2045 1
## 2046 1
## 2047 1
## 2048 1
## 2049 1
## 2050 1
## 2051 1
## 2052 1
## 2053 1
## 2054 1
## 2055 1
## 2056 1
## 2057 1
## 2058 1
## 2059 1
## 2060 1
## 2061 1
## 2062 1
## 2063 1
## 2064 1
## 2065 1
## 2066 1
## 2067 1
## 2068 1
## 2069 1
## 2070 1
## 2071 1
## 2072 1
## 2073 1
## 2074 1
## 2075 1
## 2076 1
## 2077 1
## 2078 1
## 2079 1
## 2080 1
## 2081 1
## 2082 1
## 2083 1
## 2084 1
## 2085 1
## 2086 1
## 2087 1
## 2088 1
## 2089 1
## 2090 1
## 2091 1
## 2092 1
## 2093 1
## 2094 1
## 2095 1
## 2096 1
## 2097 1
## 2098 1
## 2099 1
## 2100 1
## 2101 1
## 2102 1
## 2103 1
## 2104 1
## 2105 1
## 2106 1
## 2107 1
## 2108 1
## 2109 1
## 2110 1
## 2111 1
## 2112 1
## 2113 1
## 2114 1
## 2115 1
## 2116 1
## 2117 1
## 2118 1
## 2119 1
## 2120 1
## 2121 1
## 2122 1
## 2123 1
## 2124 1
## 2125 1
## 2126 1
## 2127 1
## 2128 1
## 2129 1
## 2130 1
## 2131 1
## 2132 1
## 2133 1
## 2134 1
## 2135 1
## 2136 1
## 2137 1
## 2138 1
## 2139 1
## 2140 1
## 2141 1
## 2142 1
## 2143 1
## 2144 1
## 2145 1
## 2146 1
## 2147 1
## 2148 1
## 2149 1
## 2150 1
## 2151 1
## 2152 1
## 2153 1
## 2154 1
## 2155 1
## 2156 1
## 2157 1
## 2158 1
## 2159 1
## 2160 1
## 2161 1
## 2162 1
## 2163 1
## 2164 1
## 2165 1
## 2166 1
## 2167 1
## 2168 1
## 2169 1
## 2170 1
## 2171 1
## 2172 1
## 2173 1
## 2174 1
## 2175 1
## 2176 1
## 2177 1
## 2178 1
## 2179 1
## 2180 1
## 2181 1
## 2182 1
## 2183 1
## 2184 1
## 2185 1
## 2186 1
## 2187 1
## 2188 1
## 2189 1
## 2190 1
## 2191 1
## 2192 1
## 2193 1
## 2194 1
## 2195 1
## 2196 1
## 2197 1
## 2198 1
## 2199 1
## 2200 1
## 2201 1
## 2202 1
## 2203 1
## 2204 1
## 2205 1
## 2206 1
## 2207 1
## 2208 1
## 2209 1
## 2210 1
## 2211 1
## 2212 1
## 2213 1
## 2214 1
## 2215 1
## 2216 1
## 2217 1
## 2218 1
## 2219 1
## 2220 1
## 2221 1
## 2222 1
## 2223 1
## 2224 1
## 2225 1
## 2226 1
## 2227 1
## 2228 1
## 2229 1
## 2230 1
## 2231 1
## 2232 1
## 2233 1
## 2234 1
## 2235 1
## 2236 1
## 2237 1
## 2238 1
## 2239 1
## 2240 1
## 2241 1
## 2242 1
## 2243 1
## 2244 1
## 2245 1
## 2246 1
## 2247 1
## 2248 1
## 2249 1
## 2250 1
## 2251 1
## 2252 1
## 2253 1
## 2254 1
## 2255 1
## 2256 1
## 2257 1
## 2258 1
## 2259 1
## 2260 1
## 2261 1
## 2262 1
## 2263 1
## 2264 1
## 2265 1
## 2266 1
## 2267 1
## 2268 1
## 2269 1
## 2270 1
## 2271 1
## 2272 1
## 2273 1
## 2274 1
## 2275 1
## 2276 1
## 2277 1
## 2278 1
## 2279 1
## 2280 1
## 2281 1
## 2282 1
## 2283 1
## 2284 1
## 2285 1
## 2286 1
## 2287 1
## 2288 1
## 2289 1
## 2290 1
## 2291 1
## 2292 1
## 2293 1
## 2294 1
## 2295 1
## 2296 1
## 2297 1
## 2298 1
## 2299 1
## 2300 1
## 2301 1
## 2302 1
## 2303 1
## 2304 1
## 2305 1
## 2306 1
## 2307 1
## 2308 1
## 2309 1
## 2310 1
## 2311 1
## 2312 1
## 2313 1
## 2314 1
## 2315 1
## 2316 1
## 2317 1
## 2318 1
## 2319 1
## 2320 1
## 2321 1
## 2322 1
## 2323 1
## 2324 1
## 2325 1
## 2326 1
## 2327 1
## 2328 1
## 2329 1
## 2330 1
## 2331 1
## 2332 1
## 2333 1
## 2334 1
## 2335 1
## 2336 1
## 2337 1
## 2338 1
## 2339 1
## 2340 1
## 2341 1
## 2342 1
## 2343 1
## 2344 1
## 2345 1
## 2346 1
## 2347 1
## 2348 1
## 2349 1
## 2350 1
## 2351 1
## 2352 1
## 2353 1
## 2354 1
## 2355 1
## 2356 1
## 2357 1
## 2358 1
## 2359 1
## 2360 1
## 2361 1
## 2362 1
## 2363 1
## 2364 1
## 2365 1
## 2366 1
## 2367 1
## 2368 1
## 2369 1
## 2370 1
## 2371 1
## 2372 1
## 2373 1
## 2374 1
## 2375 1
## 2376 1
## 2377 1
## 2378 1
## 2379 1
## 2380 1
## 2381 1
## 2382 1
## 2383 1
## 2384 1
## 2385 1
## 2386 1
## 2387 1
## 2388 1
## 2389 1
## 2390 1
## 2391 1
## 2392 1
## 2393 1
## 2394 1
## 2395 1
## 2396 1
## 2397 1
## 2398 1
## 2399 1
## 2400 1
## 2401 1
## 2402 1
## 2403 1
## 2404 1
## 2405 1
## 2406 1
## 2407 1
## 2408 1
## 2409 1
## 2410 1
## 2411 1
## 2412 1
## 2413 1
## 2414 1
## 2415 1
## 2416 1
## 2417 1
## 2418 1
## 2419 1
## 2420 1
## 2421 1
## 2422 1
## 2423 1
## 2424 1
## 2425 1
## 2426 1
## 2427 1
## 2428 1
## 2429 1
## 2430 1
## 2431 1
## 2432 1
## 2433 1
## 2434 1
## 2435 1
## 2436 1
## 2437 1
## 2438 1
## 2439 1
## 2440 1
## 2441 1
## 2442 1
## 2443 1
## 2444 1
## 2445 1
## 2446 1
## 2447 1
## 2448 1
## 2449 1
## 2450 1
## 2451 1
## 2452 1
## 2453 1
## 2454 1
## 2455 1
## 2456 1
## 2457 1
## 2458 1
## 2459 1
## 2460 1
## 2461 1
## 2462 1
## 2463 1
## 2464 1
## 2465 1
## 2466 1
## 2467 1
## 2468 1
## 2469 1
## 2470 1
## 2471 1
## 2472 1
## 2473 1
## 2474 1
## 2475 1
## 2476 1
## 2477 1
## 2478 1
## 2479 1
## 2480 1
## 2481 1
## 2482 1
## 2483 1
## 2484 1
## 2485 1
## 2486 1
## 2487 1
## 2488 1
## 2489 1
## 2490 1
## 2491 1
## 2492 1
## 2493 1
## 2494 1
## 2495 1
## 2496 1
## 2497 1
## 2498 1
## 2499 1
## 2500 1
## 2501 1
## 2502 1
## 2503 1
## 2504 1
## 2505 1
## 2506 1
## 2507 1
## 2508 1
## 2509 1
## 2510 1
## 2511 1
## 2512 1
## 2513 1
## 2514 1
## 2515 1
## 2516 1
## 2517 1
## 2518 1
## 2519 1
## 2520 1
## 2521 1
## 2522 1
## 2523 1
## 2524 1
## 2525 1
## 2526 1
## 2527 1
## 2528 1
## 2529 1
## 2530 1
## 2531 1
## 2532 1
## 2533 1
## 2534 1
## 2535 1
## 2536 1
## 2537 1
## 2538 1
## 2539 1
## 2540 1
## 2541 1
## 2542 1
## 2543 1
## 2544 1
## 2545 1
## 2546 1
## 2547 1
## 2548 1
## 2549 1
## 2550 1
## 2551 1
## 2552 1
## 2553 1
## 2554 1
## 2555 1
## 2556 1
## 2557 1
## 2558 1
## 2559 1
## 2560 1
## 2561 1
## 2562 1
## 2563 1
## 2564 1
## 2565 1
## 2566 1
## 2567 1
## 2568 1
## 2569 1
## 2570 1
## 2571 1
## 2572 1
## 2573 1
## 2574 1
## 2575 1
## 2576 1
## 2577 1
## 2578 1
## 2579 1
## 2580 1
## 2581 1
## 2582 1
## 2583 1
## 2584 1
## 2585 1
## 2586 1
## 2587 1
## 2588 1
## 2589 1
## 2590 1
## 2591 1
## 2592 1
## 2593 1
## 2594 1
## 2595 1
## 2596 1
## 2597 1
## 2598 1
## 2599 1
## 2600 1
## 2601 1
## 2602 1
## 2603 1
## 2604 1
## 2605 1
## 2606 1
## 2607 1
## 2608 1
## 2609 1
## 2610 1
## 2611 1
## 2612 1
## 2613 1
## 2614 1
## 2615 1
## 2616 1
## 2617 1
## 2618 1
## 2619 1
## 2620 1
## 2621 1
## 2622 1
## 2623 1
## 2624 1
## 2625 1
## 2626 1
## 2627 1
## 2628 1
## 2629 1
## 2630 1
## 2631 1
## 2632 1
## 2633 1
## 2634 1
## 2635 1
## 2636 1
## 2637 1
## 2638 1
## 2639 1
## 2640 1
## 2641 1
## 2642 1
## 2643 1
## 2644 1
## 2645 1
## 2646 1
## 2647 1
## 2648 1
## 2649 1
## 2650 1
## 2651 1
## 2652 1
## 2653 1
## 2654 1
## 2655 1
## 2656 1
## 2657 1
## 2658 1
## 2659 1
## 2660 1
## 2661 1
## 2662 1
## 2663 1
## 2664 1
## 2665 1
## 2666 1
## 2667 1
## 2668 1
## 2669 1
## 2670 1
## 2671 1
## 2672 1
## 2673 1
## 2674 1
## 2675 1
## 2676 1
## 2677 1
## 2678 1
## 2679 1
## 2680 1
## 2681 1
## 2682 1
## 2683 1
## 2684 1
## 2685 1
## 2686 1
## 2687 1
## 2688 1
## 2689 1
## 2690 1
## 2691 1
## 2692 1
## 2693 1
## 2694 1
## 2695 1
## 2696 1
## 2697 1
## 2698 1
## 2699 1
## 2700 1
## 2701 1
## 2702 1
## 2703 1
## 2704 1
## 2705 1
## 2706 1
## 2707 1
## 2708 1
## 2709 1
## 2710 1
## 2711 1
## 2712 1
## 2713 1
## 2714 1
## 2715 1
## 2716 1
## 2717 1
## 2718 1
## 2719 1
## 2720 1
## 2721 1
## 2722 1
## 2723 1
## 2724 1
## 2725 1
## 2726 1
## 2727 1
## 2728 1
## 2729 1
## 2730 1
## 2731 1
## 2732 1
## 2733 1
## 2734 1
## 2735 1
## 2736 1
## 2737 1
## 2738 1
## 2739 1
## 2740 1
## 2741 1
## 2742 1
## 2743 1
## 2744 1
## 2745 1
## 2746 1
## 2747 1
## 2748 1
## 2749 1
## 2750 1
## 2751 1
## 2752 1
## 2753 1
## 2754 1
## 2755 1
## 2756 1
## 2757 1
## 2758 1
## 2759 1
## 2760 1
## 2761 1
## 2762 1
## 2763 1
## 2764 1
## 2765 1
## 2766 1
## 2767 1
## 2768 1
## 2769 1
## 2770 1
## 2771 1
## 2772 1
## 2773 1
## 2774 1
## 2775 1
## 2776 1
## 2777 1
## 2778 1
## 2779 1
## 2780 1
## 2781 1
## 2782 1
## 2783 1
## 2784 1
## 2785 1
## 2786 1
## 2787 1
## 2788 1
## 2789 1
## 2790 1
## 2791 1
## 2792 1
## 2793 1
## 2794 1
## 2795 1
## 2796 1
## 2797 1
## 2798 1
## 2799 1
## 2800 1
## 2801 1
## 2802 1
## 2803 1
## 2804 1
## 2805 1
## 2806 1
## 2807 1
## 2808 1
## 2809 1
## 2810 1
## 2811 1
## 2812 1
## 2813 1
## 2814 1
## 2815 1
## 2816 1
## 2817 1
## 2818 1
## 2819 1
## 2820 1
## 2821 1
## 2822 1
## 2823 1
## 2824 1
## 2825 1
## 2826 1
## 2827 1
## 2828 1
## 2829 1
## 2830 1
## 2831 1
## 2832 1
## 2833 1
## 2834 1
## 2835 1
## 2836 1
## 2837 1
## 2838 1
## 2839 1
## 2840 1
## 2841 1
## 2842 1
## 2843 1
## 2844 1
## 2845 1
## 2846 1
## 2847 1
## 2848 1
## 2849 1
## 2850 1
## 2851 1
## 2852 1
## 2853 1
## 2854 1
## 2855 1
## 2856 1
## 2857 1
## 2858 1
## 2859 1
## 2860 1
## 2861 1
## 2862 1
## 2863 1
## 2864 1
## 2865 1
## 2866 1
## 2867 1
## 2868 1
## 2869 1
## 2870 1
## 2871 1
## 2872 1
## 2873 1
## 2874 1
## 2875 1
## 2876 1
## 2877 1
## 2878 1
## 2879 1
## 2880 1
## 2881 1
## 2882 1
## 2883 1
## 2884 1
## 2885 1
## 2886 1
## 2887 1
## 2888 1
## 2889 1
## 2890 1
## 2891 1
## 2892 1
## 2893 1
## 2894 1
## 2895 1
## 2896 1
## 2897 1
## 2898 1
## 2899 1
## 2900 1
## 2901 1
## 2902 1
## 2903 1
## 2904 1
## 2905 1
## 2906 1
## 2907 1
## 2908 1
## 2909 1
## 2910 1
## 2911 1
## 2912 1
## 2913 1
## 2914 1
## 2915 1
## 2916 1
## 2917 1
## 2918 1
## 2919 1
## 2920 1
## 2921 1
## 2922 1
## 2923 1
## 2924 1
## 2925 1
## 2926 1
## 2927 1
## 2928 1
## 2929 1
## 2930 1
## 2931 1
## 2932 1
## 2933 1
## 2934 1
## 2935 1
## 2936 1
## 2937 1
## 2938 1
## 2939 1
## 2940 1
## 2941 1
## 2942 1
## 2943 1
## 2944 1
## 2945 1
## 2946 1
## 2947 1
## 2948 1
## 2949 1
## 2950 1
## 2951 1
## 2952 1
## 2953 1
## 2954 1
## 2955 1
## 2956 1
## 2957 1
## 2958 1
## 2959 1
## 2960 1
## 2961 1
## 2962 1
## 2963 1
## 2964 1
## 2965 1
## 2966 1
## 2967 1
## 2968 1
## 2969 1
## 2970 1
## 2971 1
## 2972 1
## 2973 1
## 2974 1
## 2975 1
## 2976 1
## 2977 1
## 2978 1
## 2979 1
## 2980 1
## 2981 1
## 2982 1
## 2983 1
## 2984 1
## 2985 1
## 2986 1
## 2987 1
## 2988 1
## 2989 1
## 2990 1
## 2991 1
## 2992 1
## 2993 1
## 2994 1
## 2995 1
## 2996 1
## 2997 1
## 2998 1
## 2999 1
## 3000 1
## 3001 1
## 3002 1
## 3003 1
## 3004 1
## 3005 1
## 3006 1
## 3007 1
## 3008 1
## 3009 1
## 3010 1
## 3011 1
## 3012 1
## 3013 1
## 3014 1
## 3015 1
## 3016 1
## 3017 1
## 3018 1
## 3019 1
## 3020 1
## 3021 1
## 3022 1
## 3023 1
## 3024 1
## 3025 1
## 3026 1
## 3027 1
## 3028 1
## 3029 1
## 3030 1
## 3031 1
## 3032 1
## 3033 1
## 3034 1
## 3035 1
## 3036 1
## 3037 1
## 3038 1
## 3039 1
## 3040 1
## 3041 1
## 3042 1
## 3043 1
## 3044 1
## 3045 1
## 3046 1
## 3047 1
## 3048 1
## 3049 1
## 3050 1
## 3051 1
## 3052 1
## 3053 1
## 3054 1
## 3055 1
## 3056 1
## 3057 1
## 3058 1
## 3059 1
## 3060 1
## 3061 1
## 3062 1
## 3063 1
## 3064 1
## 3065 1
## 3066 1
## 3067 1
## 3068 1
## 3069 1
## 3070 1
## 3071 1
## 3072 1
## 3073 1
## 3074 1
## 3075 1
## 3076 1
## 3077 1
## 3078 1
## 3079 1
## 3080 1
## 3081 1
## 3082 1
## 3083 1
## 3084 1
## 3085 1
## 3086 1
## 3087 1
## 3088 1
## 3089 1
## 3090 1
## 3091 1
## 3092 1
## 3093 1
## 3094 1
## 3095 1
## 3096 1
## 3097 1
## 3098 1
## 3099 1
## 3100 1
## 3101 1
## 3102 1
## 3103 1
## 3104 1
## 3105 1
## 3106 1
## 3107 1
## 3108 1
## 3109 1
## 3110 1
## 3111 1
## 3112 1
## 3113 1
## 3114 1
## 3115 1
## 3116 1
## 3117 1
## 3118 1
## 3119 1
## 3120 1
## 3121 1
## 3122 1
## 3123 1
## 3124 1
## 3125 1
## 3126 1
## 3127 1
## 3128 1
## 3129 1
## 3130 1
## 3131 1
## 3132 1
## 3133 1
## 3134 1
## 3135 1
## 3136 1
## 3137 1
## 3138 1
## 3139 1
## 3140 1
## 3141 1
## 3142 1
## 3143 1
## 3144 1
## 3145 1
## 3146 1
## 3147 1
## 3148 1
## 3149 1
## 3150 1
## 3151 1
## 3152 1
## 3153 1
## 3154 1
## 3155 1
## 3156 1
## 3157 1
## 3158 1
## 3159 1
## 3160 1
## 3161 1
## 3162 1
## 3163 1
## 3164 1
## 3165 1
## 3166 1
## 3167 1
## 3168 1
## 3169 1
## 3170 1
## 3171 1
## 3172 1
## 3173 1
## 3174 1
## 3175 1
## 3176 1
## 3177 1
## 3178 1
## 3179 1
## 3180 1
## 3181 1
## 3182 1
## 3183 1
## 3184 1
## 3185 1
## 3186 1
## 3187 1
## 3188 1
## 3189 1
## 3190 1
## 3191 1
## 3192 1
## 3193 1
## 3194 1
## 3195 1
## 3196 1
## 3197 1
## 3198 1
## 3199 1
## 3200 1
## 3201 1
## 3202 1
## 3203 1
## 3204 1
## 3205 1
## 3206 1
## 3207 1
## 3208 1
## 3209 1
## 3210 1
## 3211 1
## 3212 1
## 3213 1
## 3214 1
## 3215 1
## 3216 1
## 3217 1
## 3218 1
## 3219 1
## 3220 1
## 3221 1
## 3222 1
## 3223 1
## 3224 1
## 3225 1
## 3226 1
## 3227 1
## 3228 1
## 3229 1
## 3230 1
## 3231 1
## 3232 1
## 3233 1
## 3234 1
## 3235 1
## 3236 1
## 3237 1
## 3238 1
## 3239 1
## 3240 1
## 3241 1
## 3242 1
## 3243 1
## 3244 1
## 3245 1
## 3246 1
## 3247 1
## 3248 1
## 3249 1
## 3250 1
## 3251 1
## 3252 1
## 3253 1
## 3254 1
## 3255 1
## 3256 1
## 3257 1
## 3258 1
## 3259 1
## 3260 1
## 3261 1
## 3262 1
## 3263 1
## 3264 1
## 3265 1
## 3266 1
## 3267 1
## 3268 1
## 3269 1
## 3270 1
## 3271 1
## 3272 1
## 3273 1
## 3274 1
## 3275 1
## 3276 1
## 3277 1
## 3278 1
## 3279 1
## 3280 1
## 3281 1
## 3282 1
## 3283 1
## 3284 1
## 3285 1
## 3286 1
## 3287 1
## 3288 1
## 3289 1
## 3290 1
## 3291 1
## 3292 1
## 3293 1
## 3294 1
## 3295 1
## 3296 1
## 3297 1
## 3298 1
## 3299 1
## 3300 1
## 3301 1
## 3302 1
## 3303 1
## 3304 1
## 3305 1
## 3306 1
## 3307 1
## 3308 1
## 3309 1
## 3310 1
## 3311 1
## 3312 1
## 3313 1
## 3314 1
## 3315 1
## 3316 1
## 3317 1
## 3318 1
## 3319 1
## 3320 1
## 3321 1
## 3322 1
## 3323 1
## 3324 1
## 3325 1
## 3326 1
## 3327 1
## 3328 1
## 3329 1
## 3330 1
## 3331 1
## 3332 1
## 3333 1
## 3334 1
## 3335 1
## 3336 1
## 3337 1
## 3338 1
## 3339 1
## 3340 1
## 3341 1
## 3342 1
## 3343 1
## 3344 1
## 3345 1
## 3346 1
## 3347 1
## 3348 1
## 3349 1
## 3350 1
## 3351 1
## 3352 1
## 3353 1
## 3354 1
## 3355 1
## 3356 1
## 3357 1
## 3358 1
## 3359 1
## 3360 1
## 3361 1
## 3362 1
## 3363 1
## 3364 1
## 3365 1
## 3366 1
## 3367 1
## 3368 1
## 3369 1
## 3370 1
## 3371 1
## 3372 1
## 3373 1
## 3374 1
## 3375 1
## 3376 1
## 3377 1
## 3378 1
## 3379 1
## 3380 1
## 3381 1
## 3382 1
## 3383 1
## 3384 1
## 3385 1
## 3386 1
## 3387 1
## 3388 1
## 3389 1
## 3390 1
## 3391 1
## 3392 1
## 3393 1
## 3394 1
## 3395 1
## 3396 1
## 3397 1
## 3398 1
## 3399 1
## 3400 1
## 3401 1
## 3402 1
## 3403 1
## 3404 1
## 3405 1
## 3406 1
## 3407 1
## 3408 1
## 3409 1
## 3410 1
## 3411 1
## 3412 1
## 3413 1
## 3414 1
## 3415 1
## 3416 1
## 3417 1
## 3418 1
## 3419 1
## 3420 1
## 3421 1
## 3422 1
## 3423 1
## 3424 1
## 3425 1
## 3426 1
## 3427 1
## 3428 1
## 3429 1
## 3430 1
## 3431 1
## 3432 1
## 3433 1
## 3434 1
## 3435 1
## 3436 1
## 3437 1
## 3438 1
## 3439 1
## 3440 1
## 3441 1
## 3442 1
## 3443 1
## 3444 1
## 3445 1
## 3446 1
## 3447 1
## 3448 1
## 3449 1
## 3450 1
## 3451 1
## 3452 1
## 3453 1
## 3454 1
## 3455 1
## 3456 1
## 3457 1
## 3458 1
## 3459 1
## 3460 1
## 3461 1
## 3462 1
## 3463 1
## 3464 1
## 3465 1
## 3466 1
## 3467 1
## 3468 1
## 3469 1
## 3470 1
## 3471 1
## 3472 1
## 3473 1
## 3474 1
## 3475 1
## 3476 1
## 3477 1
## 3478 1
## 3479 1
## 3480 1
## 3481 1
## 3482 1
## 3483 1
## 3484 1
## 3485 1
## 3486 1
## 3487 1
## 3488 1
## 3489 1
## 3490 1
## 3491 1
## 3492 1
## 3493 1
## 3494 1
## 3495 1
## 3496 1
## 3497 1
## 3498 1
## 3499 1
## 3500 1
## 3501 1
## 3502 1
## 3503 1
## 3504 1

Loading Trump DEI Articles Data

 articles_df <- read_csv("/Users/tiasiasaunders/Desktop/code/comp_text/articles_df.csv")
## Rows: 314239 Columns: 25
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: ","
## chr  (18): filename, sentence, title, publication_location, publication_4, p...
## dbl   (2): length, word_count
## lgl   (4): agg_copyright, pub_copyright, term, ticker
## dttm  (1): published_date
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
articles_df |> 
  distinct(title)
## # A tibble: 3,504 × 1
##    title                                                          
##    <chr>                                                          
##  1 Trump is attacking DEI. Big businesses believe DEI is valuable 
##  2 Apple investors defy Trump to back DEI                         
##  3 Judge Blocks Parts Of Trump s Executive Orders Targeting DEI   
##  4 The Memo: Trump goes full bore against DEI                     
##  5 DEI leaders scramble to counter Trump actions                  
##  6 Trump Takes Necessary Action To Eradicate DEI | Opinion        
##  7 Donald Trump Hit With Major DEI Legal Setback                  
##  8 Judge blocks Trump ban on DEI for federal agencies, contractors
##  9 Trump's attacks against DEI are unacceptable                   
## 10 Trump officials baselessly blame DEI in plane crash presser    
## # ℹ 3,494 more rows
## use this for textual analysis (bigrams, tokenization, sentiment analysis) 
articles_df <- articles_df |> 
mutate(dom_vs_intl = case_when (
  publication_location == "International" ~ "INTL",
  publication_location != "International" ~ "US",
  TRUE ~ NA
)) 
articles_df %>%
    dplyr::count(dom_vs_intl)
## # A tibble: 2 × 2
##   dom_vs_intl      n
##   <chr>        <int>
## 1 INTL         73702
## 2 US          240537

Publication Count

#filtered for 10mor more articles, 30 publications and 1479  articles
pub_count <- final_index |> 
    dplyr::count(publication_4) |> 
  filter( n> 10) %>% 
  arrange(desc(n)) 

print(pub_count)
##                        publication_4   n
## 1                    University Wire 648
## 2                         MailOnline 243
## 3                States News Service 216
## 4                    CNN Transcripts 210
## 5              Targeted News Service 195
## 6   The Independent (United Kingdom) 184
## 7                       Newsweek.com 178
## 8                        TheHill.com 177
## 9                           Fox News 167
## 10            The Guardian  (London) 167
## 11                  USA Today Online 141
## 12                  The Daily Caller 135
## 13                             Axios 114
## 14                 CNN International 106
## 15                   telegraph.co.uk  84
## 16              The Associated Press  77
## 17 Forbes.com (Forbes, Incorporated)  69
## 18                  Business Insider  63
## 19                          CNN Wire  62
## 20            Financial Times Online  57
## 21                    thetimes.co.uk  53
## 22      The Daily Telegraph (London)  35
## 23                The New York Times  34
## 24                         USA Today  33
## 25 Financial Times (London, England)  31
## 26                The Times (London)  25
### filter out publication to those who have 10 or more (already did ), mutate new column categorizing the 30 publicaations with centrist, left or right based on the media bias charts resources, add case_when 
  • The top 5 publications are the University Wire, MailOnline, States News Service, CNN Transcripts and Targeted News Service.

Political Leaning Publication Assignment

## redo this code block with the new data final_index 
final_index <- final_index |> 
  mutate(political_leaning = case_when(
    publication_4 %in% c("CNN Transcripts", "The Independent (United Kingdom)", "The Guardian (London)", "USA Today Online", "Axios", "The Associated Press", "CNN Wire", "The New York Times","USA Today") ~ "Left",
    publication_4 %in% c("MailOnline", "Fox News", "The Daily Caller", "telegraph.co.uk", "The Daily Telegraph (London)","The Times (London)" ) ~ "Right",
    publication_4 %in% c("Newsweek.com", "TheHill.com","CNN International", "Forbes.com (Forbes, Incorporated)", "Financial Times Online", "thetimes.co.uk", "Financial Times (London, England)") ~ "Centrist",
    publication_4 %in% c("University Wire","States News Service", "Targeted News Service", "Business Insider" ) ~ "Neutral", 
    TRUE ~ "Other"
  ))
## getting a breakdown of the political leaning of the publications
political_leaning_count <- final_index |>
   dplyr:: count(political_leaning) |>
  mutate(
    total = sum(n),
    percent = n / total * 100
  )
## so how could i do a content analysis of right versus left versus centrist verus neutral 

Number of columns and rows

print(paste0("This dataset has ", nrow(final_index), " rows and ", ncol(final_index), " columns."))
## [1] "This dataset has 3504 rows and 25 columns."

Descriptive Statistics

summary(final_index)
##     title           published_date                publication_location
##  Length:3504        Min.   :2025-01-20 00:00:00   Length:3504         
##  Class :character   1st Qu.:2025-01-29 00:00:00   Class :character    
##  Mode  :character   Median :2025-02-06 00:00:00   Mode  :character    
##                     Mean   :2025-02-07 09:47:15                       
##                     3rd Qu.:2025-02-18 00:00:00                       
##                     Max.   :2025-02-28 00:00:00                       
##  publication_4      publication_type_5    length            section         
##  Length:3504        Length:3504        Length:3504        Length:3504       
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##   word_count         countries            byline          agg_copyright 
##  Length:3504        Length:3504        Length:3504        Mode:logical  
##  Class :character   Class :character   Class :character   NA's:3504     
##  Mode  :character   Mode  :character   Mode  :character                 
##                                                                         
##                                                                         
##                                                                         
##      cite             company            headline            hlead          
##  Length:3504        Length:3504        Length:3504        Length:3504       
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##  publication_16     publication_type_17 pub_copyright      show          
##  Length:3504        Length:3504         Mode:logical   Length:3504       
##  Class :character   Class :character    NA's:3504      Class :character  
##  Mode  :character   Mode  :character                   Mode  :character  
##                                                                          
##                                                                          
##                                                                          
##    term          ticker           index             filename        
##  Mode:logical   Mode:logical   Length:3504        Length:3504       
##  NA's:3504      NA's:3504      Class :character   Class :character  
##                                Mode  :character   Mode  :character  
##                                                                     
##                                                                     
##                                                                     
##    filepath         political_leaning 
##  Length:3504        Length:3504       
##  Class :character   Class :character  
##  Mode  :character   Mode  :character  
##                                       
##                                       
## 

Adding categorizing columns such as dom_vs_intl to indicate whether the article is from an international or domestic outlet

final_index <- final_index |> 
 #mutating a new column to indicate whether the pub location is international or domestic 

mutate(dom_vs_intl = case_when (
  publication_location == "International" ~ "INTL",
  publication_location != "International" ~ "US",
  TRUE ~ NA
)) 
final_index |> 
    dplyr::count(dom_vs_intl) 
##   dom_vs_intl    n
## 1        INTL  879
## 2          US 2625

Frequency count for each category and their location

table(final_index$dom_vs_intl)
## 
## INTL   US 
##  879 2625
table(final_index$publication_location)
## 
## Dist. of Columbia     International          New York      U.S. Federal 
##               177               879               174              2274

Top 5 Domestic Articles

top_five_domestic <- final_index|>
  filter(dom_vs_intl == "US") |>
   dplyr:: count(publication_4, sort = TRUE) |>
  slice_max(n, n = 5) 

print(top_five_domestic)
##           publication_4   n
## 1       University Wire 648
## 2   States News Service 216
## 3       CNN Transcripts 210
## 4 Targeted News Service 195
## 5          Newsweek.com 178

Top 5 International Articles

top_five_intl <- final_index |>
  filter(dom_vs_intl == "INTL") |>
    dplyr::count(publication_4, sort = TRUE) |>
  slice_max(n, n = 5) 
print(top_five_intl)
##                      publication_4   n
## 1                       MailOnline 243
## 2 The Independent (United Kingdom) 184
## 3           The Guardian  (London) 167
## 4                  telegraph.co.uk  84
## 5           Financial Times Online  57
final_index |> 
  filter(publication_4 == "MailOnline") 
##                                                                                                                                                                                                                         title
## 1                                                                                                                                                     Trump continues government purge by dismantling DEI from another agency
## 2                                                                                                                                                   Sunny Hostin claims Trump is an unqualified 'DEI' hire in apoplectic rant
## 3                                                                                                                                                        Google scraps DEI targets as big tech bends to DOGE, Trump, and Elon
## 4                                                                                                                                                  Don Lemon blasts 'nepo baby' Trump in furious rant about his DEI crackdown
## 5                                                                                                                                                   Apple risks the wrath of Donald Trump as it defies executive order on DEI
## 6                                                                                                                                       The brutal way Trump fired the highest-ranking woman in the military in his DEI purge
## 7                                                                                                                                        Democrats tears into 'vile' and 'grotesque' Trump for blaming the plane crash on DEI
## 8                                                                                                                           Trump successfully plunges government into darkness as 8,000 DEI web pages stripped from internet
## 9                                                                                                                                                                 Trump blames DEI for American Airlines crash that killed 67
## 10                                                                                                                              The truth behind Donald Trump's astounding claims Biden, Obama and DEI are to blame for crash
## 11                                                                                                    Trump obliterates DEI with new demand to place every federal diversity program employee on paid leave by 5 pm Wednesday
## 12                                                                                                                           JD Vance roasts the media for their 'funny' coverage of Trump's DEI remarks after DC plane crash
## 13                                                                                                                          Donald Trump to ban transgender troops and DEI military programs in latest executive order flurry
## 14                                                                                                              Trump strips millions from DEI foreign aid programs funding Irish musicals, LGBTQ programs in Serbia and more
## 15                                                                                                                 Seasoned pilot Lauren Sanchez blasts racist, sexist rage-baiting as Trump blames DEI for aviation disaster
## 16                                                                                                                                                 DEI is to blame for Trump's near-assassination claims Secret Service agent
## 17                                                                                                                                            Trump berates Black Hawk helicopter crew for DC plane crash after targeting DEI
## 18                                                                                                                              Karoline Leavitt pledges Trump will bring down prices as she takes aim at 'crap' DEI projects
## 19                                                                                                                        Female NTSB head stuns the press with her unexpected response to Trump's claim DEI caused the crash
## 20                                                                                                           Trump signs executive order to eradicate DEI from the FAA and makes awkward JOKE about visiting plane crash site
## 21                                                                                                                     NBC parent company's DEI initiatives probed by FCC as it becomes latest target of Trump administration
## 22                                                                                                                                       Woke DEI teacher complains about Trump removing their pronouns in parody-like speech
## 23                                                                                                                Pete Hegseth says Trump is 'exactly right' to blame DEI for DC plane crash and details the key to the probe
## 24                                                                                                                            Pete Buttigieg responds to Trump's 'despicable' comments blaming HIM and DEI for DC plane crash
## 25                                                                                                                  Service members reveal how Trump can 'rejuvenate' the military after COVID purge and DEI 'demoralization'
## 26                                                                                                            Trevor Noah leads anti-Trump roast at the Grammys as Hollywood targets tariffs, celebrates DEI and trans rights
## 27                                                                                                                 Trans troops, Hunter's helpers, DEI fanatics: Wokest heads to roll as Trump vows to fire MORE in bloodbath
## 28                                                                                                                                             Donald Trump fires first female Coast Guard leader over her obsession with DEI
## 29                                                                                         Trump evicts highest-ranking woman in the military from her home on short notice after her ouster over obsession with DEI policies
## 30  The Left is privately bracing for a Trump-style DEI apocalypse if Dutton wins. These programs will be first on the chopping block - and you won't believe some of them existed in the first place, writes STEPHEN JOHNSON
## 31                                                                                                                                 Pam Bondi throws out DEI lawsuits against police and firefighters, saying no more 'quotas'
## 32                                                                                                                                  Government agency is caught deploying sneaky tactic to get around Trump's anti-woke purge
## 33                                                                                                                  MSNBC guest launches unhinged attack on 'white folks' over price of eggs in 'Trump's disgusting America '
## 34         Hollywood delivers a brutal response to Donald Trump's gender ideology crackdown as Mexican transgender musical Emilia Pérez and intersex drama Conclave run riot during the 97th annual Academy Award nominations
## 35                                                                                                                                          The black business owners who say DEI has never worked and that it 'isn't for us'
## 36                                                                                                                                                    Trump orders all federal employees to remove pronouns from their emails
## 37                                                                                                                          Major update after thousands of government websites were set to go dark amid Trump's online purge
## 38                                                                                                       Madonna takes a swing at Donald Trump for 'dismantling' LGBTQ+ freedoms and tells her fans 'don't give up the fight'
## 39                                                                                                          Director of National Intelligence Tulsi Gabbard vows to crack down after kinky sex chats among NSA agents exposed
## 40                                                                                                           NSA agents exposed for sex chats as Tulsi Gabbard vows to punish workers posting 'kinks, fetishes and polyamory'
## 41                                                                                                                                       Ted Cruz takes on 'woke DEI propagandist' government consultants raking in thousands
## 42                                                                                                                              Activist investor reveals Costco's defiant DEI stance is 'not as meaningful' as it may appear
## 43                                                                                                                                                  CNN's shocking on-air dig at Trump during DC plane crash press conference
## 44                                                                                                                                           Elon Musk announces DOGE's first official act as Trump takes over in Oval Office
## 45                                                                                                                                     MSNBC guest claims America is becoming 'less safe' as FBI paints over 'diversity wall'
## 46                                                                                                                         CNN panel explodes into heated clash as pundit fumes she gets paid less than white male colleagues
## 47                                                                 Oscars goes to war with Trump by nominating two trans dramas for 21 awards after president's two-genders law was branded 'shameless' by Hollywood wokerati
## 48                                                                                                              Trump's Treasury chief Scott Bessent has witty comeback about being highest-ranking LGBTQ official in history
## 49              Aviation chiefs 'were recruiting people with targeted disabilities including intellectual problems and hearing/vision issues until last year' - as Trump vows to tackle 'diversity' in wake of crash disaster
## 50                                                                                                                                                                        Costco boldly defies Donald Trump's executive order
## 51                                                                                                                              NASA's woke boss admits agency wasted millions of taxpayer dollars on 'shameful' DEI programs
## 52                                                                                                                     DOGE rips apart half a BILLION in DEI grants to 'develop anti-racist mindsets' at Education Department
## 53                                                                                                                           Tom Hanks blasted for 'racist and disgusting' portrayal of MAGA supporter on star-studded SNL 50
## 54                                                                                                        Chiefs and Eagles players speak out on playing in front of Donald Trump with president set to attend the Super Bowl
## 55                                                                                                                                        Pressure mounts on Costco over DEI policies: 'Why would they Bud Light themselves?'
## 56                                                                                                                                           Trump pauses ALL federal grants, loans and other assistance, leaked memo reveals
## 57                                                                                                                      Bill Maher praises Trump for mocking reporter's 'stupid question'... as he jokes about DC plane crash
## 58                                                                                                                          Stephen A. Smith sends Democrats a message over trans issues after landing on 2028 President poll
## 59                                                                                                                                                      Staggering bonuses given to Costco executives for hitting DEI targets
## 60                                                                                                                                MAGA Republicans unify on three-word response to Democrats outraged about USAID destruction
## 61                                                                                                                                         Pete Hegseth FIRES top female military staffer as military gets the DOGE treatment
## 62                                                                                                                    Kevin O'Leary rips 'nuts' Costco for boldly defying Trump order after Walmart and major companies caved
## 63                                                                                                                                                                                    Costco confirms major food court change
## 64                                                        Kamala Harris, Michelle Obama and Taylor Swift all now share the same humiliation. Buckle up, liberals... you're not going to like what MAUREEN CALLAHAN has to say
## 65                                                                                                                            DOGE uncovers farcical $2.3m program training soldiers to 'speak and act in a DEI friendly' way
## 66                                                                                                                                                             Pete Hegseth orders DOGE-inspired $50 billion in Pentagon cuts
## 67                                                                                                                                 Wokest' DEI government workers revealed... along with their staggering taxpayer-funded pay
## 68                                                                                                                                   America 's wokest company Disney makes major changes to classic films as it banishes DEI
## 69                                                                                                                                                       Warren Buffett's Berkshire takes a cryptic turn under Trump's shadow
## 70                                                                                                        The six biggest takeaways from Trump's first weeks in government... and what they tell us about the next four years
## 71                                                                                                                                               Gayle King asks why there aren't more 'people of color' at Trump swearing-in
## 72                              Jessica Alves puts on a busty display in a skintight pink catsuit as she leaves the hair salon after revealing she fears for her safety amid President Trump's crackdown on 'gender ideology'
## 73                                                                                                                                              Fans slam SNL's sour Trump assassination joke: 'When am I supposed to laugh?'
## 74                                                                                                                      Donald Trump's ex Marla Maples makes appearance at 2025 Grammys as former husband is blasted by stars
## 75                                                                                                                Jake Tapper left stunned as Stephen Miller explains why Trump ordered a surprise freeze on federal spending
## 76                                                                                                                    NFL to make controversial Super Bowl decision over racism message with Donald Trump attending showpiece
## 77                                                                                                                                     NSW Premier Chris Minns quietly removes he/him pronouns from his social media accounts
## 78                                                                                                                                         USAID inspector general is fired by the White House after attacking DOGE and Trump
## 79                                                                                                                                                Costco unseated as top wholesale store by rival pushing high-tech checkouts
## 80                                                                                                                                     Woman was passed over for promotion because she was not gay, Supreme Court case claims
## 81                                                            Jessica Alves reveals she has been forced to cancel all US TV appearances over 'fears for her own safety' amid President Trump's crackdown on 'gender ideology'
## 82                                                                                                                                  Whining Elizabeth Warren gives Elon Musk a swanky new nickname while complaining on MSNBC
## 83                                                                                                                                             Bill Maher's audience goes WILD as Kid Rock drops surprising view on Democrats
## 84                                                                                                           Al Sharpton's DEI stunt backfires spectacularly after liberal icon marches in support of Costco: 'kiss of death'
## 85                                                                                                                                                     Political guru predicts Trump White House will COLLAPSE within 30 days
## 86                                                                                                                         Trump's reelection lands Army best free promotion in 15 years as recruitment swells to record high
## 87                                                                                                              Professor fuels conspiracy theories after blaming Trump for future plane crashes just HOURS before DC tragedy
## 88                                                                                                         Trump issues an ultimatum to senior FBI agents in his government purge after Kash Patel vowed to 'not go backward'
## 89                                                                                                                                  Raging Morning Joe star takes aim at Democrats as liberal circular firing squad escalates
## 90                                                                                                                                                    Bill Maher slams woke left's latest change to the Boy Scouts of America
## 91                                                                                                                                                CNN heaps shock praise on Donald Trump as he completes first week in office
## 92                                                                                                             One in five Democratic voters say Trump is doing a good job as his whirlwind start in office attracts new fans
## 93                                                                                                              The Army is BACK! Military releases new high-octane Trump-era ad... and it's a huge split from woke Biden one
## 94                                                                                                                              Trump preparing plans to dismantle the 'woke' Department of Education through executive order
## 95                                                                                                                 Trump releases message ahead of Super Bowl as he jets into New Orleans after playing golf with Tiger Woods
## 96                                                                                                                 Murdered fire captain's ex lover drops bombshell about victim's wife after cops named her as prime suspect
## 97                                                                                                                    Fox host Jesse Watters turns on Trump and DOGE for 'callous' cuts after his veteran friend got the chop
## 98                                                                                                                          Stephen A. Smith shocks Sean Hannity with brutal verdict on his former Fox colleague Pete Hegseth
## 99                                                                                                                      FAA turned away 1,000 job applicants because of its DEI rules despite staff shortages, lawsuit claims
## 100                                                          NILE GARDINER: The Donald's revitalised America could lead Britain to broad sunlit uplands - but Keir Starmer's doctrinaire socialists will blow the opportunity
## 101                                                                                                                          MAGA stars cut loose at Trump's inaugural ball as Jake Paul and Mike Tyson perform bizarre stunt
## 102                                                                                                                                                   Donald Trump finally reveals Elon Musk's real job in federal government
## 103                                                                                                             Employees fume as Trump wipes 'transgender' from CDC and deletes 'climate change' from agriculture department
## 104                                                                                                                                                                Experts reveal rating for Trump's second inaugural address
## 105                                                                                  Trump orders Treasury to stop 'producing new pennies' as he continues to target wasteful spending: 'literally cost us more than 2 cents'
## 106                                                                                                                    Trump makes dramatic pivot on stance towards the World Health Organization... days after ordering exit
## 107                                                                                                                     The View's Joy Behar suggests Trump is abolishing the penny because he's 'jealous' of past presidents
## 108                                                                                                                Donald Trump's new Transportation Secretary Sean Duffy seen performing raunchy dance in embarrassing video
## 109                                                                                                            The eye-popping amount of money Elon Musk has already slashed from the Education Department as staff melt down
## 110                     Donald Trump's America will make Harry and Meghan 'more unpopular than ever': Royal experts say new president's inauguration is a 'day of fear' for the Sussexes with their US residency under threat
## 111                                                                                                           Pam Bondi SUES Chicago over sanctuary city laws after sending DOJ into frenzy with sweeping pro-MAGA directives
## 112                                                                                Fiery moment NBC's Peter Alexander clashes with new WH press secretary Karoline Leavitt over Trump's mass deportation and spending freezes
## 113                                                                                                                  Trump amplifies attacks on 'activist' judges halting DOGE's work as Democrats fear MAGA will defy courts
## 114                                                                                                                     Melania and Ivanka's close ties to USAID exposed as Trump goes scorched-earth on the 'corrupt' agency
## 115                                                                                                                                        CNN's Scott Jennings gives liberals a blistering reality check on Elon Musk's DOGE
## 116                                                                                                                                                            Jim Acosta reignites war with Donald Trump over DC plane crash
## 117                                                                                                                                  Gay combat veteran reveals why Trump was RIGHT to ban transgender troops in the military
## 118                                                                                                                          Trump makes bombshell decision on 'DOGE dividend' - here's how much every taxpayer could receive
## 119                                                                                                                        REVEALED: Elon Musk and DOGE's final goal as it launches blitzkrieg through the federal government
## 120                                                                                                                                         The next 10 government agencies in DOGE's line of fire that ballooned under Biden
## 121                                                                                                                                Pete Hegseth reveals his top priority on his first day as Donald Trump's Defense Secretary
## 122                                                                                                               Inside Trump's plan to make it easier to fire federal employees - and agencies have just 90 days to respond
## 123                                                                               ANDREW NEIL: Trump's bombastic blizzard of an inauguration speech threatened to provoke chaos. Then a startling realisation dawned on me...
## 124                                                                             Trump signs bombshell executive order to make himself the most powerful president in history as he enacts controversial Constitutional theory
## 125                                                                                                             Madonna posts poignant message honoring Martin Luther King Jr. as President Trump is sworn in for second term
## 126                                                  Hamilton meets 'King Trump' as Lin-Manuel Miranda makes surprise SNL appearance in hilarious cold open as Timothée Chalamet is blasted for Jimmy Carter joke: 'Too soon'
## 127                                                                                                                                                 Army top brass blast Pete Hegseth in foul-mouthed rant about DEI overhaul
## 128                                                                                                                  SNL mocks return of 'King Trump' as host Timothee Chalamet delivers an off-color joke about Jimmy Carter
## 129                                                                                                                                   NCAA makes ruling on transgender athletes in women's sports after Trump executive order
## 130                                                                                                                                 Ivanka Trump unveils new inner friendship circle after being reembraced by socialite pals
## 131                                                Who ordered the runway switch minutes before the DC crash? Are DEI air traffic controllers to blame? Why did Biden's FAA chief suddenly quit? All the unanswered questions
## 132                                                                                                           British voters support raft of Donald Trump 's policies in blind polling test - but how many do YOU agree with?
## 133                                                                                                                                 Squad' member Ilhan Omar has very choice words for Dems who attended Trump 's swearing in
## 134                                                                                                                                   Trump's sweeping changes to grants and loans begins now... here's what it means for you
## 135                                                                                                                                             Black Hawk didn't follow air traffic controller's route before DC plane crash
## 136                                                                                                                    Republican senator tells DOGE to slash two sides off the Pentagon and make it a 'Trigon' to save money
## 137                                                                          SCOTT JENNINGS: America 's 'Worst Pundit' predicts Trump will collapse within 30 days... here's the glaring truth that utterly destroys his case
## 138                                                                                                  Jack Schlossberg has crude message for DOGE after JFK presidential library forced to close due to federal employee purge
## 139                                                                                                                                      CBS anchor defends ludicrous USAID spending on trans operations and atheism overseas
## 140                                                                                                           Illegal migrant raids spark civil war as teacher turns on his own STUDENTS with startling message to ICE agents
## 141                                                                                                                                 Liberal 'mean girl' cruelly trolls press secretary Karoline Leavitt and her older husband
## 142                                                                                                                   Kid Rock's shocking claim about Kendrick Lamar and Colin Kaepernick after Super Bowl 2025 halftime show
## 143                                                                                                                Elon Musk wants Trump to 'delete entire agencies' as part of his radical push to slash government spending
## 144                                                                                                       California congresswoman and her fellow liberals users blame Trump for deadly mid-air collision near Reagan airport
## 145                                                                                                                                                          Trump scores big win as John Ratcliffe confirmed as CIA director
## 146                                                                                                                      Saturday Night Live slammed after controversial comedy segment about the Trump assassination attempt
## 147                                                                                                              Trump blames media for federal funding freeze chaos and reveals move has already uncovered millions in waste
## 148                                                                                                                                           Endeavour Air slammed for 'DEI obsessed' social media after Toronto plane crash
## 149                                                             A MAGA star is born! On her first day, Trump's sparkling new press secretary Karoline Leavitt, age 27, hits the 'legacy media' with brilliantly barbed remark
## 150                                                                                                                   Terrified staff left hysterical as 'well drilled' DOGE nerds storm hyper 'woke' Department of Education
## 151                                                                                                      Moment air traffic controller screams as American Airlines plane collides with Black Hawk helicopter over Washington
## 152                                                                                FBI warns staff they are in a 'battle' as Trump purges agents who 'did their jobs in accordance with the law' and investigated Jan 6 riots
## 153                                                                                                                        Karoline Leavitt clashes with AOC over looming restraining order on Trump's federal funding freeze
## 154                                                                                                                                      DR TIM HAMES: The seven ways that Donald Trump will send shockwaves around the world
## 155                                                                                      KENNEDY: The truth of Barack Obama's hopelessly-delayed $830 million DEI nightmare of a presidential library that may never be built
## 156                                                                                                                                                                                        Trump blames DC plane crash on DEI
## 157                                                                                                                           Florida gets revenge on Target over tuck swimsuits and DEI obsession that sparked a culture war
## 158                                                                                                                                                                            DEI obliterated as Trump issues scathing order
## 159                                                                                                                                                                               Apple defies Trump's executive order on DEI
## 160                                                                                                                                                         Disgraceful reason American flag was hung upside-down in Yosemite
## 161                                                  Axe-wielding squatters, pepper spray while I walk the dog... but the scariest part of my beloved LA's descent into squalor is the celeb I'm hearing could replace Newsom
## 162                                                                                         Elon Musk's role in reshaping US revealed in subtle message that shows exactly where Trump found plan for federal workforce purge
## 163                                                                                                                                        Trump and Musk's DOGE fire team of lawyers trying to stop drunk pilots from flying
## 164                                                                                                                            Karoline Leavitt announces Trump will impose tariffs on Mexico , Canada and China this weekend
## 165                                                                                                           Elon Musk considers 'DOGE dividend' that would send $5,000 check to all Americans following massive budget cuts
## 166                                                                                                           $50M in condoms for Gaza and 'trans operas' in Colombia : The staggering foreign aid projects Trump is blocking
## 167                                                                                         Political guru James Carville's surprising advice for Democrats as minority party flails in attempt to combat Trump and Elon Musk
## 168                                                                                                             Ivanka Trump stuns in Oscar de la Renta as she hugs Lauren Sanchez during candlelight dinner in Washington DC
## 169                             If Trump really wants to bring down the price of eggs, he can start by listening to Turkey and the long-forgotten 'Stans'. Because these energy giants can cut REALLY cut the price of gas...
## 170                                                                                                                  Ice skater, 16, killed in DC plane crash pulled off ultra-rare 'triple axle' jump hours before his death
## 171                                                                                          USAID workers will be escorted to their desks and have 15 minutes to collect personal belongings from gutted agency HQ this week
## 172                                                                                                                  Head of Social Security abruptly resigns after clash with Elon Musk over DOGE's access to sensitive data
## 173                                                                                                 Musk stunned as dozens of DOGE staff suddenly QUIT with scathing letter... as eye-watering new savings figure is revealed
## 174                                                                                                                                    The four banned words in Trump's overhauled CDC that are sending workers into meltdown
## 175                                                                                                        Trump tears into lazy federal staff who work from home and warns they will be FIRED if they don't return to office
## 176                                                                                                                        Internet goes wild for hulking Special Forces agent spotted with Pete Hegseth on early morning run
## 177                                                     New footage of American Airlines crash shows doomed jet and Black Hawk helicopter's lights could be seen from over a mile away - so how did they not spot each other?
## 178                                                                                                                                                            FAA to make huge safety update after 67 died in DC plane crash
## 179                                                                                                                                                              Trump continues purge by dismantling DEI from another agency
## 180                                                                                                             Trump gifts Elon Musk the Lincoln Bedroom at the White House after turning DOGE office into sleeping quarters
## 181                                                                                                              Devastating Pennsylvania plane crash scene pics emerge as American flyers unnerved by second deadly accident
## 182                                                                                                             DOGE finds millions of instances of social security fraud in database including a 360-year-old and 'vampires'
## 183                                                                                                                         Trump drops European Union tariff bombshell as astonishing new front opens up in global trade war
## 184                                                                                                              Trump's telling remark about JD Vance 's brilliant wife Usha ... and what it reveals about America 's future
## 185                                                                                                                             What to know about Trump's first executive orders as the president renames the Gulf of Mexico
## 186                                                                                                                                                                     Trump doubles down on DEI claims after DC plane crash
## 187                                                                                                                                                                Report: Trump fires Coast Guard leader over border and DEI
## 188                                                                                                             Roseanne Barr digs at Trump's 'Special Envoy' stars... after claiming she was frozen out by MAGA inner circle
## 189                                                                                                                                                               Google scraps DEI hiring targets as big tech bends to Trump
## 190                                                                                                                    Weary GOP lawmakers lash out at 'childish' Elon Musk for drastic DOGE cuts during secret House meeting
## 191                                                                                                 Riley Gaines stunned as trans activist claims Paralympians should compete against Olympians in gender neutral competition
## 192                                      Musk savagely trolls whining federal workers as attempts to seize highly-sensitive $5 TRILLION system hits major stumbling block in emergency court hearing challenging DOGE's power
## 193                                                                                                              How Trump administration is begging federal workers to take the 'buyout' and visit their 'dream destination'
## 194                                                                                                                                    Doomed Black Hawk helicopter's call sign sparks fresh mystery following DC plane crash
## 195                                                                                                                                                           Democrats tear into Trump for blaming the DC plane crash on DEI
## 196                                                                                                                                                                              All the shocking ways USAID spent your money
## 197                                                                                                                                            CNN gives Karoline Leavitt nasty new nickname after first White House briefing
## 198                                                                                                                                                        Pete Hegseth says Trump is 'right' to blame DEI for DC plane crash
## 199                                                                RICHARD LITTLEJOHN: Trump has shocked the world by doing exactly what he promised. If only evasive, petulant Starmer would put Britain first for once, too
## 200                                                                                                                         Musk urged to abolish Planned Parenthood funding as report reveals abortion clinic horror stories
## 201                                                                                                                                                     Gov agency caught using sneaky tactic to get around Trump's DEI purge
## 202                                                                             Disney scraps woke trigger warnings on family favourites such as Dumbo and Peter Pan in a bonfire of diversity, equity and inclusion policies
## 203                                                                                                                                         Elon Musk's DOGE lieutenant's X-rated online pseudonym leaves CNN hosts flummoxed
## 204                                                                                                                                                      Target is banned from Pride parade as revenge for axing DEI policies
## 205                                                                                                                                             Coca-Cola boycott brewing amid rumors staff are 'reporting colleagues to ICE'
## 206                                                                                                                Up to 74m Americans unable to access healthcare after Trump's federal funding freeze causes Medicaid chaos
## 207                                                                                                                  Clay Travis makes shock Donald Trump ESPN prediction and says they regret being 'too left wing and woke'
## 208                                                                                                         Charlamagne Tha God gives brutal take on Vivek Ramaswamy's DOGE exit and predicts Elon Musk will 'crash and burn'
## 209            Get this numbskull off my show!' Moment furious LBC host Iain Dale orders US columnist is taken off air during row over Donald Trump's claims that diversity hiring was to blame for Washington DC plane crash
## 210                                                                                         CNN star Jake Tapper blasted for penning new book 'exposing' the cover up of Biden's health decline he 'actively participated in'
## 211                                                                                                                                 The American farmers at the heart of Trump's war with USAID who are struggling to survive
## 212                                                                                    How Obama's FAA used a skewed multiple-choice quiz to prioritize DEI applicants and bar the brightest from air traffic controller jobs
## 213                                                                                                           Swift justice for influencer who filmed herself calling for Elon Musk's murder and boasted about not paying tax
## 214                                                                                                                                       Joe Rogan exposes Biden's top 'inappropriate spending' tactic after DOGE's findings
## 215                                                                                                                          Costco plummets down list of top supermarkets as biggest customer bugbears damage its reputation
## 216                                                                                                Bill Maher eviscerates former Obama speechwriter over Dems obsession with trans issues: 'You want to lose every election?'
## 217                                                                                                             All the 'crazy' USAID programs on blast by Republicans... including a bizarre $25K drag queen show in Ecuador
## 218                                                                                                                                                Tiny rural Pennsylvania town tears itself apart over politics and pronouns
## 219                                                                                                                                                                  How America quietly funded Iraqi Sesame Street for years
## 220                                                                                                                               Diversity in the NHS means staff are now promoting 'anti-whiteness', warns Health Secretary
## 221                                                                                                                                                    Joy Reid demands Congress subpoena Elon Musk and raft of DOGE staffers
## 222                                                                                                                       Back to petroleum at last: BP's switch back to fossil fuels is a seismic U-turn, says MAGGIE PAGANO
## 223                                                                                                                                        DC plane crash widow reveals fateful choice that killed husband and saved her life
## 224                                                                                                                                  Tulsi Gabbard fires more than 100 intelligence agents over transgender sex chat messages
## 225                                                                                                            Megyn Kelly's brutal takedown of CNN pundit and her meltdown over being 'paid less than white male colleagues'
## 226                                                                                                                              Mark Zuckerberg suffers ultimate humiliation after whining to staff 'everything I say leaks'
## 227                                  Doomed Black Hawk chopper was rehearsing Trump's evacuation to a nuclear bunker when it slammed into American Airlines jet, online sleuths claim as more wild conspiracy theories emerge
## 228                                                                                     Macmillan Cancer Support is criticised for recruiting a £100k a year DEI director - despite recently axing a quarter of its workforce
## 229                                                                                                                    Karoline Leavitt throws Democrats' own words back in their faces in brutal takedown amid DOGE protests
## 230                                                                                                                             DOGE prepares gold reserve 'audit' after top Republican invites Elon Musk to review Fort Knox
## 231                                                                                                                                        Chilling 'conspiracy theory' about Black Hawk helicopter in DC plane crash is TRUE
## 232                                                                                                               Passenger onboard plane departing DC airport shows how 'crazy close' choppers fly next to commercial crafts
## 233                                                                                                        All the catastrophic mistakes that led to DC plane crash as it is revealed air traffic controller left tower early
## 234                                                                                                                                                     Woke 'plot' to axe face of Founding Father from Washington state flag
## 235                                                                                                           Wife of slain California fire captain believed to have fled to Mexico as police issue arrest warrant for murder
## 236                                                                                                                       CNN panelists at each other's throats over resigned DOGE staffer's 'racist' posts in fiery exchange
## 237                                                                                                                               Lady Gaga slammed for 'odd and meaningless' political Grammys speech: 'Hollywood is a cult'
## 238                                                                                                                                 The truth behind rumor DC crash Black Hawk co-pilot was transgender servicewoman Jo Ellis
## 239                                                                                                                                                Trump to sign order creating a new 'Iron Dome' U.S. missile defense system
## 240                                                                                                                                          Lady Gaga makes political speech about transgender community at the 2025 Grammys
## 241                                                                                                      How warnings about Black Hawk helicopter's safety systems date back decades and have been linked to dozens of deaths
## 242                                                                                                                              Critics Choice Awards 2025: Chelsea Handler ROASTS Justin Baldoni and Blake Lively in opener
## 243                                                                                                                                         MSNBC star Rachel Maddow set for courtroom humiliation over shocking on-air slurs
##     published_date publication_location publication_4 publication_type_5 length
## 1       2025-01-22        International    MailOnline               News    549
## 2       2025-01-22        International    MailOnline               News    531
## 3       2025-02-06        International    MailOnline               News   1041
## 4       2025-02-03        International    MailOnline               News    684
## 5       2025-02-25        International    MailOnline               News    669
## 6       2025-01-24        International    MailOnline               News    841
## 7       2025-01-30        International    MailOnline               News    737
## 8       2025-02-03        International    MailOnline               News    495
## 9       2025-01-30        International    MailOnline               News   1237
## 10      2025-01-30        International    MailOnline               News    710
## 11      2025-01-22        International    MailOnline               News   1065
## 12      2025-02-01        International    MailOnline               News    694
## 13      2025-01-27        International    MailOnline               News    472
## 14      2025-01-30        International    MailOnline               News    745
## 15      2025-02-02        International    MailOnline               News    643
## 16      2025-02-03        International    MailOnline               News    660
## 17      2025-01-31        International    MailOnline               News    494
## 18      2025-02-03        International    MailOnline               News    546
## 19      2025-01-30        International    MailOnline               News    512
## 20      2025-01-30        International    MailOnline               News   1737
## 21      2025-02-12        International    MailOnline               News    767
## 22      2025-01-27        International    MailOnline               News    757
## 23      2025-01-31        International    MailOnline               News    486
## 24      2025-01-30        International    MailOnline               News    775
## 25      2025-01-21        International    MailOnline               News    707
## 26      2025-02-03        International    MailOnline               News    697
## 27      2025-01-22        International    MailOnline               News   1439
## 28      2025-01-21        International    MailOnline               News    529
## 29      2025-02-06        International    MailOnline               News    590
## 30      2025-01-29        International    MailOnline               News    983
## 31      2025-02-26        International    MailOnline               News    366
## 32      2025-01-23        International    MailOnline               News    899
## 33      2025-01-26        International    MailOnline               News    760
## 34      2025-01-23        International    MailOnline               News    997
## 35      2025-02-18        International    MailOnline               News   1309
## 36      2025-01-31        International    MailOnline               News    591
## 37      2025-02-01        International    MailOnline               News    939
## 38      2025-01-29        International    MailOnline               News    465
## 39      2025-02-26        International    MailOnline               News    895
## 40      2025-02-25        International    MailOnline               News    899
## 41      2025-02-26        International    MailOnline               News    629
## 42      2025-01-28        International    MailOnline               News   1233
## 43      2025-01-30        International    MailOnline               News    259
## 44      2025-01-21        International    MailOnline               News    682
## 45      2025-02-01        International    MailOnline               News    757
## 46      2025-02-06        International    MailOnline               News    581
## 47      2025-01-24        International    MailOnline               News   1487
## 48      2025-02-19        International    MailOnline               News    408
## 49      2025-01-31        International    MailOnline               News   1444
## 50      2025-01-24        International    MailOnline               News    805
## 51      2025-01-23        International    MailOnline               News    921
## 52      2025-02-18        International    MailOnline               News    676
## 53      2025-02-17        International    MailOnline               News   1053
## 54      2025-02-04        International    MailOnline               News    731
## 55      2025-01-28        International    MailOnline               News    749
## 56      2025-01-28        International    MailOnline               News    855
## 57      2025-02-01        International    MailOnline               News    772
## 58      2025-01-30        International    MailOnline               News    699
## 59      2025-02-07        International    MailOnline               News    423
## 60      2025-02-05        International    MailOnline               News    669
## 61      2025-02-23        International    MailOnline               News    687
## 62      2025-02-02        International    MailOnline               News    718
## 63      2025-01-27        International    MailOnline               News    581
## 64      2025-02-13        International    MailOnline               News   1286
## 65      2025-02-10        International    MailOnline               News    707
## 66      2025-02-20        International    MailOnline               News    513
## 67      2025-02-05        International    MailOnline               News   1422
## 68      2025-02-12        International    MailOnline               News    972
## 69      2025-02-23        International    MailOnline               News    519
## 70      2025-01-31        International    MailOnline               News   2164
## 71      2025-01-20        International    MailOnline               News    559
## 72      2025-02-26        International    MailOnline               News    625
## 73      2025-01-26        International    MailOnline               News    373
## 74      2025-02-03        International    MailOnline               News    977
## 75      2025-01-29        International    MailOnline               News    755
## 76      2025-02-04        International    MailOnline               News    561
## 77      2025-02-02        International    MailOnline               News    571
## 78      2025-02-12        International    MailOnline               News    426
## 79      2025-01-28        International    MailOnline               News    519
## 80      2025-02-24        International    MailOnline               News   1053
## 81      2025-01-24        International    MailOnline               News    777
## 82      2025-02-06        International    MailOnline               News    955
## 83      2025-02-15        International    MailOnline               News    486
## 84      2025-01-26        International    MailOnline               News    721
## 85      2025-02-23        International    MailOnline               News    540
## 86      2025-02-05        International    MailOnline               News    736
## 87      2025-01-30        International    MailOnline               News    902
## 88      2025-01-31        International    MailOnline               News    531
## 89      2025-01-31        International    MailOnline               News   1127
## 90      2025-02-15        International    MailOnline               News    730
## 91      2025-01-24        International    MailOnline               News    595
## 92      2025-02-10        International    MailOnline               News    501
## 93      2025-02-13        International    MailOnline               News    983
## 94      2025-02-03        International    MailOnline               News    664
## 95      2025-02-09        International    MailOnline               News    523
## 96      2025-02-21        International    MailOnline               News    864
## 97      2025-02-20        International    MailOnline               News    977
## 98      2025-02-05        International    MailOnline               News    771
## 99      2025-02-01        International    MailOnline               News    763
## 100     2025-01-22        International    MailOnline               News   1392
## 101     2025-01-21        International    MailOnline               News    654
## 102     2025-02-19        International    MailOnline               News    656
## 103     2025-01-31        International    MailOnline               News    543
## 104     2025-01-20        International    MailOnline               News    751
## 105     2025-02-10        International    MailOnline               News    533
## 106     2025-01-25        International    MailOnline               News    662
## 107     2025-02-12        International    MailOnline               News    639
## 108     2025-02-03        International    MailOnline               News    830
## 109     2025-02-12        International    MailOnline               News    380
## 110     2025-01-20        International    MailOnline               News   3345
## 111     2025-02-06        International    MailOnline               News   1880
## 112     2025-01-29        International    MailOnline               News   1552
## 113     2025-02-12        International    MailOnline               News    779
## 114     2025-02-06        International    MailOnline               News    828
## 115     2025-02-06        International    MailOnline               News    711
## 116     2025-01-30        International    MailOnline               News    709
## 117     2025-01-28        International    MailOnline               News   1174
## 118     2025-02-20        International    MailOnline               News    680
## 119     2025-02-09        International    MailOnline               News    502
## 120     2025-02-14        International    MailOnline               News    839
## 121     2025-01-27        International    MailOnline               News    598
## 122     2025-01-28        International    MailOnline               News    916
## 123     2025-01-20        International    MailOnline               News    754
## 124     2025-02-19        International    MailOnline               News    921
## 125     2025-01-21        International    MailOnline               News    801
## 126     2025-01-26        International    MailOnline               News    720
## 127     2025-02-11        International    MailOnline               News    537
## 128     2025-01-26        International    MailOnline               News    719
## 129     2025-02-06        International    MailOnline               News    703
## 130     2025-02-19        International    MailOnline               News    846
## 131     2025-01-30        International    MailOnline               News   1499
## 132     2025-01-27        International    MailOnline               News    767
## 133     2025-01-20        International    MailOnline               News    725
## 134     2025-01-28        International    MailOnline               News   1244
## 135     2025-02-01        International    MailOnline               News    813
## 136     2025-02-27        International    MailOnline               News    399
## 137     2025-02-24        International    MailOnline               News    914
## 138     2025-02-19        International    MailOnline               News    625
## 139     2025-02-03        International    MailOnline               News    825
## 140     2025-01-26        International    MailOnline               News    816
## 141     2025-02-04        International    MailOnline               News   1166
## 142     2025-02-15        International    MailOnline               News    452
## 143     2025-02-13        International    MailOnline               News    614
## 144     2025-01-30        International    MailOnline               News    828
## 145     2025-01-21        International    MailOnline               News    560
## 146     2025-01-27        International    MailOnline               News   1036
## 147     2025-01-29        International    MailOnline               News    716
## 148     2025-02-19        International    MailOnline               News    529
## 149     2025-01-28        International    MailOnline               News    798
## 150     2025-02-11        International    MailOnline               News    619
## 151     2025-01-31        International    MailOnline               News   2228
## 152     2025-02-03        International    MailOnline               News   1097
## 153     2025-01-30        International    MailOnline               News    578
## 154     2025-01-20        International    MailOnline               News   2197
## 155     2025-02-07        International    MailOnline               News    883
## 156     2025-01-30        International    MailOnline               News      5
## 157     2025-02-21        International    MailOnline               News    914
## 158     2025-01-22        International    MailOnline               News      7
## 159     2025-02-25        International    MailOnline               News      7
## 160     2025-02-25        International    MailOnline               News    707
## 161     2025-02-21        International    MailOnline               News   1565
## 162     2025-01-29        International    MailOnline               News    870
## 163     2025-02-22        International    MailOnline               News   1157
## 164     2025-01-31        International    MailOnline               News   1326
## 165     2025-02-19        International    MailOnline               News    580
## 166     2025-01-28        International    MailOnline               News    673
## 167     2025-02-18        International    MailOnline               News   1011
## 168     2025-01-20        International    MailOnline               News   1423
## 169     2025-02-28        International    MailOnline               News   1236
## 170     2025-01-31        International    MailOnline               News    599
## 171     2025-02-26        International    MailOnline               News   1491
## 172     2025-02-18        International    MailOnline               News    924
## 173     2025-02-25        International    MailOnline               News    575
## 174     2025-02-03        International    MailOnline               News   1156
## 175     2025-01-29        International    MailOnline               News   1491
## 176     2025-02-11        International    MailOnline               News    827
## 177     2025-01-31        International    MailOnline               News   1667
## 178     2025-02-06        International    MailOnline               News    993
## 179     2025-01-22        International    MailOnline               News     10
## 180     2025-01-30        International    MailOnline               News    928
## 181     2025-02-01        International    MailOnline               News    725
## 182     2025-02-17        International    MailOnline               News    672
## 183     2025-01-31        International    MailOnline               News   1649
## 184     2025-01-25        International    MailOnline               News   1053
## 185     2025-01-20        International    MailOnline               News   3850
## 186     2025-01-31        International    MailOnline               News      8
## 187     2025-01-21        International    MailOnline               News      9
## 188     2025-02-05        International    MailOnline               News   1285
## 189     2025-02-06        International    MailOnline               News      9
## 190     2025-02-25        International    MailOnline               News    723
## 191     2025-02-22        International    MailOnline               News    449
## 192     2025-02-06        International    MailOnline               News    953
## 193     2025-01-31        International    MailOnline               News    900
## 194     2025-01-30        International    MailOnline               News    914
## 195     2025-01-31        International    MailOnline               News     10
## 196     2025-02-03        International    MailOnline               News    981
## 197     2025-01-29        International    MailOnline               News    890
## 198     2025-01-31        International    MailOnline               News     11
## 199     2025-02-07        International    MailOnline               News   1850
## 200     2025-02-20        International    MailOnline               News    822
## 201     2025-01-23        International    MailOnline               News     11
## 202     2025-02-12        International    MailOnline               News    481
## 203     2025-02-07        International    MailOnline               News    989
## 204     2025-01-27        International    MailOnline               News    734
## 205     2025-02-13        International    MailOnline               News    468
## 206     2025-01-28        International    MailOnline               News    880
## 207     2025-01-24        International    MailOnline               News    762
## 208     2025-01-29        International    MailOnline               News   1257
## 209     2025-01-31        International    MailOnline               News   1671
## 210     2025-02-26        International    MailOnline               News   1536
## 211     2025-02-11        International    MailOnline               News   2448
## 212     2025-02-14        International    MailOnline               News   1502
## 213     2025-02-26        International    MailOnline               News   1196
## 214     2025-02-11        International    MailOnline               News   1289
## 215     2025-02-10        International    MailOnline               News    668
## 216     2025-02-24        International    MailOnline               News    636
## 217     2025-02-13        International    MailOnline               News    691
## 218     2025-02-23        International    MailOnline               News    734
## 219     2025-02-11        International    MailOnline               News    750
## 220     2025-02-04        International    MailOnline               News    917
## 221     2025-02-11        International    MailOnline               News    469
## 222     2025-02-26        International    MailOnline               News    732
## 223     2025-01-30        International    MailOnline               News    764
## 224     2025-02-26        International    MailOnline               News    541
## 225     2025-02-07        International    MailOnline               News    526
## 226     2025-01-31        International    MailOnline               News    884
## 227     2025-01-31        International    MailOnline               News   1232
## 228     2025-02-20        International    MailOnline               News    641
## 229     2025-02-17        International    MailOnline               News    578
## 230     2025-02-16        International    MailOnline               News    592
## 231     2025-01-31        International    MailOnline               News    604
## 232     2025-01-30        International    MailOnline               News    578
## 233     2025-01-31        International    MailOnline               News   1716
## 234     2025-02-17        International    MailOnline               News    666
## 235     2025-02-28        International    MailOnline               News   1270
## 236     2025-02-08        International    MailOnline               News    652
## 237     2025-02-03        International    MailOnline               News    676
## 238     2025-01-31        International    MailOnline               News    635
## 239     2025-01-27        International    MailOnline               News   1471
## 240     2025-02-03        International    MailOnline               News    777
## 241     2025-01-30        International    MailOnline               News   1178
## 242     2025-02-08        International    MailOnline               News   2684
## 243     2025-02-21        International    MailOnline               News   1436
##                        section word_count
## 1               NEWS;Version:1        549
## 2              MEDIA;Version:1        531
## 3               NEWS;Version:1       1041
## 4              MEDIA;Version:2        684
## 5              MONEY;Version:1        669
## 6               NEWS;Version:1        841
## 7               NEWS;Version:2        737
## 8               NEWS;Version:4        495
## 9              NEWS;Version:12       1237
## 10              NEWS;Version:3        710
## 11             NEWS;Version:14       1065
## 12             MEDIA;Version:1        694
## 13              NEWS;Version:5        472
## 14              NEWS;Version:2        745
## 15              NEWS;Version:1        643
## 16              NEWS;Version:1        660
## 17              NEWS;Version:1        494
## 18              NEWS;Version:4        546
## 19              NEWS;Version:1        512
## 20              NEWS;Version:1       1737
## 21             MEDIA;Version:4        767
## 22              NEWS;Version:3        757
## 23              NEWS;Version:4        486
## 24              NEWS;Version:7        775
## 25              NEWS;Version:2        707
## 26              NEWS;Version:1        697
## 27              NEWS;Version:1       1439
## 28              NEWS;Version:4        529
## 29              NEWS;Version:3        590
## 30              NEWS;Version:1        983
## 31              NEWS;Version:1        366
## 32              NEWS;Version:2        899
## 33             MEDIA;Version:2        760
## 34           SHOWBIZ;Version:1        997
## 35              NEWS;Version:1       1309
## 36              NEWS;Version:1        591
## 37              NEWS;Version:1        939
## 38              NEWS;Version:2        465
## 39          SNAPCHAT;Version:1        895
## 40              NEWS;Version:2        899
## 41              NEWS;Version:2        629
## 42              NEWS;Version:1       1233
## 43             MEDIA;Version:1        259
## 44              NEWS;Version:4        682
## 45             MEDIA;Version:1        757
## 46             MEDIA;Version:2        581
## 47              NEWS;Version:2       1487
## 48              NEWS;Version:1        408
## 49              NEWS;Version:1       1444
## 50          CONSUMER;Version:2        805
## 51           SCIENCE;Version:1        921
## 52              NEWS;Version:1        676
## 53              NEWS;Version:9       1053
## 54               NFL;Version:1        731
## 55          CONSUMER;Version:1        749
## 56              NEWS;Version:6        855
## 57              NEWS;Version:3        772
## 58      OTHER SPORTS;Version:2        699
## 59              NEWS;Version:1        423
## 60              NEWS;Version:1        669
## 61              NEWS;Version:1        687
## 62             MONEY;Version:3        718
## 63          CONSUMER;Version:1        581
## 64              NEWS;Version:1       1286
## 65              NEWS;Version:1        707
## 66              NEWS;Version:1        513
## 67              NEWS;Version:2       1422
## 68              NEWS;Version:1        972
## 69             MONEY;Version:1        519
## 70              NEWS;Version:1       2164
## 71             MEDIA;Version:2        559
## 72           SHOWBIZ;Version:1        625
## 73              NEWS;Version:1        373
## 74           SHOWBIZ;Version:2        977
## 75             MEDIA;Version:2        755
## 76               NFL;Version:1        561
## 77              NEWS;Version:1        571
## 78              NEWS;Version:3        426
## 79          CONSUMER;Version:2        519
## 80              NEWS;Version:1       1053
## 81           SHOWBIZ;Version:5        777
## 82              NEWS;Version:1        955
## 83             MEDIA;Version:1        486
## 84              NEWS;Version:2        721
## 85             MEDIA;Version:5        540
## 86              NEWS;Version:4        736
## 87              NEWS;Version:1        902
## 88              NEWS;Version:1        531
## 89             MEDIA;Version:2       1127
## 90             MEDIA;Version:1        730
## 91             MEDIA;Version:1        595
## 92              NEWS;Version:1        501
## 93              NEWS;Version:1        983
## 94              NEWS;Version:2        664
## 95              NEWS;Version:1        523
## 96              NEWS;Version:3        864
## 97             MEDIA;Version:3        977
## 98              NEWS;Version:1        771
## 99              NEWS;Version:1        763
## 100           DEBATE;Version:1       1392
## 101             NEWS;Version:1        654
## 102             NEWS;Version:1        656
## 103           HEALTH;Version:1        543
## 104             NEWS;Version:1        751
## 105             NEWS;Version:1        533
## 106             NEWS;Version:2        662
## 107            MEDIA;Version:1        639
## 108             NEWS;Version:4        830
## 109             NEWS;Version:1        380
## 110             NEWS;Version:3       3345
## 111             NEWS;Version:6       1880
## 112             NEWS;Version:1       1552
## 113             NEWS;Version:1        779
## 114             NEWS;Version:1        828
## 115            MEDIA;Version:4        711
## 116            MEDIA;Version:2        709
## 117             NEWS;Version:1       1174
## 118             NEWS;Version:6        680
## 119             NEWS;Version:1        502
## 120             NEWS;Version:1        839
## 121             NEWS;Version:1        598
## 122             NEWS;Version:2        916
## 123             NEWS;Version:2        754
## 124             NEWS;Version:6        921
## 125          SHOWBIZ;Version:2        801
## 126             NEWS;Version:1        720
## 127             NEWS;Version:1        537
## 128         SNAPCHAT;Version:1        719
## 129     OTHER SPORTS;Version:1        703
## 130           FEMAIL;Version:2        846
## 131             NEWS;Version:3       1499
## 132             NEWS;Version:1        767
## 133             NEWS;Version:1        725
## 134             NEWS;Version:1       1244
## 135             NEWS;Version:1        813
## 136             NEWS;Version:1        399
## 137             NEWS;Version:3        914
## 138             NEWS;Version:4        625
## 139            MEDIA;Version:1        825
## 140             NEWS;Version:4        816
## 141             NEWS;Version:1       1166
## 142              NFL;Version:2        452
## 143             NEWS;Version:1        614
## 144             NEWS;Version:1        828
## 145             NEWS;Version:1        560
## 146         SNAPCHAT;Version:1       1036
## 147            NEWS;Version:10        716
## 148             NEWS;Version:1        529
## 149             NEWS;Version:1        798
## 150             NEWS;Version:6        619
## 151             NEWS;Version:5       2228
## 152             NEWS;Version:1       1097
## 153             NEWS;Version:1        578
## 154             NEWS;Version:1       2197
## 155             NEWS;Version:4        883
## 156        GALLERIES;Version:1          5
## 157             NEWS;Version:1        914
## 158        GALLERIES;Version:1          7
## 159        GALLERIES;Version:1          7
## 160          SCIENCE;Version:1        707
## 161             NEWS;Version:1       1565
## 162             NEWS;Version:1        870
## 163             NEWS;Version:1       1157
## 164            NEWS;Version:10       1326
## 165             NEWS;Version:1        580
## 166             NEWS;Version:1        673
## 167             NEWS;Version:1       1011
## 168             NEWS;Version:7       1423
## 169             NEWS;Version:1       1236
## 170             NEWS;Version:1        599
## 171             NEWS;Version:1       1491
## 172             NEWS;Version:1        924
## 173             NEWS;Version:1        575
## 174           HEALTH;Version:1       1156
## 175             NEWS;Version:1       1491
## 176             NEWS;Version:2        827
## 177             NEWS;Version:2       1667
## 178             NEWS;Version:4        993
## 179        GALLERIES;Version:2         10
## 180             NEWS;Version:2        928
## 181             NEWS;Version:1        725
## 182             NEWS;Version:4        672
## 183             NEWS;Version:6       1649
## 184             NEWS;Version:2       1053
## 185            NEWS;Version:15       3850
## 186        GALLERIES;Version:1          8
## 187        GALLERIES;Version:1          9
## 188          SHOWBIZ;Version:1       1285
## 189        GALLERIES;Version:1          9
## 190             NEWS;Version:1        723
## 191     OTHER SPORTS;Version:1        449
## 192             NEWS;Version:4        953
## 193             NEWS;Version:1        900
## 194             NEWS;Version:1        914
## 195        GALLERIES;Version:1         10
## 196             NEWS;Version:5        981
## 197            MEDIA;Version:3        890
## 198        GALLERIES;Version:1         11
## 199           DEBATE;Version:1       1850
## 200             NEWS;Version:3        822
## 201        GALLERIES;Version:1         11
## 202             NEWS;Version:2        481
## 203            MEDIA;Version:1        989
## 204             NEWS;Version:1        734
## 205             NEWS;Version:1        468
## 206           HEALTH;Version:1        880
## 207 COLLEGE FOOTBALL;Version:1        762
## 208            MEDIA;Version:2       1257
## 209             NEWS;Version:1       1671
## 210            MEDIA;Version:7       1536
## 211             NEWS;Version:2       2448
## 212             NEWS;Version:1       1502
## 213             NEWS;Version:1       1196
## 214             NEWS;Version:3       1289
## 215            MONEY;Version:1        668
## 216             NEWS;Version:4        636
## 217             NEWS;Version:1        691
## 218      REAL ESTATE;Version:1        734
## 219             NEWS;Version:1        750
## 220             NEWS;Version:1        917
## 221             NEWS;Version:1        469
## 222          COMMENT;Version:1        732
## 223             NEWS;Version:1        764
## 224             NEWS;Version:1        541
## 225            MEDIA;Version:2        526
## 226             NEWS;Version:1        884
## 227             NEWS;Version:1       1232
## 228             NEWS;Version:1        641
## 229             NEWS;Version:2        578
## 230             NEWS;Version:5        592
## 231             NEWS;Version:1        604
## 232             NEWS;Version:3        578
## 233             NEWS;Version:4       1716
## 234             NEWS;Version:1        666
## 235             NEWS;Version:2       1270
## 236            MEDIA;Version:1        652
## 237          SHOWBIZ;Version:2        676
## 238             NEWS;Version:5        635
## 239             NEWS;Version:1       1471
## 240          SHOWBIZ;Version:5        777
## 241          SCIENCE;Version:1       1178
## 242         SHOWBIZ;Version:18       2684
## 243            MEDIA;Version:1       1436
##                                                countries
## 1   United Kingdom of Great Britain and Northern Ireland
## 2   United Kingdom of Great Britain and Northern Ireland
## 3   United Kingdom of Great Britain and Northern Ireland
## 4   United Kingdom of Great Britain and Northern Ireland
## 5   United Kingdom of Great Britain and Northern Ireland
## 6   United Kingdom of Great Britain and Northern Ireland
## 7   United Kingdom of Great Britain and Northern Ireland
## 8   United Kingdom of Great Britain and Northern Ireland
## 9   United Kingdom of Great Britain and Northern Ireland
## 10  United Kingdom of Great Britain and Northern Ireland
## 11  United Kingdom of Great Britain and Northern Ireland
## 12  United Kingdom of Great Britain and Northern Ireland
## 13  United Kingdom of Great Britain and Northern Ireland
## 14  United Kingdom of Great Britain and Northern Ireland
## 15  United Kingdom of Great Britain and Northern Ireland
## 16  United Kingdom of Great Britain and Northern Ireland
## 17  United Kingdom of Great Britain and Northern Ireland
## 18  United Kingdom of Great Britain and Northern Ireland
## 19  United Kingdom of Great Britain and Northern Ireland
## 20  United Kingdom of Great Britain and Northern Ireland
## 21  United Kingdom of Great Britain and Northern Ireland
## 22  United Kingdom of Great Britain and Northern Ireland
## 23  United Kingdom of Great Britain and Northern Ireland
## 24  United Kingdom of Great Britain and Northern Ireland
## 25  United Kingdom of Great Britain and Northern Ireland
## 26  United Kingdom of Great Britain and Northern Ireland
## 27  United Kingdom of Great Britain and Northern Ireland
## 28  United Kingdom of Great Britain and Northern Ireland
## 29  United Kingdom of Great Britain and Northern Ireland
## 30  United Kingdom of Great Britain and Northern Ireland
## 31  United Kingdom of Great Britain and Northern Ireland
## 32  United Kingdom of Great Britain and Northern Ireland
## 33  United Kingdom of Great Britain and Northern Ireland
## 34  United Kingdom of Great Britain and Northern Ireland
## 35  United Kingdom of Great Britain and Northern Ireland
## 36  United Kingdom of Great Britain and Northern Ireland
## 37  United Kingdom of Great Britain and Northern Ireland
## 38  United Kingdom of Great Britain and Northern Ireland
## 39  United Kingdom of Great Britain and Northern Ireland
## 40  United Kingdom of Great Britain and Northern Ireland
## 41  United Kingdom of Great Britain and Northern Ireland
## 42  United Kingdom of Great Britain and Northern Ireland
## 43  United Kingdom of Great Britain and Northern Ireland
## 44  United Kingdom of Great Britain and Northern Ireland
## 45  United Kingdom of Great Britain and Northern Ireland
## 46  United Kingdom of Great Britain and Northern Ireland
## 47  United Kingdom of Great Britain and Northern Ireland
## 48  United Kingdom of Great Britain and Northern Ireland
## 49  United Kingdom of Great Britain and Northern Ireland
## 50  United Kingdom of Great Britain and Northern Ireland
## 51  United Kingdom of Great Britain and Northern Ireland
## 52  United Kingdom of Great Britain and Northern Ireland
## 53  United Kingdom of Great Britain and Northern Ireland
## 54  United Kingdom of Great Britain and Northern Ireland
## 55  United Kingdom of Great Britain and Northern Ireland
## 56  United Kingdom of Great Britain and Northern Ireland
## 57  United Kingdom of Great Britain and Northern Ireland
## 58  United Kingdom of Great Britain and Northern Ireland
## 59  United Kingdom of Great Britain and Northern Ireland
## 60  United Kingdom of Great Britain and Northern Ireland
## 61  United Kingdom of Great Britain and Northern Ireland
## 62  United Kingdom of Great Britain and Northern Ireland
## 63  United Kingdom of Great Britain and Northern Ireland
## 64  United Kingdom of Great Britain and Northern Ireland
## 65  United Kingdom of Great Britain and Northern Ireland
## 66  United Kingdom of Great Britain and Northern Ireland
## 67  United Kingdom of Great Britain and Northern Ireland
## 68  United Kingdom of Great Britain and Northern Ireland
## 69  United Kingdom of Great Britain and Northern Ireland
## 70  United Kingdom of Great Britain and Northern Ireland
## 71  United Kingdom of Great Britain and Northern Ireland
## 72  United Kingdom of Great Britain and Northern Ireland
## 73  United Kingdom of Great Britain and Northern Ireland
## 74  United Kingdom of Great Britain and Northern Ireland
## 75  United Kingdom of Great Britain and Northern Ireland
## 76  United Kingdom of Great Britain and Northern Ireland
## 77  United Kingdom of Great Britain and Northern Ireland
## 78  United Kingdom of Great Britain and Northern Ireland
## 79  United Kingdom of Great Britain and Northern Ireland
## 80  United Kingdom of Great Britain and Northern Ireland
## 81  United Kingdom of Great Britain and Northern Ireland
## 82  United Kingdom of Great Britain and Northern Ireland
## 83  United Kingdom of Great Britain and Northern Ireland
## 84  United Kingdom of Great Britain and Northern Ireland
## 85  United Kingdom of Great Britain and Northern Ireland
## 86  United Kingdom of Great Britain and Northern Ireland
## 87  United Kingdom of Great Britain and Northern Ireland
## 88  United Kingdom of Great Britain and Northern Ireland
## 89  United Kingdom of Great Britain and Northern Ireland
## 90  United Kingdom of Great Britain and Northern Ireland
## 91  United Kingdom of Great Britain and Northern Ireland
## 92  United Kingdom of Great Britain and Northern Ireland
## 93  United Kingdom of Great Britain and Northern Ireland
## 94  United Kingdom of Great Britain and Northern Ireland
## 95  United Kingdom of Great Britain and Northern Ireland
## 96  United Kingdom of Great Britain and Northern Ireland
## 97  United Kingdom of Great Britain and Northern Ireland
## 98  United Kingdom of Great Britain and Northern Ireland
## 99  United Kingdom of Great Britain and Northern Ireland
## 100 United Kingdom of Great Britain and Northern Ireland
## 101 United Kingdom of Great Britain and Northern Ireland
## 102 United Kingdom of Great Britain and Northern Ireland
## 103 United Kingdom of Great Britain and Northern Ireland
## 104 United Kingdom of Great Britain and Northern Ireland
## 105 United Kingdom of Great Britain and Northern Ireland
## 106 United Kingdom of Great Britain and Northern Ireland
## 107 United Kingdom of Great Britain and Northern Ireland
## 108 United Kingdom of Great Britain and Northern Ireland
## 109 United Kingdom of Great Britain and Northern Ireland
## 110 United Kingdom of Great Britain and Northern Ireland
## 111 United Kingdom of Great Britain and Northern Ireland
## 112 United Kingdom of Great Britain and Northern Ireland
## 113 United Kingdom of Great Britain and Northern Ireland
## 114 United Kingdom of Great Britain and Northern Ireland
## 115 United Kingdom of Great Britain and Northern Ireland
## 116 United Kingdom of Great Britain and Northern Ireland
## 117 United Kingdom of Great Britain and Northern Ireland
## 118 United Kingdom of Great Britain and Northern Ireland
## 119 United Kingdom of Great Britain and Northern Ireland
## 120 United Kingdom of Great Britain and Northern Ireland
## 121 United Kingdom of Great Britain and Northern Ireland
## 122 United Kingdom of Great Britain and Northern Ireland
## 123 United Kingdom of Great Britain and Northern Ireland
## 124 United Kingdom of Great Britain and Northern Ireland
## 125 United Kingdom of Great Britain and Northern Ireland
## 126 United Kingdom of Great Britain and Northern Ireland
## 127 United Kingdom of Great Britain and Northern Ireland
## 128 United Kingdom of Great Britain and Northern Ireland
## 129 United Kingdom of Great Britain and Northern Ireland
## 130 United Kingdom of Great Britain and Northern Ireland
## 131 United Kingdom of Great Britain and Northern Ireland
## 132 United Kingdom of Great Britain and Northern Ireland
## 133 United Kingdom of Great Britain and Northern Ireland
## 134 United Kingdom of Great Britain and Northern Ireland
## 135 United Kingdom of Great Britain and Northern Ireland
## 136 United Kingdom of Great Britain and Northern Ireland
## 137 United Kingdom of Great Britain and Northern Ireland
## 138 United Kingdom of Great Britain and Northern Ireland
## 139 United Kingdom of Great Britain and Northern Ireland
## 140 United Kingdom of Great Britain and Northern Ireland
## 141 United Kingdom of Great Britain and Northern Ireland
## 142 United Kingdom of Great Britain and Northern Ireland
## 143 United Kingdom of Great Britain and Northern Ireland
## 144 United Kingdom of Great Britain and Northern Ireland
## 145 United Kingdom of Great Britain and Northern Ireland
## 146 United Kingdom of Great Britain and Northern Ireland
## 147 United Kingdom of Great Britain and Northern Ireland
## 148 United Kingdom of Great Britain and Northern Ireland
## 149 United Kingdom of Great Britain and Northern Ireland
## 150 United Kingdom of Great Britain and Northern Ireland
## 151 United Kingdom of Great Britain and Northern Ireland
## 152 United Kingdom of Great Britain and Northern Ireland
## 153 United Kingdom of Great Britain and Northern Ireland
## 154 United Kingdom of Great Britain and Northern Ireland
## 155 United Kingdom of Great Britain and Northern Ireland
## 156 United Kingdom of Great Britain and Northern Ireland
## 157 United Kingdom of Great Britain and Northern Ireland
## 158 United Kingdom of Great Britain and Northern Ireland
## 159 United Kingdom of Great Britain and Northern Ireland
## 160 United Kingdom of Great Britain and Northern Ireland
## 161 United Kingdom of Great Britain and Northern Ireland
## 162 United Kingdom of Great Britain and Northern Ireland
## 163 United Kingdom of Great Britain and Northern Ireland
## 164 United Kingdom of Great Britain and Northern Ireland
## 165 United Kingdom of Great Britain and Northern Ireland
## 166 United Kingdom of Great Britain and Northern Ireland
## 167 United Kingdom of Great Britain and Northern Ireland
## 168 United Kingdom of Great Britain and Northern Ireland
## 169 United Kingdom of Great Britain and Northern Ireland
## 170 United Kingdom of Great Britain and Northern Ireland
## 171 United Kingdom of Great Britain and Northern Ireland
## 172 United Kingdom of Great Britain and Northern Ireland
## 173 United Kingdom of Great Britain and Northern Ireland
## 174 United Kingdom of Great Britain and Northern Ireland
## 175 United Kingdom of Great Britain and Northern Ireland
## 176 United Kingdom of Great Britain and Northern Ireland
## 177 United Kingdom of Great Britain and Northern Ireland
## 178 United Kingdom of Great Britain and Northern Ireland
## 179 United Kingdom of Great Britain and Northern Ireland
## 180 United Kingdom of Great Britain and Northern Ireland
## 181 United Kingdom of Great Britain and Northern Ireland
## 182 United Kingdom of Great Britain and Northern Ireland
## 183 United Kingdom of Great Britain and Northern Ireland
## 184 United Kingdom of Great Britain and Northern Ireland
## 185 United Kingdom of Great Britain and Northern Ireland
## 186 United Kingdom of Great Britain and Northern Ireland
## 187 United Kingdom of Great Britain and Northern Ireland
## 188 United Kingdom of Great Britain and Northern Ireland
## 189 United Kingdom of Great Britain and Northern Ireland
## 190 United Kingdom of Great Britain and Northern Ireland
## 191 United Kingdom of Great Britain and Northern Ireland
## 192 United Kingdom of Great Britain and Northern Ireland
## 193 United Kingdom of Great Britain and Northern Ireland
## 194 United Kingdom of Great Britain and Northern Ireland
## 195 United Kingdom of Great Britain and Northern Ireland
## 196 United Kingdom of Great Britain and Northern Ireland
## 197 United Kingdom of Great Britain and Northern Ireland
## 198 United Kingdom of Great Britain and Northern Ireland
## 199 United Kingdom of Great Britain and Northern Ireland
## 200 United Kingdom of Great Britain and Northern Ireland
## 201 United Kingdom of Great Britain and Northern Ireland
## 202 United Kingdom of Great Britain and Northern Ireland
## 203 United Kingdom of Great Britain and Northern Ireland
## 204 United Kingdom of Great Britain and Northern Ireland
## 205 United Kingdom of Great Britain and Northern Ireland
## 206 United Kingdom of Great Britain and Northern Ireland
## 207 United Kingdom of Great Britain and Northern Ireland
## 208 United Kingdom of Great Britain and Northern Ireland
## 209 United Kingdom of Great Britain and Northern Ireland
## 210 United Kingdom of Great Britain and Northern Ireland
## 211 United Kingdom of Great Britain and Northern Ireland
## 212 United Kingdom of Great Britain and Northern Ireland
## 213 United Kingdom of Great Britain and Northern Ireland
## 214 United Kingdom of Great Britain and Northern Ireland
## 215 United Kingdom of Great Britain and Northern Ireland
## 216 United Kingdom of Great Britain and Northern Ireland
## 217 United Kingdom of Great Britain and Northern Ireland
## 218 United Kingdom of Great Britain and Northern Ireland
## 219 United Kingdom of Great Britain and Northern Ireland
## 220 United Kingdom of Great Britain and Northern Ireland
## 221 United Kingdom of Great Britain and Northern Ireland
## 222 United Kingdom of Great Britain and Northern Ireland
## 223 United Kingdom of Great Britain and Northern Ireland
## 224 United Kingdom of Great Britain and Northern Ireland
## 225 United Kingdom of Great Britain and Northern Ireland
## 226 United Kingdom of Great Britain and Northern Ireland
## 227 United Kingdom of Great Britain and Northern Ireland
## 228 United Kingdom of Great Britain and Northern Ireland
## 229 United Kingdom of Great Britain and Northern Ireland
## 230 United Kingdom of Great Britain and Northern Ireland
## 231 United Kingdom of Great Britain and Northern Ireland
## 232 United Kingdom of Great Britain and Northern Ireland
## 233 United Kingdom of Great Britain and Northern Ireland
## 234 United Kingdom of Great Britain and Northern Ireland
## 235 United Kingdom of Great Britain and Northern Ireland
## 236 United Kingdom of Great Britain and Northern Ireland
## 237 United Kingdom of Great Britain and Northern Ireland
## 238 United Kingdom of Great Britain and Northern Ireland
## 239 United Kingdom of Great Britain and Northern Ireland
## 240 United Kingdom of Great Britain and Northern Ireland
## 241 United Kingdom of Great Britain and Northern Ireland
## 242 United Kingdom of Great Britain and Northern Ireland
## 243 United Kingdom of Great Britain and Northern Ireland
##                                                                                                                                                     byline
## 1                                                                                      Katelyn Caralle, Senior U.S. Political Reporter In Washington, D.C.
## 2                                                                                                            Germania Rodriguez Poleo, Chief U.S. Reporter
## 3                                                                                                                          Laura Parnaby For Dailymail.Com
## 4                                                                                                            Germania Rodriguez Poleo, Chief U.S. Reporter
## 5                                                                                                          Daniel Jones, Consumer Editor For Dailymail.Com
## 6                                                                                              Charlie Spiering, Senior Political Reporter, Washington, Dc
## 7                                                                       Sarah Ewall-Wice, Senior U.S. Political Reporter for DailyMail.com on Capitol Hill
## 8                                                                                                           Emily Goodin, Senior White House Correspondent
## 9                                                                                                                Geoff Earle, Deputy U.S. Political Editor
## 10                                                                                                               Geoff Earle, Deputy U.S. Political Editor
## 11                                                                                                                           Will Potter For Dailymail.Com
## 12                                                                                                                          Alexa Cimino For Dailymail.Com
## 13                                                                                     Katelyn Caralle, Senior U.S. Political Reporter In Washington, D.C.
## 14                                                                                           Jon Michael Raasch, U.S. Political Reporter For Dailymail.Com
## 15                                                                                                                         Laura Parnaby For Dailymail.Com
## 16                                                                                           Jon Michael Raasch, U.S. Political Reporter For Dailymail.Com
## 17                                                                                                               Geoff Earle, Deputy U.S. Political Editor
## 18                                                                        Nikki Schwab, Chief Campaign Correspondent For Dailymail.Com In Washington, D.C.
## 19                                               Nikki Schwab, Chief Campaign Correspondent For Dailymail.Com At Ronald Reagan Washington National Airport
## 20                                                                                                               Geoff Earle, Deputy U.S. Political Editor
## 21                                                                                                                           Alex Hammer For Dailymail.Com
## 22                                                                                                                         Rachel Bowman For Dailymail.Com
## 23                                                                                             Charlie Spiering, Senior Political Reporter, Washington, Dc
## 24                                                                                                          Emily Goodin, Senior White House Correspondent
## 25                                                                                                                Kelly Laco, Executive Editor Of Politics
## 26                                                                                                                        Brittany Chain For Dailymail.Com
## 27                                                                                                                      Isabelle Stanley For Dailymail.Com
## 28                                                                                                                         Joe Hutchison For Dailymail.Com
## 29                                                                                                                        Melissa Koenig For Dailymail.Com
## 30                                                                                            Stephen Johnson, Economics Reporter For Daily Mail Australia
## 31                                                                                                          Emily Goodin, Senior White House Correspondent
## 32                                                                                                                           Will Potter For Dailymail.Com
## 33                                                                                                                         Rachel Bowman For Dailymail.Com
## 34                                                                                                                            Jason Chester for MailOnline
## 35                                                                                                                                     James Reinl Reuters
## 36                                                                                             Charlie Spiering, Senior Political Reporter, Washington, Dc
## 37                                                                                                                          Alexa Cimino For Dailymail.Com
## 38                                                                                                                                           Sabrina Penty
## 39                                                                                                                                                    <NA>
## 40                                                                                                                     Stephen M. Lepore For Dailymail.Com
## 41                                                                      Sarah Ewall-Wice, Senior U.S. Political Reporter for DailyMail.com on Capitol Hill
## 42                                                                                                                          James Gordon For Dailymail.com
## 43                                                                                                                         Rachel Bowman For Dailymail.Com
## 44                                                                                                                        Brittany Chain For Dailymail.Com
## 45                                                                                                                         Samantha Rutt For Dailymail.Com
## 46                                                                                                                         Bethan Sexton For Dailymail.Com
## 47                                                                                                                                        Natasha Anderson
## 48                                                                          Nikki Schwab, Chief Campaign Correspondent For Dailymail.Com In Doral, Florida
## 49                                                                                                                                        Natasha Anderson
## 50                                                                                                         Daniel Jones, Consumer Editor For Dailymail.Com
## 51                                                                                                                      Stacy Liberatore For Dailymail.com
## 52                                                                                           Jon Michael Raasch, U.S. Political Reporter For Dailymail.Com
## 53                                                                                                                          James Gordon For Dailymail.com
## 54                                                                                                                              Max Winters In New Orleans
## 55                                                                                                         Daniel Jones, Consumer Editor For Dailymail.Com
## 56                                                                    Katelyn Caralle, Senior U.S. Political Reporter In Washington, D.C. Natasha Anderson
## 57                                                                                                                           Will Potter For Dailymail.Com
## 58                                                                                                                                             Alex Raskin
## 59                                                                                                                         Bethan Sexton For Dailymail.Com
## 60                                                                                           Jon Michael Raasch, U.S. Political Reporter For Dailymail.Com
## 61                                                                                                                             Noa Halff For Dailymail.Com
## 62                                                                                                                        Melissa Koenig For Dailymail.Com
## 63                                                                                                Tilly Armstrong Deputy Consumer Editor For Dailymail.Com
## 64                                                                                                                      Maureen Callahan For DailyMail.Com
## 65                                                                                           Jon Michael Raasch, U.S. Political Reporter For Dailymail.Com
## 66                                                                                     Katelyn Caralle, Senior U.S. Political Reporter In Washington, D.C.
## 67                                                                                                           Germania Rodriguez Poleo, Chief U.S. Reporter
## 68                                                                                                                         Joe Hutchison For Dailymail.Com
## 69                                                                                                                  Reuters Sophie Gable For Dailymail.Com
## 70                                                                                                                            Nick Allen For Dailymail.com
## 71                                                                                                                         Bethan Sexton For Dailymail.Com
## 72                                                                                                                         Rebecca Lawrence For Mailonline
## 73                                                                                                                             Noa Halff For Dailymail.Com
## 74                                                                                                                 Jacqueline Lindenberg For Dailymail.Com
## 75                                                                                                                         Joe Hutchison For Dailymail.Com
## 76                                                                                                                                             Oliver Salt
## 77                                                                                                                David Southwell For Daily Mail Australia
## 78                                                                                                                        Brittany Chain For Dailymail.Com
## 79                                                                                                                          Alice Wright For Dailymail.Com
## 80                                                                                                                        Sonya Gugliara For Dailymail.Com
## 81                                                                                                                        Geraint Llewellyn For Mailonline
## 82                                                                                                                          Kelly Garino For Dailymail.Com
## 83                                                                                                                         Joe Hutchison For Dailymail.Com
## 84                                                                                                                        Brittany Chain For Dailymail.Com
## 85                                                                                                                         Rachel Bowman For Dailymail.Com
## 86                                                                                     Katelyn Caralle, Senior U.S. Political Reporter In Washington, D.C.
## 87                                                                                                                         Rachel Bowman For Dailymail.Com
## 88                                                                                                          Emily Goodin, Senior White House Correspondent
## 89                                                                                                                           Alex Hammer For Dailymail.Com
## 90                                                                                                                         Joe Hutchison For Dailymail.Com
## 91                                                                                                                           Alex Hammer For Dailymail.Com
## 92                                                                    Rob Crilly, Chief U.S. Political Correspondent For Dailymail.Com In Washington, D.C.
## 93                                                                                                                           Will Potter For Dailymail.Com
## 94                                                                                                       Geoff Earle, Deputy U.S. Political Editor Reuters
## 95                             Geoff Earle, Deputy U.S. Political Editor At Mar-a-lago Katelyn Caralle, Senior U.S. Political Reporter In Washington, D.C.
## 96                                                                                           David Thompson In Los Angeles For Dailymail.Com James Cirrone
## 97                                                                                                                   Lauren Acton-Taylor For Dailymail.Com
## 98                                                                                                                          James Gordon For Dailymail.com
## 99                                                                                                                         Joe Hutchison For Dailymail.Com
## 100                                                                                                                       Nile Gardiner For The Daily Mail
## 101                                                                                                                        James Cirrone For Dailymail.Com
## 102                                                                                    Katelyn Caralle, Senior U.S. Political Reporter In Washington, D.C.
## 103                                                                                                   Emily Joshu Sterne Health Reporter For Dailymail.Com
## 104                                                                                                               Kelly Laco, Executive Editor Of Politics
## 105                                                                                                                        Bethan Sexton For Dailymail.Com
## 106                                                                                                                          Will Potter For Dailymail.Com
## 107                                                                                                                  Lauren Acton-Taylor For Dailymail.Com
## 108                                                                                                         Ben Ashford Alan Butterfield For Dailymail.Com
## 109                                                                                            Charlie Spiering, Senior Political Reporter, Washington, Dc
## 110                                                                                                                        Martin Robinson, Chief Reporter
## 111                                                                                    Katelyn Caralle, Senior U.S. Political Reporter In Washington, D.C.
## 112                                                                                                                                       Natasha Anderson
## 113                                                                                                         Emily Goodin, Senior White House Correspondent
## 114                                                                                                         Emily Goodin, Senior White House Correspondent
## 115                                                                                                                    Stephen M. Lepore For Dailymail.Com
## 116                                                                                                                          Alex Hammer For Dailymail.Com
## 117                                                                                                                         James Gordon For Dailymail.com
## 118                                                                                                                       Brittany Chain For Dailymail.Com
## 119                                                                                                       Charlie Spiering Laura Parnaby For Dailymail.Com
## 120                                                                                          Jon Michael Raasch, U.S. Political Reporter For Dailymail.Com
## 121                                                                                    Katelyn Caralle, Senior U.S. Political Reporter In Washington, D.C.
## 122                                                                                                         Emily Goodin, Senior White House Correspondent
## 123                                                                                                                                Andrew Neil, Daily Mail
## 124                                                                                                                    Stephen M. Lepore For Dailymail.Com
## 125                                                                                                        Adam S. Levy For Dailymail.com Associated Press
## 126                                                                                                                         James Gordon For Dailymail.com
## 127                                                                                                                          Will Potter For Dailymail.Com
## 128                                                                                                                                                   <NA>
## 129                                                                                                                                            Jake Fenner
## 130                                                                                                                     Kirsty McCormack For Dailymail.Com
## 131                                                                                                                          Jane Ridley For Dailymail.Com
## 132                                                                                                                                             Mark Duell
## 133                                                                                                                    Stephen M. Lepore For Dailymail.Com
## 134 Katelyn Caralle, Senior U.S. Political Reporter In Washington, D.C. Sarah Ewall-Wice, Senior U.S. Political Reporter for DailyMail.com on Capitol Hill
## 135                                                                                                                        Alyssa Guzman For Dailymail.Com
## 136                                                                                                       Sarah Ewall-Wice, Senior U.S. Political Reporter
## 137                                                                                                                       Scott Jennings For Dailymail.Com
## 138                                                                                                                    Stephen M. Lepore For Dailymail.Com
## 139                                                                                                                        Rachel Bowman For Dailymail.Com
## 140                                                                                                                          Will Potter For Dailymail.Com
## 141                                                                                                                        James Cirrone For Dailymail.Com
## 142                                                                                                                                        Daniel Matthews
## 143                                                                                                                                                Ed Holt
## 144                                                                                                          Germania Rodriguez Poleo, Chief U.S. Reporter
## 145                                                                                            Jon Michael Raasch, U.S. Political Reporter On Capitol Hill
## 146                                                                                                                                                   <NA>
## 147                                                                                                         Emily Goodin, Senior White House Correspondent
## 148                                                                                                                        Joe Hutchison For Dailymail.Com
## 149                                                                                                                           Nick Allen For Dailymail.com
## 150                                                                                            Charlie Spiering, Senior Political Reporter, Washington, Dc
## 151                                                                                                                            Natasha Anderson Alex Mason
## 152                                                                                                                          Abbie Llewelyn For Mailonline
## 153                                                                                            Jon Michael Raasch, U.S. Political Reporter On Capitol Hill
## 154                                                                                                                                           Dr Tim Hames
## 155                                                                                                                              Kennedy for Dailymail.com
## 156                                                                                                              Geoff Earle, Deputy U.S. Political Editor
## 157                                                                                                                       Melissa Koenig For Dailymail.Com
## 158                                                                                                                          Will Potter For Dailymail.Com
## 159                                                                                                        Daniel Jones, Consumer Editor For Dailymail.Com
## 160                                                                                               Chris Melore, Assistant Science Editor For Dailymail.Com
## 161                                                                                                                                        Caroline Graham
## 162                                                                                                                       Brittany Chain For Dailymail.Com
## 163                                                                                                                  Lauren Acton-Taylor For Dailymail.Com
## 164                                                                                                              Geoff Earle, Deputy U.S. Political Editor
## 165                                                                                                                    Stephen M. Lepore For Dailymail.Com
## 166                                                                                               Jon Michael Raasch, Political Reporter In Doral, Florida
## 167                                                                                                                    Stephen M. Lepore For Dailymail.Com
## 168                                                                         James Gordon For Dailymail.com Katelyn Caralle, Senior U.S. Political Reporter
## 169                                                                                                                                          Erbil Gunasti
## 170                                                                                                                        Alyssa Guzman For Dailymail.Com
## 171                                                                                                                                         James Reynolds
## 172                                                                                                                    Stephen M. Lepore For Dailymail.Com
## 173                                                                                          Jon Michael Raasch, U.S. Political Reporter For Dailymail.Com
## 174                                                                                                                     Sadie Whitelocks For Dailymail.com
## 175                                                                                                         Emily Goodin, Senior White House Correspondent
## 176                                                                                                           Nikki Schwab Laura Parnaby For Dailymail.Com
## 177                                                                                                                                       Natasha Anderson
## 178                                                                                                                       Claudia Aoraha For Dailymail.Com
## 179                                                                                    Katelyn Caralle, Senior U.S. Political Reporter In Washington, D.C.
## 180                                                                                                                    Stephen M. Lepore For Dailymail.Com
## 181                                                                                                                        Alyssa Guzman For Dailymail.Com
## 182                                                                                    Katelyn Caralle, Senior U.S. Political Reporter In Washington, D.C.
## 183                                                                                                              Geoff Earle, Deputy U.S. Political Editor
## 184                                                                                                                  Lauren Acton-Taylor For Dailymail.Com
## 185                                                                                    Katelyn Caralle, Senior U.S. Political Reporter In Washington, D.C.
## 186                                                                                                              Geoff Earle, Deputy U.S. Political Editor
## 187                                                                                                                        Joe Hutchison For Dailymail.Com
## 188                                                                                                  Eve Buckland Deirdre Durkan-simonds For Dailymail.com
## 189                                                                                                                        Laura Parnaby For Dailymail.Com
## 190                                                                                                                    Stephen M. Lepore For Dailymail.Com
## 191                                                                                                                                            Jake Fenner
## 192                                                                                                                       Brittany Chain For Dailymail.Com
## 193                                                                                                              Geoff Earle, Deputy U.S. Political Editor
## 194                                                                                                                     Alyssa Guzman For Dailymail.Com Ap
## 195                                                                     Sarah Ewall-Wice, Senior U.S. Political Reporter for DailyMail.com on Capitol Hill
## 196                                                                                          Jon Michael Raasch, U.S. Political Reporter For Dailymail.Com
## 197                                                                                                          Germania Rodriguez Poleo, Chief U.S. Reporter
## 198                                                                                            Charlie Spiering, Senior Political Reporter, Washington, Dc
## 199                                                                                                                  Richard Littlejohn for the Daily Mail
## 200                                                                                                                    Stephen M. Lepore For Dailymail.Com
## 201                                                                                                                          Will Potter For Dailymail.Com
## 202                                                                                                                                            Ryan Hooper
## 203                                                                                                                  Lauren Acton-Taylor For Dailymail.Com
## 204                                                                                                                         Emma Richter For Dailymail.Com
## 205                                                                                                                        Rachel Bowman For Dailymail.Com
## 206                                                                                              Cassidy Morrison Senior Health Reporter For Dailymail.Com
## 207                                                                                                                                            Oliver Salt
## 208                                                                                                                    Stephen M. Lepore For Dailymail.Com
## 209                                                                                                                                             Mark Duell
## 210                                                                                                                          Alex Hammer For Dailymail.Com
## 211                                                                                                                        James Cirrone For Dailymail.Com
## 212                                                                                                                          Ben Ashford For Dailymail.com
## 213                                                                                                                         Kelly Garino For Dailymail.Com
## 214                                                                                                                         Emma Richter For Dailymail.Com
## 215                                                                                                                                            Ben Shimkus
## 216                                                                                                                       Brittany Chain For Dailymail.Com
## 217                                                                                          Jon Michael Raasch, U.S. Political Reporter For Dailymail.Com
## 218                                                                                                                        Rachel Bowman For Dailymail.Com
## 219                                                                                                                        Bethan Sexton For Dailymail.Com
## 220                                                                                                                            Shaun Wooller Health Editor
## 221                                                                                                                        Bethan Sexton For Dailymail.Com
## 222                                                                                                                        Alex Brummer for the Daily Mail
## 223                                                                                                                        Joe Hutchison For Dailymail.Com
## 224                                                    Rob Crilly, Chief U.S. Political Correspondent For Dailymail.Com In Washington, D.C. Stephen Lepore
## 225                                                                                                                        Samantha Rutt For Dailymail.Com
## 226                                                                                                                       Melissa Koenig For Dailymail.Com
## 227                                                                                                                                           Taryn Pedler
## 228                                                                                                                                           Bill Bowkett
## 229                                                                                          Jon Michael Raasch, U.S. Political Reporter For Dailymail.Com
## 230                                                                                    Katelyn Caralle, Senior U.S. Political Reporter In Washington, D.C.
## 231                                                                                                                        Joe Hutchison For Dailymail.Com
## 232                                                                                                                    Ishita Srivastava For Dailymail.Com
## 233                                                                                                                        Joe Hutchison For Dailymail.Com
## 234                                                                                                          Germania Rodriguez Poleo, Chief U.S. Reporter
## 235                                                                                                                         Kelly Garino For Dailymail.Com
## 236                                                                                                                        Alyssa Guzman For Dailymail.Com
## 237                                                                                                                                             Sam Lawley
## 238                                                                                                         Will Potter In Washington Dc For Dailymail.Com
## 239                                                                                                         Emily Goodin, Senior White House Correspondent
## 240                                                                                                                     Cassie Carpenter For Dailymail.Com
## 241                                                                                                                     Stacy Liberatore For Dailymail.com
## 242                                                                                                                          Sonia Horon For Dailymail.Com
## 243                                                                                                                          Alex Hammer For Dailymail.Com
##     agg_copyright                                       cite
## 1              NA                                       <NA>
## 2              NA                                       <NA>
## 3              NA                                 GOOGLE LLC
## 4              NA                FOX ENTERTAINMENT GROUP INC
## 5              NA                                  APPLE INC
## 6              NA                                       <NA>
## 7              NA                                       <NA>
## 8              NA                                       <NA>
## 9              NA                      AMERICAN AIRLINES INC
## 10             NA                FOX ENTERTAINMENT GROUP INC
## 11             NA                                       <NA>
## 12             NA                FOX ENTERTAINMENT GROUP INC
## 13             NA                                       <NA>
## 14             NA                                       <NA>
## 15             NA                      AMERICAN AIRLINES INC
## 16             NA                                       <NA>
## 17             NA                FOX ENTERTAINMENT GROUP INC
## 18             NA                                       <NA>
## 19             NA                      AMERICAN AIRLINES INC
## 20             NA                                       <NA>
## 21             NA                               COMCAST CORP
## 22             NA                                       <NA>
## 23             NA                FOX ENTERTAINMENT GROUP INC
## 24             NA                                       <NA>
## 25             NA                FOX ENTERTAINMENT GROUP INC
## 26             NA                                   BEST INC
## 27             NA                                 INTEL CORP
## 28             NA                FOX ENTERTAINMENT GROUP INC
## 29             NA                          NBC UNIVERSAL INC
## 30             NA                                       <NA>
## 31             NA                              CITIGROUP INC
## 32             NA                                       <NA>
## 33             NA                                       <NA>
## 34             NA                                   BEST INC
## 35             NA                                       <NA>
## 36             NA                                       <NA>
## 37             NA                                       <NA>
## 38             NA                                       <NA>
## 39             NA                                       <NA>
## 40             NA                                       <NA>
## 41             NA                                       <NA>
## 42             NA                      COSTCO WHOLESALE CORP
## 43             NA                      AMERICAN AIRLINES INC
## 44             NA                                       <NA>
## 45             NA                                       <NA>
## 46             NA                                       <NA>
## 47             NA                                   BEST INC
## 48             NA                FOX ENTERTAINMENT GROUP INC
## 49             NA                      AMERICAN AIRLINES INC
## 50             NA                      COSTCO WHOLESALE CORP
## 51             NA                                       <NA>
## 52             NA                                       <NA>
## 53             NA                                       <NA>
## 54             NA                                       <NA>
## 55             NA                      COSTCO WHOLESALE CORP
## 56             NA                                       <NA>
## 57             NA                      AMERICAN AIRLINES INC
## 58             NA                FOX ENTERTAINMENT GROUP INC
## 59             NA                      COSTCO WHOLESALE CORP
## 60             NA                                       <NA>
## 61             NA                          NBC UNIVERSAL INC
## 62             NA                      COSTCO WHOLESALE CORP
## 63             NA                      COSTCO WHOLESALE CORP
## 64             NA                    GOLDMAN SACHS GROUP INC
## 65             NA                                       <NA>
## 66             NA                FOX ENTERTAINMENT GROUP INC
## 67             NA                          NBC UNIVERSAL INC
## 68             NA                             WALT DISNEY CO
## 69             NA                     BERKSHIRE HATHAWAY INC
## 70             NA                                       <NA>
## 71             NA                                       <NA>
## 72             NA                                       <NA>
## 73             NA                                       <NA>
## 74             NA                      AMERICAN AIRLINES INC
## 75             NA                         GRAHAM HOLDINGS CO
## 76             NA                                       <NA>
## 77             NA                      DAY INTERNATIONAL INC
## 78             NA                                       <NA>
## 79             NA                      COSTCO WHOLESALE CORP
## 80             NA                                       <NA>
## 81             NA                                       <NA>
## 82             NA                                       <NA>
## 83             NA                                       <NA>
## 84             NA                      COSTCO WHOLESALE CORP
## 85             NA                                       <NA>
## 86             NA                FOX ENTERTAINMENT GROUP INC
## 87             NA                      AMERICAN AIRLINES INC
## 88             NA                          NBC UNIVERSAL INC
## 89             NA                                       <NA>
## 90             NA                                       <NA>
## 91             NA                                       <NA>
## 92             NA                             JOHNSON CO LTD
## 93             NA                                       <NA>
## 94             NA                        WALL STREET JOURNAL
## 95             NA                FOX ENTERTAINMENT GROUP INC
## 96             NA                                       <NA>
## 97             NA                FOX ENTERTAINMENT GROUP INC
## 98             NA                FOX ENTERTAINMENT GROUP INC
## 99             NA                      AMERICAN AIRLINES INC
## 100            NA                                       <NA>
## 101            NA                                NETFLIX INC
## 102            NA                FOX ENTERTAINMENT GROUP INC
## 103            NA                                       <NA>
## 104            NA                                       <NA>
## 105            NA                        WALL STREET JOURNAL
## 106            NA                                       <NA>
## 107            NA                                       <NA>
## 108            NA                                       <NA>
## 109            NA                                       <NA>
## 110            NA                                       <NA>
## 111            NA                                       <NA>
## 112            NA                          NBC UNIVERSAL INC
## 113            NA                                       <NA>
## 114            NA                                   BEST INC
## 115            NA                                       <NA>
## 116            NA                                       <NA>
## 117            NA                                       <NA>
## 118            NA                                       <NA>
## 119            NA                                       <NA>
## 120            NA                                       <NA>
## 121            NA                FOX ENTERTAINMENT GROUP INC
## 122            NA                                       <NA>
## 123            NA                                       <NA>
## 124            NA                                       <NA>
## 125            NA                                       <NA>
## 126            NA                                       <NA>
## 127            NA                                       <NA>
## 128            NA                                       <NA>
## 129            NA                                       <NA>
## 130            NA                               WINE.COM INC
## 131            NA                      AMERICAN AIRLINES INC
## 132            NA                                       <NA>
## 133            NA                                       <NA>
## 134            NA                                       <NA>
## 135            NA                      AMERICAN AIRLINES INC
## 136            NA                FOX ENTERTAINMENT GROUP INC
## 137            NA                                 FORBES INC
## 138            NA                                       <NA>
## 139            NA                                       <NA>
## 140            NA                                       <NA>
## 141            NA                                       <NA>
## 142            NA                                       <NA>
## 143            NA                                 ROOTS CORP
## 144            NA                FOX ENTERTAINMENT GROUP INC
## 145            NA                                       <NA>
## 146            NA                                       <NA>
## 147            NA                                       <NA>
## 148            NA                        DELTA AIR LINES INC
## 149            NA                                       <NA>
## 150            NA                          NBC UNIVERSAL INC
## 151            NA                      AMERICAN AIRLINES INC
## 152            NA                                       <NA>
## 153            NA                                       <NA>
## 154            NA                                       <NA>
## 155            NA                                       <NA>
## 156            NA                                       <NA>
## 157            NA                                TARGET CORP
## 158            NA                                       <NA>
## 159            NA                                       <NA>
## 160            NA                                       <NA>
## 161            NA                       BANK OF AMERICA CORP
## 162            NA                                       <NA>
## 163            NA                     SPERO THERAPEUTICS INC
## 164            NA                                       <NA>
## 165            NA                FOX ENTERTAINMENT GROUP INC
## 166            NA                                       <NA>
## 167            NA                                       <NA>
## 168            NA                                       <NA>
## 169            NA                                       <NA>
## 170            NA                      AMERICAN AIRLINES INC
## 171            NA                                       <NA>
## 172            NA                                       <NA>
## 173            NA                                       <NA>
## 174            NA                  AMERICA'S HEALTH PLAN INC
## 175            NA                                       <NA>
## 176            NA                                       <NA>
## 177            NA                      AMERICAN AIRLINES INC
## 178            NA                      AMERICAN AIRLINES INC
## 179            NA                                       <NA>
## 180            NA                                       <NA>
## 181            NA                                       <NA>
## 182            NA                                       <NA>
## 183            NA                                       <NA>
## 184            NA                                       <NA>
## 185            NA                                       <NA>
## 186            NA                                       <NA>
## 187            NA                                       <NA>
## 188            NA                                       <NA>
## 189            NA                                 GOOGLE LLC
## 190            NA                FOX ENTERTAINMENT GROUP INC
## 191            NA                                       <NA>
## 192            NA AL MUDON INTERNATIONAL REAL ESTATE CO KSCC
## 193            NA                                       <NA>
## 194            NA                FOX ENTERTAINMENT GROUP INC
## 195            NA                                       <NA>
## 196            NA                                       <NA>
## 197            NA                           ASSOCIATED PRESS
## 198            NA                                       <NA>
## 199            NA                                       <NA>
## 200            NA                FOX ENTERTAINMENT GROUP INC
## 201            NA                                       <NA>
## 202            NA                         META PLATFORMS INC
## 203            NA                                       <NA>
## 204            NA                                TARGET CORP
## 205            NA                               COCA-COLA CO
## 206            NA                                       <NA>
## 207            NA                                   ESPN INC
## 208            NA                                       <NA>
## 209            NA                      AMERICAN AIRLINES INC
## 210            NA                                       <NA>
## 211            NA                                       <NA>
## 212            NA                                       <NA>
## 213            NA                                       <NA>
## 214            NA                           ASSOCIATED PRESS
## 215            NA                      COSTCO WHOLESALE CORP
## 216            NA                                       <NA>
## 217            NA                                       <NA>
## 218            NA                        WALL STREET JOURNAL
## 219            NA                                       <NA>
## 220            NA                                       <NA>
## 221            NA                         GRAHAM HOLDINGS CO
## 222            NA                                     BP PLC
## 223            NA                      AMERICAN AIRLINES INC
## 224            NA                FOX ENTERTAINMENT GROUP INC
## 225            NA                                       <NA>
## 226            NA                                 ROOTS CORP
## 227            NA                      AMERICAN AIRLINES INC
## 228            NA                                       <NA>
## 229            NA                                       <NA>
## 230            NA                                       <NA>
## 231            NA                      AMERICAN AIRLINES INC
## 232            NA                      AMERICAN AIRLINES INC
## 233            NA                      AMERICAN AIRLINES INC
## 234            NA                                       <NA>
## 235            NA                          LOS ANGELES TIMES
## 236            NA                        WALL STREET JOURNAL
## 237            NA                                       <NA>
## 238            NA                      AMERICAN AIRLINES INC
## 239            NA                                       <NA>
## 240            NA                                       <NA>
## 241            NA                       LOCKHEED MARTIN CORP
## 242            NA                                       <NA>
## 243            NA                          NBC UNIVERSAL INC
##                                        company
## 1                                         <NA>
## 2                                         <NA>
## 3                                   GOOGLE LLC
## 4                  FOX ENTERTAINMENT GROUP INC
## 5                                    APPLE INC
## 6                                         <NA>
## 7                                         <NA>
## 8                                         <NA>
## 9                        AMERICAN AIRLINES INC
## 10                 FOX ENTERTAINMENT GROUP INC
## 11                                        <NA>
## 12                 FOX ENTERTAINMENT GROUP INC
## 13                                        <NA>
## 14                                        <NA>
## 15                       AMERICAN AIRLINES INC
## 16                                        <NA>
## 17                 FOX ENTERTAINMENT GROUP INC
## 18                                        <NA>
## 19                       AMERICAN AIRLINES INC
## 20                                        <NA>
## 21                                COMCAST CORP
## 22                                        <NA>
## 23                 FOX ENTERTAINMENT GROUP INC
## 24                                        <NA>
## 25                 FOX ENTERTAINMENT GROUP INC
## 26                                    BEST INC
## 27                                  INTEL CORP
## 28                 FOX ENTERTAINMENT GROUP INC
## 29                           NBC UNIVERSAL INC
## 30                                        <NA>
## 31                               CITIGROUP INC
## 32                                        <NA>
## 33                                        <NA>
## 34                                    BEST INC
## 35                                        <NA>
## 36                                        <NA>
## 37                                        <NA>
## 38                                        <NA>
## 39                                        <NA>
## 40                                        <NA>
## 41                                        <NA>
## 42                       COSTCO WHOLESALE CORP
## 43                       AMERICAN AIRLINES INC
## 44                                        <NA>
## 45                                        <NA>
## 46                                        <NA>
## 47                                    BEST INC
## 48                 FOX ENTERTAINMENT GROUP INC
## 49                       AMERICAN AIRLINES INC
## 50                       COSTCO WHOLESALE CORP
## 51                                        <NA>
## 52                                        <NA>
## 53                                        <NA>
## 54                                        <NA>
## 55                       COSTCO WHOLESALE CORP
## 56                                        <NA>
## 57                       AMERICAN AIRLINES INC
## 58                 FOX ENTERTAINMENT GROUP INC
## 59                       COSTCO WHOLESALE CORP
## 60                                        <NA>
## 61                           NBC UNIVERSAL INC
## 62                       COSTCO WHOLESALE CORP
## 63                       COSTCO WHOLESALE CORP
## 64                     GOLDMAN SACHS GROUP INC
## 65                                        <NA>
## 66                 FOX ENTERTAINMENT GROUP INC
## 67                           NBC UNIVERSAL INC
## 68                              WALT DISNEY CO
## 69                      BERKSHIRE HATHAWAY INC
## 70                                        <NA>
## 71                                        <NA>
## 72                                        <NA>
## 73                                        <NA>
## 74                       AMERICAN AIRLINES INC
## 75                          GRAHAM HOLDINGS CO
## 76                                        <NA>
## 77                       DAY INTERNATIONAL INC
## 78                                        <NA>
## 79                       COSTCO WHOLESALE CORP
## 80                                        <NA>
## 81                                        <NA>
## 82                                        <NA>
## 83                                        <NA>
## 84                       COSTCO WHOLESALE CORP
## 85                                        <NA>
## 86                 FOX ENTERTAINMENT GROUP INC
## 87                       AMERICAN AIRLINES INC
## 88                           NBC UNIVERSAL INC
## 89                                        <NA>
## 90                                        <NA>
## 91                                        <NA>
## 92                              JOHNSON CO LTD
## 93                                        <NA>
## 94                         WALL STREET JOURNAL
## 95                 FOX ENTERTAINMENT GROUP INC
## 96                                        <NA>
## 97                 FOX ENTERTAINMENT GROUP INC
## 98                 FOX ENTERTAINMENT GROUP INC
## 99                       AMERICAN AIRLINES INC
## 100                                       <NA>
## 101                                NETFLIX INC
## 102                FOX ENTERTAINMENT GROUP INC
## 103                                       <NA>
## 104                                       <NA>
## 105                        WALL STREET JOURNAL
## 106                                       <NA>
## 107                                       <NA>
## 108                                       <NA>
## 109                                       <NA>
## 110                                       <NA>
## 111                                       <NA>
## 112                          NBC UNIVERSAL INC
## 113                                       <NA>
## 114                                   BEST INC
## 115                                       <NA>
## 116                                       <NA>
## 117                                       <NA>
## 118                                       <NA>
## 119                                       <NA>
## 120                                       <NA>
## 121                FOX ENTERTAINMENT GROUP INC
## 122                                       <NA>
## 123                                       <NA>
## 124                                       <NA>
## 125                                       <NA>
## 126                                       <NA>
## 127                                       <NA>
## 128                                       <NA>
## 129                                       <NA>
## 130                               WINE.COM INC
## 131                      AMERICAN AIRLINES INC
## 132                                       <NA>
## 133                                       <NA>
## 134                                       <NA>
## 135                      AMERICAN AIRLINES INC
## 136                FOX ENTERTAINMENT GROUP INC
## 137                                 FORBES INC
## 138                                       <NA>
## 139                                       <NA>
## 140                                       <NA>
## 141                                       <NA>
## 142                                       <NA>
## 143                                 ROOTS CORP
## 144                FOX ENTERTAINMENT GROUP INC
## 145                                       <NA>
## 146                                       <NA>
## 147                                       <NA>
## 148                        DELTA AIR LINES INC
## 149                                       <NA>
## 150                          NBC UNIVERSAL INC
## 151                      AMERICAN AIRLINES INC
## 152                                       <NA>
## 153                                       <NA>
## 154                                       <NA>
## 155                                       <NA>
## 156                                       <NA>
## 157                                TARGET CORP
## 158                                       <NA>
## 159                                       <NA>
## 160                                       <NA>
## 161                       BANK OF AMERICA CORP
## 162                                       <NA>
## 163                     SPERO THERAPEUTICS INC
## 164                                       <NA>
## 165                FOX ENTERTAINMENT GROUP INC
## 166                                       <NA>
## 167                                       <NA>
## 168                                       <NA>
## 169                                       <NA>
## 170                      AMERICAN AIRLINES INC
## 171                                       <NA>
## 172                                       <NA>
## 173                                       <NA>
## 174                  AMERICA'S HEALTH PLAN INC
## 175                                       <NA>
## 176                                       <NA>
## 177                      AMERICAN AIRLINES INC
## 178                      AMERICAN AIRLINES INC
## 179                                       <NA>
## 180                                       <NA>
## 181                                       <NA>
## 182                                       <NA>
## 183                                       <NA>
## 184                                       <NA>
## 185                                       <NA>
## 186                                       <NA>
## 187                                       <NA>
## 188                                       <NA>
## 189                                 GOOGLE LLC
## 190                FOX ENTERTAINMENT GROUP INC
## 191                                       <NA>
## 192 AL MUDON INTERNATIONAL REAL ESTATE CO KSCC
## 193                                       <NA>
## 194                FOX ENTERTAINMENT GROUP INC
## 195                                       <NA>
## 196                                       <NA>
## 197                           ASSOCIATED PRESS
## 198                                       <NA>
## 199                                       <NA>
## 200                FOX ENTERTAINMENT GROUP INC
## 201                                       <NA>
## 202                         META PLATFORMS INC
## 203                                       <NA>
## 204                                TARGET CORP
## 205                               COCA-COLA CO
## 206                                       <NA>
## 207                                   ESPN INC
## 208                                       <NA>
## 209                      AMERICAN AIRLINES INC
## 210                                       <NA>
## 211                                       <NA>
## 212                                       <NA>
## 213                                       <NA>
## 214                           ASSOCIATED PRESS
## 215                      COSTCO WHOLESALE CORP
## 216                                       <NA>
## 217                                       <NA>
## 218                        WALL STREET JOURNAL
## 219                                       <NA>
## 220                                       <NA>
## 221                         GRAHAM HOLDINGS CO
## 222                                     BP PLC
## 223                      AMERICAN AIRLINES INC
## 224                FOX ENTERTAINMENT GROUP INC
## 225                                       <NA>
## 226                                 ROOTS CORP
## 227                      AMERICAN AIRLINES INC
## 228                                       <NA>
## 229                                       <NA>
## 230                                       <NA>
## 231                      AMERICAN AIRLINES INC
## 232                      AMERICAN AIRLINES INC
## 233                      AMERICAN AIRLINES INC
## 234                                       <NA>
## 235                          LOS ANGELES TIMES
## 236                        WALL STREET JOURNAL
## 237                                       <NA>
## 238                      AMERICAN AIRLINES INC
## 239                                       <NA>
## 240                                       <NA>
## 241                       LOCKHEED MARTIN CORP
## 242                                       <NA>
## 243                          NBC UNIVERSAL INC
##                                                                                                                                                                                                                      headline
## 1                                                                                                                                                     Trump continues government purge by dismantling DEI from another agency
## 2                                                                                                                                                   Sunny Hostin claims Trump is an unqualified 'DEI' hire in apoplectic rant
## 3                                                                                                                                                        Google scraps DEI targets as big tech bends to DOGE, Trump, and Elon
## 4                                                                                                                                                  Don Lemon blasts 'nepo baby' Trump in furious rant about his DEI crackdown
## 5                                                                                                                                                   Apple risks the wrath of Donald Trump as it defies executive order on DEI
## 6                                                                                                                                       The brutal way Trump fired the highest-ranking woman in the military in his DEI purge
## 7                                                                                                                                        Democrats tears into 'vile' and 'grotesque' Trump for blaming the plane crash on DEI
## 8                                                                                                                           Trump successfully plunges government into darkness as 8,000 DEI web pages stripped from internet
## 9                                                                                                                                                                 Trump blames DEI for American Airlines crash that killed 67
## 10                                                                                                                              The truth behind Donald Trump's astounding claims Biden, Obama and DEI are to blame for crash
## 11                                                                                                    Trump obliterates DEI with new demand to place every federal diversity program employee on paid leave by 5 pm Wednesday
## 12                                                                                                                           JD Vance roasts the media for their 'funny' coverage of Trump's DEI remarks after DC plane crash
## 13                                                                                                                          Donald Trump to ban transgender troops and DEI military programs in latest executive order flurry
## 14                                                                                                              Trump strips millions from DEI foreign aid programs funding Irish musicals, LGBTQ programs in Serbia and more
## 15                                                                                                                 Seasoned pilot Lauren Sanchez blasts racist, sexist rage-baiting as Trump blames DEI for aviation disaster
## 16                                                                                                                                                 DEI is to blame for Trump's near-assassination claims Secret Service agent
## 17                                                                                                                                            Trump berates Black Hawk helicopter crew for DC plane crash after targeting DEI
## 18                                                                                                                              Karoline Leavitt pledges Trump will bring down prices as she takes aim at 'crap' DEI projects
## 19                                                                                                                        Female NTSB head stuns the press with her unexpected response to Trump's claim DEI caused the crash
## 20                                                                                                           Trump signs executive order to eradicate DEI from the FAA and makes awkward JOKE about visiting plane crash site
## 21                                                                                                                     NBC parent company's DEI initiatives probed by FCC as it becomes latest target of Trump administration
## 22                                                                                                                                       Woke DEI teacher complains about Trump removing their pronouns in parody-like speech
## 23                                                                                                                Pete Hegseth says Trump is 'exactly right' to blame DEI for DC plane crash and details the key to the probe
## 24                                                                                                                            Pete Buttigieg responds to Trump's 'despicable' comments blaming HIM and DEI for DC plane crash
## 25                                                                                                                  Service members reveal how Trump can 'rejuvenate' the military after COVID purge and DEI 'demoralization'
## 26                                                                                                            Trevor Noah leads anti-Trump roast at the Grammys as Hollywood targets tariffs, celebrates DEI and trans rights
## 27                                                                                                                 Trans troops, Hunter's helpers, DEI fanatics: Wokest heads to roll as Trump vows to fire MORE in bloodbath
## 28                                                                                                                                             Donald Trump fires first female Coast Guard leader over her obsession with DEI
## 29                                                                                         Trump evicts highest-ranking woman in the military from her home on short notice after her ouster over obsession with DEI policies
## 30  The Left is privately bracing for a Trump-style DEI apocalypse if Dutton wins. These programs will be first on the chopping block - and you won't believe some of them existed in the first place, writes STEPHEN JOHNSON
## 31                                                                                                                                 Pam Bondi throws out DEI lawsuits against police and firefighters, saying no more 'quotas'
## 32                                                                                                                                  Government agency is caught deploying sneaky tactic to get around Trump's anti-woke purge
## 33                                                                                                                  MSNBC guest launches unhinged attack on 'white folks' over price of eggs in 'Trump's disgusting America '
## 34         Hollywood delivers a brutal response to Donald Trump's gender ideology crackdown as Mexican transgender musical Emilia Pérez and intersex drama Conclave run riot during the 97th annual Academy Award nominations
## 35                                                                                                                                          The black business owners who say DEI has never worked and that it 'isn't for us'
## 36                                                                                                                                                    Trump orders all federal employees to remove pronouns from their emails
## 37                                                                                                                          Major update after thousands of government websites were set to go dark amid Trump's online purge
## 38                                                                                                       Madonna takes a swing at Donald Trump for 'dismantling' LGBTQ+ freedoms and tells her fans 'don't give up the fight'
## 39                                                                                                          Director of National Intelligence Tulsi Gabbard vows to crack down after kinky sex chats among NSA agents exposed
## 40                                                                                                           NSA agents exposed for sex chats as Tulsi Gabbard vows to punish workers posting 'kinks, fetishes and polyamory'
## 41                                                                                                                                       Ted Cruz takes on 'woke DEI propagandist' government consultants raking in thousands
## 42                                                                                                                              Activist investor reveals Costco's defiant DEI stance is 'not as meaningful' as it may appear
## 43                                                                                                                                                  CNN's shocking on-air dig at Trump during DC plane crash press conference
## 44                                                                                                                                           Elon Musk announces DOGE's first official act as Trump takes over in Oval Office
## 45                                                                                                                                     MSNBC guest claims America is becoming 'less safe' as FBI paints over 'diversity wall'
## 46                                                                                                                         CNN panel explodes into heated clash as pundit fumes she gets paid less than white male colleagues
## 47                                                                 Oscars goes to war with Trump by nominating two trans dramas for 21 awards after president's two-genders law was branded 'shameless' by Hollywood wokerati
## 48                                                                                                              Trump's Treasury chief Scott Bessent has witty comeback about being highest-ranking LGBTQ official in history
## 49              Aviation chiefs 'were recruiting people with targeted disabilities including intellectual problems and hearing/vision issues until last year' - as Trump vows to tackle 'diversity' in wake of crash disaster
## 50                                                                                                                                                                        Costco boldly defies Donald Trump's executive order
## 51                                                                                                                              NASA's woke boss admits agency wasted millions of taxpayer dollars on 'shameful' DEI programs
## 52                                                                                                                     DOGE rips apart half a BILLION in DEI grants to 'develop anti-racist mindsets' at Education Department
## 53                                                                                                                           Tom Hanks blasted for 'racist and disgusting' portrayal of MAGA supporter on star-studded SNL 50
## 54                                                                                                        Chiefs and Eagles players speak out on playing in front of Donald Trump with president set to attend the Super Bowl
## 55                                                                                                                                        Pressure mounts on Costco over DEI policies: 'Why would they Bud Light themselves?'
## 56                                                                                                                                           Trump pauses ALL federal grants, loans and other assistance, leaked memo reveals
## 57                                                                                                                      Bill Maher praises Trump for mocking reporter's 'stupid question'... as he jokes about DC plane crash
## 58                                                                                                                          Stephen A. Smith sends Democrats a message over trans issues after landing on 2028 President poll
## 59                                                                                                                                                      Staggering bonuses given to Costco executives for hitting DEI targets
## 60                                                                                                                                MAGA Republicans unify on three-word response to Democrats outraged about USAID destruction
## 61                                                                                                                                         Pete Hegseth FIRES top female military staffer as military gets the DOGE treatment
## 62                                                                                                                    Kevin O'Leary rips 'nuts' Costco for boldly defying Trump order after Walmart and major companies caved
## 63                                                                                                                                                                                    Costco confirms major food court change
## 64                                                        Kamala Harris, Michelle Obama and Taylor Swift all now share the same humiliation. Buckle up, liberals... you're not going to like what MAUREEN CALLAHAN has to say
## 65                                                                                                                            DOGE uncovers farcical $2.3m program training soldiers to 'speak and act in a DEI friendly' way
## 66                                                                                                                                                             Pete Hegseth orders DOGE-inspired $50 billion in Pentagon cuts
## 67                                                                                                                                 Wokest' DEI government workers revealed... along with their staggering taxpayer-funded pay
## 68                                                                                                                                   America 's wokest company Disney makes major changes to classic films as it banishes DEI
## 69                                                                                                                                                       Warren Buffett's Berkshire takes a cryptic turn under Trump's shadow
## 70                                                                                                        The six biggest takeaways from Trump's first weeks in government... and what they tell us about the next four years
## 71                                                                                                                                               Gayle King asks why there aren't more 'people of color' at Trump swearing-in
## 72                              Jessica Alves puts on a busty display in a skintight pink catsuit as she leaves the hair salon after revealing she fears for her safety amid President Trump's crackdown on 'gender ideology'
## 73                                                                                                                                              Fans slam SNL's sour Trump assassination joke: 'When am I supposed to laugh?'
## 74                                                                                                                      Donald Trump's ex Marla Maples makes appearance at 2025 Grammys as former husband is blasted by stars
## 75                                                                                                                Jake Tapper left stunned as Stephen Miller explains why Trump ordered a surprise freeze on federal spending
## 76                                                                                                                    NFL to make controversial Super Bowl decision over racism message with Donald Trump attending showpiece
## 77                                                                                                                                     NSW Premier Chris Minns quietly removes he/him pronouns from his social media accounts
## 78                                                                                                                                         USAID inspector general is fired by the White House after attacking DOGE and Trump
## 79                                                                                                                                                Costco unseated as top wholesale store by rival pushing high-tech checkouts
## 80                                                                                                                                     Woman was passed over for promotion because she was not gay, Supreme Court case claims
## 81                                                            Jessica Alves reveals she has been forced to cancel all US TV appearances over 'fears for her own safety' amid President Trump's crackdown on 'gender ideology'
## 82                                                                                                                                  Whining Elizabeth Warren gives Elon Musk a swanky new nickname while complaining on MSNBC
## 83                                                                                                                                             Bill Maher's audience goes WILD as Kid Rock drops surprising view on Democrats
## 84                                                                                                           Al Sharpton's DEI stunt backfires spectacularly after liberal icon marches in support of Costco: 'kiss of death'
## 85                                                                                                                                                     Political guru predicts Trump White House will COLLAPSE within 30 days
## 86                                                                                                                         Trump's reelection lands Army best free promotion in 15 years as recruitment swells to record high
## 87                                                                                                              Professor fuels conspiracy theories after blaming Trump for future plane crashes just HOURS before DC tragedy
## 88                                                                                                         Trump issues an ultimatum to senior FBI agents in his government purge after Kash Patel vowed to 'not go backward'
## 89                                                                                                                                  Raging Morning Joe star takes aim at Democrats as liberal circular firing squad escalates
## 90                                                                                                                                                    Bill Maher slams woke left's latest change to the Boy Scouts of America
## 91                                                                                                                                                CNN heaps shock praise on Donald Trump as he completes first week in office
## 92                                                                                                             One in five Democratic voters say Trump is doing a good job as his whirlwind start in office attracts new fans
## 93                                                                                                              The Army is BACK! Military releases new high-octane Trump-era ad... and it's a huge split from woke Biden one
## 94                                                                                                                              Trump preparing plans to dismantle the 'woke' Department of Education through executive order
## 95                                                                                                                 Trump releases message ahead of Super Bowl as he jets into New Orleans after playing golf with Tiger Woods
## 96                                                                                                                 Murdered fire captain's ex lover drops bombshell about victim's wife after cops named her as prime suspect
## 97                                                                                                                    Fox host Jesse Watters turns on Trump and DOGE for 'callous' cuts after his veteran friend got the chop
## 98                                                                                                                          Stephen A. Smith shocks Sean Hannity with brutal verdict on his former Fox colleague Pete Hegseth
## 99                                                                                                                      FAA turned away 1,000 job applicants because of its DEI rules despite staff shortages, lawsuit claims
## 100                                                          NILE GARDINER: The Donald's revitalised America could lead Britain to broad sunlit uplands - but Keir Starmer's doctrinaire socialists will blow the opportunity
## 101                                                                                                                          MAGA stars cut loose at Trump's inaugural ball as Jake Paul and Mike Tyson perform bizarre stunt
## 102                                                                                                                                                   Donald Trump finally reveals Elon Musk's real job in federal government
## 103                                                                                                             Employees fume as Trump wipes 'transgender' from CDC and deletes 'climate change' from agriculture department
## 104                                                                                                                                                                Experts reveal rating for Trump's second inaugural address
## 105                                                                                  Trump orders Treasury to stop 'producing new pennies' as he continues to target wasteful spending: 'literally cost us more than 2 cents'
## 106                                                                                                                    Trump makes dramatic pivot on stance towards the World Health Organization... days after ordering exit
## 107                                                                                                                     The View's Joy Behar suggests Trump is abolishing the penny because he's 'jealous' of past presidents
## 108                                                                                                                Donald Trump's new Transportation Secretary Sean Duffy seen performing raunchy dance in embarrassing video
## 109                                                                                                            The eye-popping amount of money Elon Musk has already slashed from the Education Department as staff melt down
## 110                     Donald Trump's America will make Harry and Meghan 'more unpopular than ever': Royal experts say new president's inauguration is a 'day of fear' for the Sussexes with their US residency under threat
## 111                                                                                                           Pam Bondi SUES Chicago over sanctuary city laws after sending DOJ into frenzy with sweeping pro-MAGA directives
## 112                                                                                Fiery moment NBC's Peter Alexander clashes with new WH press secretary Karoline Leavitt over Trump's mass deportation and spending freezes
## 113                                                                                                                  Trump amplifies attacks on 'activist' judges halting DOGE's work as Democrats fear MAGA will defy courts
## 114                                                                                                                     Melania and Ivanka's close ties to USAID exposed as Trump goes scorched-earth on the 'corrupt' agency
## 115                                                                                                                                        CNN's Scott Jennings gives liberals a blistering reality check on Elon Musk's DOGE
## 116                                                                                                                                                            Jim Acosta reignites war with Donald Trump over DC plane crash
## 117                                                                                                                                  Gay combat veteran reveals why Trump was RIGHT to ban transgender troops in the military
## 118                                                                                                                          Trump makes bombshell decision on 'DOGE dividend' - here's how much every taxpayer could receive
## 119                                                                                                                        REVEALED: Elon Musk and DOGE's final goal as it launches blitzkrieg through the federal government
## 120                                                                                                                                         The next 10 government agencies in DOGE's line of fire that ballooned under Biden
## 121                                                                                                                                Pete Hegseth reveals his top priority on his first day as Donald Trump's Defense Secretary
## 122                                                                                                               Inside Trump's plan to make it easier to fire federal employees - and agencies have just 90 days to respond
## 123                                                                               ANDREW NEIL: Trump's bombastic blizzard of an inauguration speech threatened to provoke chaos. Then a startling realisation dawned on me...
## 124                                                                             Trump signs bombshell executive order to make himself the most powerful president in history as he enacts controversial Constitutional theory
## 125                                                                                                             Madonna posts poignant message honoring Martin Luther King Jr. as President Trump is sworn in for second term
## 126                                                  Hamilton meets 'King Trump' as Lin-Manuel Miranda makes surprise SNL appearance in hilarious cold open as Timothée Chalamet is blasted for Jimmy Carter joke: 'Too soon'
## 127                                                                                                                                                 Army top brass blast Pete Hegseth in foul-mouthed rant about DEI overhaul
## 128                                                                                                                  SNL mocks return of 'King Trump' as host Timothee Chalamet delivers an off-color joke about Jimmy Carter
## 129                                                                                                                                   NCAA makes ruling on transgender athletes in women's sports after Trump executive order
## 130                                                                                                                                 Ivanka Trump unveils new inner friendship circle after being reembraced by socialite pals
## 131                                                Who ordered the runway switch minutes before the DC crash? Are DEI air traffic controllers to blame? Why did Biden's FAA chief suddenly quit? All the unanswered questions
## 132                                                                                                           British voters support raft of Donald Trump 's policies in blind polling test - but how many do YOU agree with?
## 133                                                                                                                                 Squad' member Ilhan Omar has very choice words for Dems who attended Trump 's swearing in
## 134                                                                                                                                   Trump's sweeping changes to grants and loans begins now... here's what it means for you
## 135                                                                                                                                             Black Hawk didn't follow air traffic controller's route before DC plane crash
## 136                                                                                                                    Republican senator tells DOGE to slash two sides off the Pentagon and make it a 'Trigon' to save money
## 137                                                                          SCOTT JENNINGS: America 's 'Worst Pundit' predicts Trump will collapse within 30 days... here's the glaring truth that utterly destroys his case
## 138                                                                                                  Jack Schlossberg has crude message for DOGE after JFK presidential library forced to close due to federal employee purge
## 139                                                                                                                                      CBS anchor defends ludicrous USAID spending on trans operations and atheism overseas
## 140                                                                                                           Illegal migrant raids spark civil war as teacher turns on his own STUDENTS with startling message to ICE agents
## 141                                                                                                                                 Liberal 'mean girl' cruelly trolls press secretary Karoline Leavitt and her older husband
## 142                                                                                                                   Kid Rock's shocking claim about Kendrick Lamar and Colin Kaepernick after Super Bowl 2025 halftime show
## 143                                                                                                                Elon Musk wants Trump to 'delete entire agencies' as part of his radical push to slash government spending
## 144                                                                                                       California congresswoman and her fellow liberals users blame Trump for deadly mid-air collision near Reagan airport
## 145                                                                                                                                                          Trump scores big win as John Ratcliffe confirmed as CIA director
## 146                                                                                                                      Saturday Night Live slammed after controversial comedy segment about the Trump assassination attempt
## 147                                                                                                              Trump blames media for federal funding freeze chaos and reveals move has already uncovered millions in waste
## 148                                                                                                                                           Endeavour Air slammed for 'DEI obsessed' social media after Toronto plane crash
## 149                                                             A MAGA star is born! On her first day, Trump's sparkling new press secretary Karoline Leavitt, age 27, hits the 'legacy media' with brilliantly barbed remark
## 150                                                                                                                   Terrified staff left hysterical as 'well drilled' DOGE nerds storm hyper 'woke' Department of Education
## 151                                                                                                      Moment air traffic controller screams as American Airlines plane collides with Black Hawk helicopter over Washington
## 152                                                                                FBI warns staff they are in a 'battle' as Trump purges agents who 'did their jobs in accordance with the law' and investigated Jan 6 riots
## 153                                                                                                                        Karoline Leavitt clashes with AOC over looming restraining order on Trump's federal funding freeze
## 154                                                                                                                                      DR TIM HAMES: The seven ways that Donald Trump will send shockwaves around the world
## 155                                                                                      KENNEDY: The truth of Barack Obama's hopelessly-delayed $830 million DEI nightmare of a presidential library that may never be built
## 156                                                                                                                                                                                        Trump blames DC plane crash on DEI
## 157                                                                                                                           Florida gets revenge on Target over tuck swimsuits and DEI obsession that sparked a culture war
## 158                                                                                                                                                                            DEI obliterated as Trump issues scathing order
## 159                                                                                                                                                                               Apple defies Trump's executive order on DEI
## 160                                                                                                                                                         Disgraceful reason American flag was hung upside-down in Yosemite
## 161                                                  Axe-wielding squatters, pepper spray while I walk the dog... but the scariest part of my beloved LA's descent into squalor is the celeb I'm hearing could replace Newsom
## 162                                                                                         Elon Musk's role in reshaping US revealed in subtle message that shows exactly where Trump found plan for federal workforce purge
## 163                                                                                                                                        Trump and Musk's DOGE fire team of lawyers trying to stop drunk pilots from flying
## 164                                                                                                                            Karoline Leavitt announces Trump will impose tariffs on Mexico , Canada and China this weekend
## 165                                                                                                           Elon Musk considers 'DOGE dividend' that would send $5,000 check to all Americans following massive budget cuts
## 166                                                                                                           $50M in condoms for Gaza and 'trans operas' in Colombia : The staggering foreign aid projects Trump is blocking
## 167                                                                                         Political guru James Carville's surprising advice for Democrats as minority party flails in attempt to combat Trump and Elon Musk
## 168                                                                                                             Ivanka Trump stuns in Oscar de la Renta as she hugs Lauren Sanchez during candlelight dinner in Washington DC
## 169                             If Trump really wants to bring down the price of eggs, he can start by listening to Turkey and the long-forgotten 'Stans'. Because these energy giants can cut REALLY cut the price of gas...
## 170                                                                                                                  Ice skater, 16, killed in DC plane crash pulled off ultra-rare 'triple axle' jump hours before his death
## 171                                                                                          USAID workers will be escorted to their desks and have 15 minutes to collect personal belongings from gutted agency HQ this week
## 172                                                                                                                  Head of Social Security abruptly resigns after clash with Elon Musk over DOGE's access to sensitive data
## 173                                                                                                 Musk stunned as dozens of DOGE staff suddenly QUIT with scathing letter... as eye-watering new savings figure is revealed
## 174                                                                                                                                    The four banned words in Trump's overhauled CDC that are sending workers into meltdown
## 175                                                                                                        Trump tears into lazy federal staff who work from home and warns they will be FIRED if they don't return to office
## 176                                                                                                                        Internet goes wild for hulking Special Forces agent spotted with Pete Hegseth on early morning run
## 177                                                     New footage of American Airlines crash shows doomed jet and Black Hawk helicopter's lights could be seen from over a mile away - so how did they not spot each other?
## 178                                                                                                                                                            FAA to make huge safety update after 67 died in DC plane crash
## 179                                                                                                                                                              Trump continues purge by dismantling DEI from another agency
## 180                                                                                                             Trump gifts Elon Musk the Lincoln Bedroom at the White House after turning DOGE office into sleeping quarters
## 181                                                                                                              Devastating Pennsylvania plane crash scene pics emerge as American flyers unnerved by second deadly accident
## 182                                                                                                             DOGE finds millions of instances of social security fraud in database including a 360-year-old and 'vampires'
## 183                                                                                                                         Trump drops European Union tariff bombshell as astonishing new front opens up in global trade war
## 184                                                                                                              Trump's telling remark about JD Vance 's brilliant wife Usha ... and what it reveals about America 's future
## 185                                                                                                                             What to know about Trump's first executive orders as the president renames the Gulf of Mexico
## 186                                                                                                                                                                     Trump doubles down on DEI claims after DC plane crash
## 187                                                                                                                                                                Report: Trump fires Coast Guard leader over border and DEI
## 188                                                                                                             Roseanne Barr digs at Trump's 'Special Envoy' stars... after claiming she was frozen out by MAGA inner circle
## 189                                                                                                                                                               Google scraps DEI hiring targets as big tech bends to Trump
## 190                                                                                                                    Weary GOP lawmakers lash out at 'childish' Elon Musk for drastic DOGE cuts during secret House meeting
## 191                                                                                                 Riley Gaines stunned as trans activist claims Paralympians should compete against Olympians in gender neutral competition
## 192                                      Musk savagely trolls whining federal workers as attempts to seize highly-sensitive $5 TRILLION system hits major stumbling block in emergency court hearing challenging DOGE's power
## 193                                                                                                              How Trump administration is begging federal workers to take the 'buyout' and visit their 'dream destination'
## 194                                                                                                                                    Doomed Black Hawk helicopter's call sign sparks fresh mystery following DC plane crash
## 195                                                                                                                                                           Democrats tear into Trump for blaming the DC plane crash on DEI
## 196                                                                                                                                                                              All the shocking ways USAID spent your money
## 197                                                                                                                                            CNN gives Karoline Leavitt nasty new nickname after first White House briefing
## 198                                                                                                                                                        Pete Hegseth says Trump is 'right' to blame DEI for DC plane crash
## 199                                                                RICHARD LITTLEJOHN: Trump has shocked the world by doing exactly what he promised. If only evasive, petulant Starmer would put Britain first for once, too
## 200                                                                                                                         Musk urged to abolish Planned Parenthood funding as report reveals abortion clinic horror stories
## 201                                                                                                                                                     Gov agency caught using sneaky tactic to get around Trump's DEI purge
## 202                                                                             Disney scraps woke trigger warnings on family favourites such as Dumbo and Peter Pan in a bonfire of diversity, equity and inclusion policies
## 203                                                                                                                                         Elon Musk's DOGE lieutenant's X-rated online pseudonym leaves CNN hosts flummoxed
## 204                                                                                                                                                      Target is banned from Pride parade as revenge for axing DEI policies
## 205                                                                                                                                             Coca-Cola boycott brewing amid rumors staff are 'reporting colleagues to ICE'
## 206                                                                                                                Up to 74m Americans unable to access healthcare after Trump's federal funding freeze causes Medicaid chaos
## 207                                                                                                                  Clay Travis makes shock Donald Trump ESPN prediction and says they regret being 'too left wing and woke'
## 208                                                                                                         Charlamagne Tha God gives brutal take on Vivek Ramaswamy's DOGE exit and predicts Elon Musk will 'crash and burn'
## 209            Get this numbskull off my show!' Moment furious LBC host Iain Dale orders US columnist is taken off air during row over Donald Trump's claims that diversity hiring was to blame for Washington DC plane crash
## 210                                                                                         CNN star Jake Tapper blasted for penning new book 'exposing' the cover up of Biden's health decline he 'actively participated in'
## 211                                                                                                                                 The American farmers at the heart of Trump's war with USAID who are struggling to survive
## 212                                                                                    How Obama's FAA used a skewed multiple-choice quiz to prioritize DEI applicants and bar the brightest from air traffic controller jobs
## 213                                                                                                           Swift justice for influencer who filmed herself calling for Elon Musk's murder and boasted about not paying tax
## 214                                                                                                                                       Joe Rogan exposes Biden's top 'inappropriate spending' tactic after DOGE's findings
## 215                                                                                                                          Costco plummets down list of top supermarkets as biggest customer bugbears damage its reputation
## 216                                                                                                Bill Maher eviscerates former Obama speechwriter over Dems obsession with trans issues: 'You want to lose every election?'
## 217                                                                                                             All the 'crazy' USAID programs on blast by Republicans... including a bizarre $25K drag queen show in Ecuador
## 218                                                                                                                                                Tiny rural Pennsylvania town tears itself apart over politics and pronouns
## 219                                                                                                                                                                  How America quietly funded Iraqi Sesame Street for years
## 220                                                                                                                               Diversity in the NHS means staff are now promoting 'anti-whiteness', warns Health Secretary
## 221                                                                                                                                                    Joy Reid demands Congress subpoena Elon Musk and raft of DOGE staffers
## 222                                                                                                                       Back to petroleum at last: BP's switch back to fossil fuels is a seismic U-turn, says MAGGIE PAGANO
## 223                                                                                                                                        DC plane crash widow reveals fateful choice that killed husband and saved her life
## 224                                                                                                                                  Tulsi Gabbard fires more than 100 intelligence agents over transgender sex chat messages
## 225                                                                                                            Megyn Kelly's brutal takedown of CNN pundit and her meltdown over being 'paid less than white male colleagues'
## 226                                                                                                                              Mark Zuckerberg suffers ultimate humiliation after whining to staff 'everything I say leaks'
## 227                                  Doomed Black Hawk chopper was rehearsing Trump's evacuation to a nuclear bunker when it slammed into American Airlines jet, online sleuths claim as more wild conspiracy theories emerge
## 228                                                                                     Macmillan Cancer Support is criticised for recruiting a £100k a year DEI director - despite recently axing a quarter of its workforce
## 229                                                                                                                    Karoline Leavitt throws Democrats' own words back in their faces in brutal takedown amid DOGE protests
## 230                                                                                                                             DOGE prepares gold reserve 'audit' after top Republican invites Elon Musk to review Fort Knox
## 231                                                                                                                                        Chilling 'conspiracy theory' about Black Hawk helicopter in DC plane crash is TRUE
## 232                                                                                                               Passenger onboard plane departing DC airport shows how 'crazy close' choppers fly next to commercial crafts
## 233                                                                                                        All the catastrophic mistakes that led to DC plane crash as it is revealed air traffic controller left tower early
## 234                                                                                                                                                     Woke 'plot' to axe face of Founding Father from Washington state flag
## 235                                                                                                           Wife of slain California fire captain believed to have fled to Mexico as police issue arrest warrant for murder
## 236                                                                                                                       CNN panelists at each other's throats over resigned DOGE staffer's 'racist' posts in fiery exchange
## 237                                                                                                                               Lady Gaga slammed for 'odd and meaningless' political Grammys speech: 'Hollywood is a cult'
## 238                                                                                                                                 The truth behind rumor DC crash Black Hawk co-pilot was transgender servicewoman Jo Ellis
## 239                                                                                                                                                Trump to sign order creating a new 'Iron Dome' U.S. missile defense system
## 240                                                                                                                                          Lady Gaga makes political speech about transgender community at the 2025 Grammys
## 241                                                                                                      How warnings about Black Hawk helicopter's safety systems date back decades and have been linked to dozens of deaths
## 242                                                                                                                              Critics Choice Awards 2025: Chelsea Handler ROASTS Justin Baldoni and Blake Lively in opener
## 243                                                                                                                                         MSNBC star Rachel Maddow set for courtroom humiliation over shocking on-air slurs
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           hlead
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump continues government purge by dismantling DEI from another agency • The president ordered all DEI hires in federal agencies be fired by Wednesday President Donald Trump is dismantling his predecessor's policies prioritizing diversity, equity and inclusion (DEI) hiring at the Federal Aviation Administration.
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sunny Hostin claims Trump is an unqualified 'DEI' hire in apoplectic rant • LISTEN: Welcome to MAGAland, our podcast on the latest inside the White House Sunny Hostin claimed president Donald Trump is a 'DEI' hire as she went on a rant against the Republican's first orders for his second term. Reacting to Trump's announcement that he would get rid of Diversity, Equity and Inclusion policies, The View co-host used a pun to say Trump 'Didn't Earn It' - and instead obtained the world's highest office through nepotism.
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Google scraps DEI targets as big tech bends to DOGE, Trump, and Elon Google has scrapped diversity, equality and inclusion (DEI) hiring targets as big tech bends to the new era of Donald Trump's anti-woke agenda. In an email circulated to employees seen by the Wall Street Journal, Google bosses said they would no longer be striving to improve representation in the workforce. Meanwhile, Google's parent company, Alphabet, removed a sentence stating the company was 'committed to making diversity, equity, and inclusion part of everything we do and to growing a workforce that is representative of the users we serve.'
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Don Lemon blasts 'nepo baby' Trump in furious rant about his DEI crackdown • PODCAST: Trump's tariffs, Elon's USAID takeover and how aviation safety hangs in the balance - listen here Don Lemon claimed Donald Trump is a 'nepo baby' as he furiously blasted the president for blaming diversity and inclusion initiatives for the tragic plane crash in Washington DC . The former CNN star, 58, was interviewed by TMZ at LAX airport in Los Angeles and used the opportunity to unload on the 47th president's initial response to the tragedy that left 67 dead.
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Apple risks the wrath of Donald Trump as it defies executive order on DEI Apple and its shareholders have rebuffed a bid to make the technology giant get behind President Donald Trump's anti-DEI policies. Conservative campaigners had wanted Apple to scrub corporate programs designed to diversify its workforce. The proposal urged Apple to follow a litany of high-profile companies that have retreated from diversity, equity and inclusion initiatives - which are currently in the Trump administration's crosshairs. McDonald's scaled back some of its DEI initiatives in January amid growing conservative opposition.
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The brutal way Trump fired the highest-ranking woman in the military in his DEI purge President Donald Trump fired Coast Guard commandant, Admiral Linda L. Fagan, almost immediately after taking office, but she did not hear about it until she was at the Commander in Chief Ball that evening. Fagan found out she was fired as she was waiting to have a photo taken with Trump at the ball, according to a military official speaking to the New York Times. Fagan did not respond to a request for comment. The Department of Homeland Security sent the bulletin featuring news of her job termination to the Coast Guard leadership the morning after Inauguration Day
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Democrats tears into 'vile' and 'grotesque' Trump for blaming the plane crash on DEI • Sign up for the latest with DailyMail.com's U.S. politics newsletter Democrats unleashed on President Donald Trump on Thursday after he blamed diversity and inclusion policies and criticized his predecessors following the deadly plane crash. During his press conference on Thursday at the White House, the 78-year-old claimed he put 'safety' first while Presidents Biden and Obama prioritized politics in a jaw-dropping political attack. Trump's remarks came just hours after an American Airline plane collided with a military helicopter midair Wednesday evening near Reagan International Airport. 67 people were killed.
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump successfully plunges government into darkness as 8,000 DEI web pages stripped from internet • Trump signed an order to terminate any programs promoting 'gender ideology' More than 8,000 web pages from across the government have been taken down as President Donald Trump demands the federal workforce comply with his new orders ending diversity, gender and equality initiatives.
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump blames DEI for American Airlines crash that killed 67 President Donald Trump has claimed diversity and inclusion policies are behind one of the deadliest plane crashes in U.S. history. The commander-in-chief said the collision between a passenger plane and a military helicopter in Washington D.C that took 67 lives was a 'tragedy of terrible proportions.' He added that those flying the Black Hawk helicopter should have 'seen where they were going'. Speaking at the White House, Trump said the tragedy was entirely preventable as he slammed Diversity, Equity and Inclusion (DEI) recruiting practices in federal agencies.
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The truth behind Donald Trump's astounding claims Biden, Obama and DEI are to blame for crash • Trump blames DEI for American Airlines crash that killed 67 President Donald Trump has kept the focus on DEI hiring practices during two public appearances since the air crash in Washington, D.C. He signed an order citing 'problematic and likely illegal decisions during the Obama and Biden Administrations that minimized merit and competence in the Federal Aviation Administration.' And he said air traffic controllers need to be 'geniuses' to handle the stress and complex movements of aircraft during their tense and crucial work shifts.
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump obliterates DEI with new demand to place every federal diversity program employee on paid leave by 5 pm Wednesday Donald Trump quickly made good on his pledge to sever diversity, equity and inclusion policies in the federal government as he is set to lay off all DEI hires within 24 hours. The new Trump administration sent a letter to all heads and acting heads of government agencies on Tuesday, informing them all federal employees in DEI roles must be placed on paid leave by 5 pm Wednesday. All DEI offices in federal agencies are also being shuttered in the move, which comes after Trump signed an anti-DEI executive order in front of a cheering crowd at his inauguration on Monday.
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               JD Vance roasts the media for their 'funny' coverage of Trump's DEI remarks after DC plane crash Vice President J.D. Vance criticized the media for its portrayal of President Trump's comments linking diversity, equity, and inclusion (DEI) hiring to the deadly mid-air collision at Ronald Reagan Washington National Airport . In an interview with Fox News anchor Maria Bartiromo, Vance emphasized the connection between past policies and the current air traffic controller shortage. 'There is a very direct connection between the policies of the last administration and short-staffed air traffic controllers. That has to stop,' Vance said.
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Donald Trump to ban transgender troops and DEI military programs in latest executive order flurry President Donald Trump is turbocharging his attack on government diversity, equity and inclusion (DEI) programs by now banning the practice from the military. Trump plans to sign two executive orders this week that will both eliminate DEI from the military and prohibit transgender people from the services, DailyMail.com confirmed.
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump strips millions from DEI foreign aid programs funding Irish musicals, LGBTQ programs in Serbia and more • A top Republican is revealing the costly foreign aid projects frozen by Trump • CLICK HERE: Sign up for DailyMail.com's daily U.S. politics newsletter Donald Trump's order freezing foreign aid has sealed the spigot of U.S. taxpayer dollars flowing to DEI projects abroad, saving U.S. money from being 'lit on fire,' a top Republican says. House Foreign Affairs Committee Chairman Brian Mast (R- Fla. ) has revealed exclusively to DailyMail.com some suspicious federal expenditures that the State Department approved under Joe Biden.
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Seasoned pilot Lauren Sanchez blasts racist, sexist rage-baiting as Trump blames DEI for aviation disaster Seasoned pilot Lauren Sanchez has shared a reel blasting racist, sexist rage-baiting - days after President Donald Trump blamed DEI for the fatal American Airlines crash. The 55-year-old, who is soon to marry Amazon founder Jeff Bezos, re-posted a video by a NYU professor criticizing the marketing strategy of racking up clicks and views by stirring up division. 'There's something that sells more than sex, and that's rage. So trying to get people to start arguing with each other,' Professor Scott Galloway said in the reel titled 'Marketing in 2025'.
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DEI is to blame for Trump's near-assassination claims Secret Service agent Diversity, equity and inclusion initiatives within the Secret Service led to Donald Trump's near-assassination attempt over the summer, an agent has revealed. The bombshell testimony from an active Secret Service agent lends credence to skepticism that the agency tasked with protecting America 's top politicos has strayed from its core mission in a quest to be more inclusive, thus leading to two attempts on Trump's life in July and September last year. 'I believe agendas have taken priority at the United States Secret Service for a long time, which is why Butler and July 13 happened and why we got a president get shot,' 13-year veteran Rashid Ellis revealed.
## 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump berates Black Hawk helicopter crew for DC plane crash after targeting DEI • Air controller's scream of despair at moment of crash President Donald Trump tore into the performance of the Army Black Hawk helicopter team who died in a fiery crash with a passenger plane at DC's Ronald Reagan Airport, asking how they could have botched their predetermined flight route.
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Karoline Leavitt pledges Trump will bring down prices as she takes aim at 'crap' DEI projects Karoline Leavitt gave a blistering account of USAID's absurd spending after Elon Musk moved to shutdown the government aid agency on Monday. Speaking outside the White House, Donald Trump's press secretary held up a sheet of paper outlining the astonishing taxpayer disbursements, an apparent reference to Daily Mail's story.
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Female NTSB head stuns the press with her unexpected response to Trump's claim DEI caused the crash National Transportation Safety Board Chair Jennifery Homendy stunned reporters after being asked several ways if President Donald Trump jumped the gun by blaming the deadly D.C. crash on 'DEI' and previous administrations.
## 20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump signs executive order to eradicate DEI from the FAA and makes awkward JOKE about visiting plane crash site • READ MORE: Sign up for DailyMail.com's daily political email President Donald Trump doubled down on comments blaming DEI hiring practices for the air crash in Washington, DC and dismissed a question about an immediate visit to the site of the carnage with a joke about swimming. The new order came just hours after Trump held an extraordinary press conference where he blasted DEI and woke practices at the Federal Aviation Administration and complained that a commercial aircraft and Black Hawk helicopter were both at the 'same height' during the collision. Asked point blank if he was aware of any performance issues or disciplinary actions with anyone working at DCA's air control tower or the aircraft during the crash, Trump responded: 'No.'
## 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        NBC parent company's DEI initiatives probed by FCC as it becomes latest target of Trump administration NBC parent Comcast is now the subject of a federal investigation - one focused on the telecommunication firm's DEI initiatives and practices. FCC Chairman Brendan Carr sent a letter to CEO Brian Roberts revealing the agency's investigation Tuesday, stating its Enforcement Bureau had been directed to investigate at the behest of the Trump administration. 'I expect that this investigation into Comcast and its NBCUniversal operations will aid the commission's broader efforts to root out invidious forms of DEI discrimination across all of the sectors the FCC regulates,' Carr wrote in the correspondence.
## 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Woke DEI teacher complains about Trump removing their pronouns in parody-like speech • PODCAST: Listen to Welcome to MAGAland for the latest insider Trump news & gossip A woke teacher ranted about Donald Trump's rollbacks on transgender and DEI programs during a Washington State House of Representatives committee hearing. Tracy Castro-Gill, 49, the former leader of the Seattle Public School District's Ethnic Studies program, took the podium at a House Committee on Education public hearing on Thursday to complain about Trump's measures. 'My name is Dr. Tracy Castro-Gill, my pronouns are they/them. I am a disabled queer Chicanx educator and scholar in Washington state with my expertise on curriculum and instruction,' Castro-Gill said in her long-winded tirade.
## 23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pete Hegseth says Trump is 'exactly right' to blame DEI for DC plane crash and details the key to the probe • PODCAST: Trump's response to the tragic D.C plane crash - plus is project 2025 really a myth? Defense Secretary Pete Hegseth defended Donald Trump's criticism of DEI hiring practices in government and revealed new details about the investigation surrounding the fatal plane crash in D.C.
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pete Buttigieg responds to Trump's 'despicable' comments blaming HIM and DEI for DC plane crash • READ MORE: Trump says he has 'pretty good' idea what caused crash Pete Buttigieg fired back at Donald Trump, saying he should be 'leading, not lying' after the president blamed him, Barack Obama, Joe Biden and diversity hires for the collision of a commercial plane and military helicopter that took 67 lives. The former transportation secretary called Trump's comments 'despicable' and noted there were 'zero commercial airline crash fatalities' under his watch.
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Service members reveal how Trump can 'rejuvenate' the military after COVID purge and DEI 'demoralization' President Donald Trump declared during his inaugural address to reinstate thousands of service members fired by Joe Biden for refusing the COVID vaccine with back pay. 'This week, I will reinstate any service members who were unjustly expelled from our military for objecting to the COVID vaccine mandate with full backpay,' he said on Monday during his inauguration. During the pandemic, 8,400 service members who refused to be vaccinated for religious or medical reasons were forced out of the military.
## 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trevor Noah leads anti-Trump roast at the Grammys as Hollywood targets tariffs, celebrates DEI and trans rights A-listers used their glittering night of nights to stand up for DEI policies, transgender rights and take a swipe at President Donald Trump's key policies. Throughout the hours-long broadcast of the 67th annual Grammy Awards, artists from Shakira to Lady Gaga, and host Trevor Noah, spoke up share their thoughts on the state of affairs in the United States . 'I don't know if you know this, but there's been a few changes in Washington,' Trevor, who emigrated from South Africa in 2011, said.
## 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trans troops, Hunter's helpers, DEI fanatics: Wokest heads to roll as Trump vows to fire MORE in bloodbath The 'anti-woke' reckoning rages on. On Tuesday evening, President Donald Trump's administration ordered all government DEI offices shuttered no later than Wednesday at 5 pm. The employees of these federal departments and agencies are to be put on paid leave with the expectation that many will eventually be let go. It's all part of a Trump Team assault on former President Joe Biden's diversity, equity, and inclusion initiatives, branded 'forced illegal and immoral discrimination programs' in Trump's executive order signed Monday. White House staffers are now 'in the process of identifying and removing' over 1,000 presidential appointees from the Biden administration, who Trump views as obstacles to his DEI reforms and others. And the culling hasn't stopped with only 'the woke.' Trump insiders say this is just the start of a renewed mission to 'drain the swamp.'
## 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Donald Trump fires first female Coast Guard leader over her obsession with DEI • LISTEN: Welcome to MAGAland, our podcast on the latest inside the White House President Donald Trump has fired the female leader of the US Coast Guard over concerns about the border and her obsession with DEI policies.
## 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump evicts highest-ranking woman in the military from her home on short notice after her ouster over obsession with DEI policies The Trump administration gave the former highest-ranking woman in the military just three hours to leave her home following her ouster over her support of diversity, equity and inclusion policies. President Trump fired Coast Guard commandant, Admiral Linda L. Fagan, almost immediately after he took office on January 20 - leaving her to discover the news while waiting to take a photo with Trump at the Commander in Chief ball that night. Still, Fagan continued to live at her government-funded home on Joint Base Anacostia Bolling until she was abruptly evicted on Tuesday, NBC News reports.
## 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Left is privately bracing for a Trump-style DEI apocalypse if Dutton wins. These programs will be first on the chopping block - and you won't believe some of them existed in the first place, writes STEPHEN JOHNSON You walk into work at your government job and receive an alert that a scheduled 'cultural training session' has been cancelled. That's strange, you wonder. Then, you notice the usual welcome to country pop-up that greets visitors to your department website has been quietly removed. The reason why soon becomes clear.
## 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pam Bondi throws out DEI lawsuits against police and firefighters, saying no more 'quotas' Attorney General Pam Bondi announced she was throwing out DEI lawsuits against police officers and firefighters, which will dismiss several lawsuits begun in the Biden administration. The move is part of the Donald Trump administration's plan to end diversity, equity, and inclusion (DEI) programs.
## 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Government agency is caught deploying sneaky tactic to get around Trump's anti-woke purge The Bureau of Alcohol, Tobacco, Firearms and Explosives appeared to try and avoid Donald Trump's anti-DEI executive order by switching the job title of its Chief Diversity Officer. On Tuesday, Trump's administration ordered federal agencies to place all Diversity, Equity and Inclusion (DEI) hires on paid leave pending review and warned authorities not to use 'coded or imprecise language' to circumvent the move. But within a day of the order being announced, eagle-eyed online sleuths noticed the ATF's Chief Diversity Officer Lisa T. Boykin had a new job title, appearing to have been updated to 'Senior Executive.'
## 33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MSNBC guest launches unhinged attack on 'white folks' over price of eggs in 'Trump's disgusting America ' MSNBC contributor Elie Mystal ranted about President Donald Trump's first week in office, blaming white people and the price of eggs for his 'disgusting version of America .' Mystal, 46, went on the two-minute-long attack while speaking with anchor Ali Velshi on Saturday. The political commentator argued Trump's pardoning of more than 1,000 January 6 Capitol rioters should not come as a surprise to his voters.
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hollywood delivers a brutal response to Donald Trump's gender ideology crackdown as Mexican transgender musical Emilia Pérez and intersex drama Conclave run riot during the 97th annual Academy Award nominations • Do YOU have a story? Email tips@daailymail.com US President Donald Trump's vow to crack down on gender ideology got off to a shaky start on Thursday as the 97th Academy Award nominations were announced in Los Angeles. Newly inaugurated Trump has vowed to transform 'troubled' Hollywood's ailing film industry over the next four years with a promise to bring back its early to mid-twentieth century Golden Age.
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The black business owners who say DEI has never worked and that it 'isn't for us' • READ MORE: The public college that blows $13M on DEI and fighting 'whiteness' Former President Joe Biden's controversial diversity, equity, and inclusion (DEI) policies delivered some gains for black businesspeople, but often failed to land them federal government contracts, executives and experts have said. President Donald Trump in January signed two executive orders against equal opportunities in the workplace, after framing DEI as harmful to white men in his election campaign. Casey Cooper, a black woman who runs a long-haul trucking business, a male-dominated field, says Biden's DEI efforts didn't level the playing field for black entrepreneurs.
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump orders all federal employees to remove pronouns from their emails Donald Trump ordered federal employees to remove their pronounces from the email signatures as he continues his widespread purge of diversity, equity and inclusion initiatives from the government. Federal employees were sent memos ordering them to remove their pronouns from official government communications by the end of the week. 'Pronouns and any other information not permitted in the policy must be removed from CDC/ATSDR employee signatures by 5.p.m. ET on Friday,' read one message from the Center for Disease Control's Chief Information Officer Jason Bonander, according to a copy of the memo obtained by ABC News.
## 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Major update after thousands of government websites were set to go dark amid Trump's online purge U.S. government websites remained online and accessible on Friday, with the Office of Personnel Management (OPM) clarifying that media reports suggesting the sites would be taken offline were based on a misinterpretation of a memo. The memo, issued on Wednesday, instructed federal agencies to remove references to 'gender ideology' from contracts, job descriptions, and social media accounts. The message - issued in accordance with President Donald Trump's executive order mandating the government to recognize only two sexes - also outlined the steps for implementing the executive order.
## 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Madonna takes a swing at Donald Trump for 'dismantling' LGBTQ+ freedoms and tells her fans 'don't give up the fight' • Read More: Donald Trump to ban transgender troops and DEI military programs Madonna has blasted Donald Trump for 'dismantling' LGBTQ+ freedoms as the president plans to ban transgender troops and diversity, equity and inclusion military programs in his latest flurry of executive orders.
## 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Director of National Intelligence Tulsi Gabbard vows to crack down after kinky sex chats among NSA agents exposed Director of National Intelligence Tulsi Gabbard was irate and promised to root out National Security Administration agents who held lurid sex chats in sensitive government chat rooms in the name of DEI. The revelations of chats about 'polyamory and castration' came as President Donald Trump and Elon Musk's DOGE continue their effort to purge the federal government of woke gender ideology. A report by journalists Christopher Rufo and Hannah Goodman claimed that NSA agents engaged in wild chats on the NSA's Intelink messaging program 'featuring wide-ranging discussions of sex, kink, polyamory, and castration.'
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     NSA agents exposed for sex chats as Tulsi Gabbard vows to punish workers posting 'kinks, fetishes and polyamory' Director of National Intelligence Tulsi Gabbard was irate and promised to root out National Security Administration agents who held lurid sex chats in sensitive government chat rooms in the name of DEI. The revelations of chats about 'polyamory and castration' came as President Donald Trump and Elon Musk's DOGE continue their effort to purge the federal government of woke gender ideology. A report by journalists Christopher Rufo and Hannah Goodman claimed that NSA agents engaged in wild chats on the NSA's Intelink messaging program 'featuring wide-ranging discussions of sex, kink, polyamory, and castration.'
## 41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ted Cruz takes on 'woke DEI propagandist' government consultants raking in thousands • Sign up for the latest with DailyMail.com's U.S. politics newsletter As the Trump administration looks to root out and terminate DEI across the federal government, Senator Ted Cruz is getting in on the action. His team at the Senate Commerce Committee has been investigating diversity training provided to federal workers at the Commerce Department by the company NewPoint Strategies to the tune of thousands of dollars. But when committee staff requested a copy of the paid-for training, NewPoint Strategies stonewalled them for months, according to Cruz's team.
## 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Activist investor reveals Costco's defiant DEI stance is 'not as meaningful' as it may appear • READ MORE: Costco boldly defies Donald Trump's executive order Costco Wholesale, one of America 's most beloved retail giants, may have declared victory over critics of its diversity, equity, and inclusion (DEI) policies, but activist investors are warning that this fight is just beginning. Despite a resounding 98 percent vote against a proposal to reassess its DEI initiatives during Friday's shareholder meeting, the company's defiance has only ignited further outrage among those seeking to purge 'woke' practices from corporate America . Ethan Peck, deputy director of the National Center for Public Policy Research's Free Enterprise Project (NCPR), says Costco's decision to double down on DEI might not hold up as the political tides shift and consumer sentiment against such policies grows.
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CNN's shocking on-air dig at Trump during DC plane crash press conference CNN claimed President Donald Trump blamed DEI 'without evidence' during his press briefing on the deadly collision in Washington, DC .
## 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Elon Musk announces DOGE's first official act as Trump takes over in Oval Office Elon Musk has revealed the Department of Government Efficiency's first task since Donald Trump made the new agency official upon his return to the Oval Office. 'It begins,' the tech billionaire wrote alongside a post from the department's official X account. DOGE has set to work removing the Chief Diversity Officers Executive Council website from the U.S. Office of Personnel Management.
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MSNBC guest claims America is becoming 'less safe' as FBI paints over 'diversity wall' • READ MORE: Trump obliterates DEI with new demand to place agents on leave A former FBI agent appeared on MSNBC on Friday to claim America is 'becoming less safe' as the federal agency was seen painting over a 'diversity wall.' Frank Figliuzzi, 62, a former assistant director for counterintelligence at the Federal Bureau of Investigation, appeared on MSNBC's The Beat with Ari Mebler on Friday to claim the country is becoming more unsafe 'very quickly'.
## 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       CNN panel explodes into heated clash as pundit fumes she gets paid less than white male colleagues • PODCAST: Listen to Welcome to MAGAland - our new podcast revealing all the latest politics news and gossip A CNN panel about DEI descended into chaos after a guest claimed she is paid less than her white, male colleagues. Former White House staffer Ashley Allison exploded at CNN's Scott Jennings and panel member Arthur Aidala , a lawyer for Harvey Weinstein, during the heated clash.
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Oscars goes to war with Trump by nominating two trans dramas for 21 awards after president's two-genders law was branded 'shameless' by Hollywood wokerati The Oscars have gone to war with President Donald Trump by nominating a transgender star for an acting award and two trans dramas for 21 awards just days after he signed a law declaring the US will only recognize two sexes. The Academy has nominated Emilia Pérez, a musical crime drama focusing on a Mexican drug lord and his transition from male to female, for an astonishing 13 awards, including Best Film and Best Director. The film also earned trans star Karla Sofia Gascon a nomination for Best Actress in a Leading Role. Gascon has openly condemned Trump's gender identity law, branding it 'shameless'. She has also expressed concerns about the challenges the LGBTQ community could face under Trump's Administration, arguing in interviews that America is 'going backwards' and warning that 'giving power to the intolerant' will 'erode the little tolerance we have'.
## 48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump's Treasury chief Scott Bessent has witty comeback about being highest-ranking LGBTQ official in history Treasury Secretary Scott Bessent already made his mark by becoming the highest-ranking openly gay official in U.S. history. But when asked about it by Fox News' Bret Baier, Bessent brushed off it being a big deal.
## 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Aviation chiefs 'were recruiting people with targeted disabilities including intellectual problems and hearing/vision issues until last year' - as Trump vows to tackle 'diversity' in wake of crash disaster • READ MORE: All the catastrophic mistakes that led to deadly DC plane crash • READ MORE: Full list of all people confirmed dead in DC plane crash tragedy Aviation chiefs were 'recruiting people with targeted disabilities' until last year, it has emerged as President Donald Trump vows to overhaul diversity hiring after 67 people were killed when a American Airlines plane collided mid-air with an Army Black Hawk helicopter. Trump came under fire Thursday after suggesting diversity, equity and inclusion (DEI) initiatives may have played a role in the deadly crash. He accused his predecessors Joe Biden and Barack Obama of keeping qualified employees out of the Federal Aviation Administration (FAA) in pursuit of DEI - a remark that outraged Democrats across the nation.
## 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Costco boldly defies Donald Trump's executive order • READ MORE: Walmart nixes DEI and LGBT-themed products Costco and its shareholders have defied President Donald Trump and conservative activists by sticking to their DEI policies. At the company's annual meeting, they voted strongly against a proposal from a conservative activist group that challenged diversity, equity and inclusion policies at Costco. The vote was seen as an early test of investor views about the value of corporate DEI programs, which many companies added or beefed up starting in 2020 amid the Black Lives Matter movement.
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       NASA's woke boss admits agency wasted millions of taxpayer dollars on 'shameful' DEI programs • READ MORE: Everyone's saying the same thing about Trump's pick to run NASA NASA has ended its diversity, equity, inclusion and accessibility (DEI) programs after all federal agencies were directed to 'terminate' the initiatives. Staff received an email Wednesday from acting administrator Janet Petro, which said the space agency is 'taking steps to close all agency DEIA offices and end all DEIA-related contracts in accordance with President Trump's executive orders.'
## 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DOGE rips apart half a BILLION in DEI grants to 'develop anti-racist mindsets' at Education Department • CLICK HERE: Sign up for DailyMail.com's daily U.S. politics newsletter DOGE eliminated roughly half a billion dollars allocated to the Department of Education for DEI training grants within the past two weeks, according to the cost-cutting group. The official DOGE X account has been posting nearly every day since Donald Trump's inauguration about the contracts it has canceled and programs it has defunded as the Elon Musk-led group seeks to root out federal fraud, waste and abuse.
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Tom Hanks blasted for 'racist and disgusting' portrayal of MAGA supporter on star-studded SNL 50 Tom Hanks has been blasted for portraying a Trump supporter as a dimwitted 'racist' during a skit on Saturday Night Live's 50th anniversary celebration. The Hollywood legend made a return as Doug, a clueless rube who dons a Make America Great Again hat and performs surprisingly well on a mock game show called Black Jeopardy. Hanks first appeared as Doug on Black Jeopardy! in 2016 in an effort to depict both the differences and similarities between Trump voters and black culture. The character was brought back for the 50th anniversary of the NBC staple, which included comedy sketches from A-listers and SNL alums including Eddie Murphy, Kristen Wiig, Adam Sandler, Chris Rock, Bill Murray, David Spade and Jon Lovitz.
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Chiefs and Eagles players speak out on playing in front of Donald Trump with president set to attend the Super Bowl • READ MORE: NFL fans call for Super Bowl boycott over black national anthem Kansas City Chiefs and Philadelphia Eagles players are unfazed by the prospect of playing in front of Donald Trump in the Super Bowl on Sunday. It was reported on Tuesday morning that the president will be at the Superdome in New Orleans to watch Patrick Mahomes and Jalen Hurts battle for the Vince Lombardi Trophy. The game will be the first Super Bowl he has ever attended as President.
## 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pressure mounts on Costco over DEI policies: 'Why would they Bud Light themselves?' • READ MORE: Walmart nixes DEI and LGBT-themed products Attorneys general in 19 states on Tuesday demanded Costco ditch its DEI policies - and give staff jobs on merit. They point to concerns the practices open the retailer up to legal challenges since they can discriminate against those who are best qualified. 'Racial discrimination is both immoral and illegal hiring violates state and federal law,' Kansas Attorney General Kris Kobach said.
## 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump pauses ALL federal grants, loans and other assistance, leaked memo reveals President Donald Trump is now using the power of the purse to bring diversity, equity and inclusion programs in the federal government to a screeching halt. The White House budget office ordered federal agencies to freeze 'all activities related to obligation or disbursement of all Federal financial assistance,' which includes grants and loans that do not align with the new administration's priorities. This is not meant to target any 'assistance provided directly to individuals,' such as Medicare or Social Security.
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bill Maher praises Trump for mocking reporter's 'stupid question'... as he jokes about DC plane crash Bill Maher offered rare praise for President Trump over his controversial 'swimming' response to the Washington, DC , plane crash. The talk show host, 69, surprised some viewers as he defended Trump for mocking a question about visiting the crash site at the Potomac River , where 67 people lost their lives when a Blackhawk military helicopter crashed into an American Airlines jet on Wednesday night. The moment came when Trump fielded questions in the Oval Office on his administration's response the next day, saying he plans to see the area, but 'not the site.'
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Stephen A. Smith sends Democrats a message over trans issues after landing on 2028 President poll • READ MORE: Stephen A. Smith pleads with LeBron James over son Bronny Stephen A. Smith slammed both Republicans and Democrats for the nation's $36trillion debt but saved his sharpest rebukes for the American left and its focus on trans issues at an inopportune time. Speaking on his eponymous YouTube show, the ESPN pundit lectured the Democratic Party for 'frivolous arguments in regards to identity politics.' In particular, he blasted the left for highlighting 'transgender issues, as opposed to LGBTQ-overall issues,' while reminding the party that Americans are more concerned with economics.
## 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Staggering bonuses given to Costco executives for hitting DEI targets Costco dished out huge bonuses to executives who hit 'metrics concerning diversity', a report has revealed. Top bosses raked in a total of at least $217,333 between 2021 and 2024 for achieving social and environmental goals, according to a study by Fox Digital.
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MAGA Republicans unify on three-word response to Democrats outraged about USAID destruction • House Foreign Affairs Chairman Brian Mast sent out the memo • CLICK HERE: Sign up for DailyMail.com's daily U.S. politics newsletter Republicans are celebrating Donald Trump's foreign aid pause that's 'already paying dividends' and saving taxpayers money, according to an internal memo obtained by DailyMail.com. The president recently paused most outbound foreign aid for 90 days to give the State Department and other agencies including USAID a chance to review their expenditures.
## 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pete Hegseth FIRES top female military staffer as military gets the DOGE treatment • READ MORE: Pete Hegseth orders DOGE-inspired $50 billion in Pentagon cuts Defense Secretary Pete Hegseth allegedly fired his top female military staffer as the industry gets the DOGE treatment - with more dismissals possibly coming soon. Hegseth, Donald Trump's new Defense Secretary, ousted Air Force Lt. Gen. Jennifer Short, his senior military assistant, as part of a sweeping shake-up at the Pentagon, NBC News reported. Short's removal was not disclosed on Friday alongside other high-profile dismissals, but three officials familiar with the situation confirmed her departure to NBC News.
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Kevin O'Leary rips 'nuts' Costco for boldly defying Trump order after Walmart and major companies caved Shark Tank star Kevin O'Leary has slammed Costco for its decision to defy President Donald Trump and stand by its diversity, equity and inclusion efforts. Upon taking office, President Trump issued an executive order directing all federal agencies end their use of such efforts - which he claimed are unfair and distracting - and encouraged private businesses to do the same. Major retailers like Walmart announced that it would end its DEI efforts and get rid of some of its LGBT-products, while companies like Ford, Harley-Davidson, Loew's and Tractor Supply rolled back their diversity efforts amid backlash from conservatives.
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Costco confirms major food court change • READ MORE: Costco boldly defies Donald Trump's executive order Costco has confirmed that it will be swapping Pepsi for Coca Cola at all its food courts starting this summer. CEO Ron Vachris confirmed the change at the retailer's shareholder meeting earlier this month. A shareholder asked a question about the change, as rumors had been swirling that Costco was planning to drop Pepsi beverages.
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Kamala Harris, Michelle Obama and Taylor Swift all now share the same humiliation. Buckle up, liberals... you're not going to like what MAUREEN CALLAHAN has to say The resistance is dead - in less than three weeks. President Trump signs an executive order to prosecute and deport pro-Hamas, anti-Semitic foreign students to almost no pushback. Mexico 's president agrees to send 10,000 troops to the Southern border. Disney announces the abolishment of 'trigger warnings' put in place post-George Floyd, apologizing for the content of films made over 80 years ago. Goldman Sachs announces the end of their 'board diversity policy.' Zuckerberg's Meta fires 4,000 employees on Monday, citing his decision to 'raise the bar on performance management' - code for killing DEI. PBS fired two of their own DEI execs on Monday. And on Wednesday night, 75,000 federal workers, in the crosshairs of Trump and Elon Musk's efforts to cut bloating and waste, took buyouts.
## 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DOGE uncovers farcical $2.3m program training soldiers to 'speak and act in a DEI friendly' way Elon Musk's Department of Government Efficiency has terminated a multi-million dollar virtual reality project that taught soldiers how to have 'difficult conversations,' DailyMail.com can first report. The Air Force and Space Force were dolling out millions for a training program not to better enhance soldiers' fighting capability, but to 'help grow inclusive-minded leaders.' It was a priority for military officials under former President Joe Biden to address 'unconscious bias' in the military ranks and create a more 'inclusive' force, according to a White House memo.
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pete Hegseth orders DOGE-inspired $50 billion in Pentagon cuts The Pentagon is preparing to undergo billions in budget cuts. Defense Secretary Pete Hegseth has ordered his agency to work up a plan by Monday to slash 8 percent from the budget in each of the next five years - or $50 billion.
## 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Wokest' DEI government workers revealed... along with their staggering taxpayer-funded pay A conservative group has published a list of government workers who are earning huge sums for 'abusing Diversity, Equity and Inclusion' roles. The American Accountability Foundation works to 'expose the left's efforts to obstruct, subvert and sabotage the America First conservative agenda'. They launched a website - 'DEI watchlist' - where they shared the profiles and tax-funded pay of 10 federal staffers who they say exploit their DEI jobs. It includes donating to Democratic candidates and causes and working in DEI and other health equity operations. One of the federal workers named on the site told NBC News they feel the site has put a 'target' on their backs, and that they fear for their safety.
## 68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            America 's wokest company Disney makes major changes to classic films as it banishes DEI Disney is U-turning on its diversity, equity and inclusion (DEI) programs and restoring some of its classic films to their former glory on its streaming platform Disney+. In a note sent to employees on Tuesday, obtained by Axios, Chief Human Resources Officer Sonia Coleman detailed the company's policy changes that removed previous alerts about scenes involving racial or outdated stereotypes. Disclaimers had been put on older titles like Dumbo and Peter Pan, which warned viewers of 'negative depictions and/or mistreatment of peoples or cultures'.
## 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Warren Buffett's Berkshire takes a cryptic turn under Trump's shadow Warren Buffett's Berkshire Hathaway joined a growing list of American companies to publicly change their approach to discussing their commitment to diversity and inclusion in light of Trump administration's cracking down on DEI policies.
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The six biggest takeaways from Trump's first weeks in government... and what they tell us about the next four years Donald Trump marks two weeks in power on Monday and already there are clear signals how the next four years will unfold for America . Trump entered the Oval Office with all guns blazing, firing out executive orders, stunning foreign enemies and allies alike, and making fundamental changes that will reverberate for decades. The immigration system has been overhauled, a war on DEI launched, the January 6 rioters pardoned, trade wars threatened, attempts to take over Greenland and the Panama Canal are underway, and a purge of the federal bureaucracy has begun. Amid the whirlwind of policy edicts there was also a new name for the Gulf of Mexico, a reprieve for TikTok, the launch of a meme crypto coin, and a frenzy of social media pronouncements.
## 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Gayle King asks why there aren't more 'people of color' at Trump swearing-in CBS Mornings host Gayle King asked why there were not more 'people of color' invited to President-elect Donald Trump's swearing-in ceremony. King made the observation while watching guests flow into the rotunda of the US Capitol during Monday morning's inauguration proceedings. 'I have to say. I'm looking at this crowd. I do not see many people of color. Does anybody else besides me observe that?' King said. 'I'm fascinated by why that is?'
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Jessica Alves puts on a busty display in a skintight pink catsuit as she leaves the hair salon after revealing she fears for her safety amid President Trump's crackdown on 'gender ideology' Jessica Alves ensured she'd turn heads as she showed off her eye-popping curves and her new hair extensions after visiting Neto salon in Marylebone . The TV personality, 41, left her glossy blonde locks blow in the wind as she strutted out of the hairdresser in a vibrant all-pink look. She showed off her hourglass curves in a skintight catsuit that was worn partially unzipped to showcase her ample cleavage.
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Fans slam SNL's sour Trump assassination joke: 'When am I supposed to laugh?' • READ MORE: Lin-Manuel Miranda makes surprise SNL appearance Saturday Night Live has faced fierce backlash over a controversial comedy segment during its 'Weekend Update,' with fans slamming a joke about the Trump assassination attempt.
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Donald Trump's ex Marla Maples makes appearance at 2025 Grammys as former husband is blasted by stars • Have YOU got a story? Email tips@dailymail.com Donald Trump's ex-wife, Marla Maples, made a surprise appearance on the 2025 Grammys red carpet on Sunday as her former husband was blasted by stars during the night. The actress, 61, joined other celebrities at the annual event including Chappell Roan, Gracie Abrams and Taylor Swift.
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Jake Tapper left stunned as Stephen Miller explains why Trump ordered a surprise freeze on federal spending CNN's Jake Tapper was left speechless after a close aide to President Trump seemingly blamed employees voting for Kamala Harris as the reason they lost their job. Stephen Miller, President Trump's Deputy Chief of Staff for Policy, appeared on CNN's The Lead Tuesday to defend Trump recent executive orders - including one that paused all spending on foreign aid. 'There's two million employees in the federal government,' Miller said before making the shock claim.
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NFL to make controversial Super Bowl decision over racism message with Donald Trump attending showpiece • READ MORE: NFL fans call for Super Bowl boycott over black national anthem The NFL has reportedly chosen to remove 'End Racism' messages from end zones at the Super Bowl for the first time in four years this weekend. According to The Athletic, Sunday's showdown between the Kansas City Chiefs and Philadelphia Eagles in New Orleans will be the first Super Bowl since 2021 to not include the statement at each end of the field.
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        NSW Premier Chris Minns quietly removes he/him pronouns from his social media accounts • NSW Premier removes pronouns from Instagram page • Chris Minns' bio no longer includes his/he • READ MORE: Public libraries criticised for asking children for pronouns NSW Premier Chris Minns has ditched the pronouns 'his' and 'he' in his social media bio with his office claiming he was unaware they had been added.
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           USAID inspector general is fired by the White House after attacking DOGE and Trump The Trump administration has fired the inspector general of USAID just a day after he issued a sharp warning about the state of affairs within the organization. Inspector General Paul Martin was dumped on Tuesday via an email from the deputy director of the Office of Presidential Personnel which said his role was 'terminated, effective immediately.'
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Costco unseated as top wholesale store by rival pushing high-tech checkouts • READ MORE: Costco confirms major food court change Costco has lost its crown as the country's top warehouse club for customer service - overtaken by Sam's Club.
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Woman was passed over for promotion because she was not gay, Supreme Court case claims The US Supreme Court is set to weigh in on the case of a straight white woman from Ohio who claims she was passed up on a promotion for not being gay. Marlean Ames, 60, sued the Ohio Department of Youth Service, alleging she was denied a career advancement and then demoted from her position on the basis of her sexuality. In 2014, Ames became the Administrator of the Prison Rape Elimination Act (PREA). Three years later, she was assigned a new supervisor, Ginine Trim, who is a gay woman.
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Jessica Alves reveals she has been forced to cancel all US TV appearances over 'fears for her own safety' amid President Trump's crackdown on 'gender ideology' • Have YOU got a story? Email tips@dailymail.com Jessica Alves has revealed she has been forced to cancel all upcoming US TV appearances over 'fears for her own safety' following Donald Trump's inauguration. The Brazilian TV star, 41, who is transgender and a British Citizen, said she would not feel comfortable speaking about LBGTQ+ issues in the country's current climate of 'fear and uncertainty'. Following his inauguration president Trump signed an executive order as he the US would only recognise two sexes - male and female - which are 'not changeable', and demanded officials use the term 'sex' rather than 'gender'.
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whining Elizabeth Warren gives Elon Musk a swanky new nickname while complaining on MSNBC Democrat Elizabeth Warren branded Elon Musk 'co-president' while complaining that the billionaire is 'taking a wrecking ball' to the government in his new role. Speaking to MSNBC's Joy Reid on Wednesday, the Massachusetts senator warned that the pillars of government are under attack due to President Donald Trump's raft of executive orders. Warren didn't pull any punches, taking aim at Trump and the DOGE leader during her rant.
## 83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bill Maher's audience goes WILD as Kid Rock drops surprising view on Democrats Bill Maher's audience erupted in applause after his guest Kid Rock proclaimed his backing band was one of the most diverse, and void of 'DEI s***.' Rock, real name Robert James Ritchie, appeared alongside Maher on his show 'Real Time with Bill Maher', on Friday night. Maher asked the 54-year-old about his 2022 song 'My Kind of Country' which includes the lines 'My kind of country has a Trump and a JFK, an NAACP and a NRA.'
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Al Sharpton's DEI stunt backfires spectacularly after liberal icon marches in support of Costco: 'kiss of death' Costco shoppers warned that Al Sharpton's involvement in a 'buy in' celebrating the grocer's diversity, equity and inclusion (DEI) policies could be the 'kiss of death.' The retail giant and its shareholders defied President Donald Trump and conservative activists by sticking to their DEI policies last week. Sharpton, a controversial civil right activist, led 100 members of his National Action Network through the Harlem Costco to spend their money in a show of gratitude for the decision.
## 85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Political guru predicts Trump White House will COLLAPSE within 30 days • PODCAST: The biggest news and insider gossip from the Trump administration - listen to Welcome to MAGAland here Political guru James Carville forecasted Donald Trump's Administration will collapse within the next 30 days. The veteran Democratic strategist told Mediaite's Dan Abrams that Trump's popularity is sinking, and he believes the administration will implode from a lack of public support. 'I believe that this administration, in less than 30 days, is in the midst of a massive collapse and particularly a collapse in public opinion,' Carville said.
## 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump's reelection lands Army best free promotion in 15 years as recruitment swells to record high The U.S. Army hit its highest recruitment figures in more than a decade as a flood of young people joined up in the wake of President Donald Trump's election victory in November. ' America 's youth want to serve under the bold & strong ' America First' leadership of Donald Trump,' Trump's new Defense Secretary revealed in a post to his X account on Tuesday. And an Army recruitment command spokesperson confirmed to DailyMail.com that the branch has now reached 59 percent of its recruiting goal for Fiscal Year 2025.
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Professor fuels conspiracy theories after blaming Trump for future plane crashes just HOURS before DC tragedy A University of Maryland professor made an eerily-timed post blaming Donald Trump for future plane crashes just hours before the deadly collision in Washington, DC . Dr. Thomas F. Schaller, a political science professor at the University of Maryland, Baltimore County, posted to X slamming Trump for his handling of airline safety the morning of the devastating crash. 'An FAA employee I know confirms agency already lacks sufficient air traffic controllers. The so-called 'buyouts' and other attacks on federal employees won't help,' Schaller said.
## 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump issues an ultimatum to senior FBI agents in his government purge after Kash Patel vowed to 'not go backward' • Trump is focused on clearing out federal government A handful of senior FBI employees have been told to resign within days or be fired as President Donald Trump continues his war on downsizing the federal government.
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Raging Morning Joe star takes aim at Democrats as liberal circular firing squad escalates • PODCAST: Listen to Welcome to MAGAland - our new podcast revealing all the latest politics news and gossip Morning Joe's Katty Kay took aim at Democrats on Friday during discussions about the DC plane crash. The analyst chided progressives for failing to 'push back' on President Donald Trump, who wildly blamed the crash that killed 67 on diversity, equity and inclusion (DEI) initiatives in federal hiring. Shortly before, fill-in host Jonathan Lemire accused the president of politicizing a 'national tragedy' to 'attack his foes', paving the way for Kay's comments. The British journalist said she thought Democrats had missed an opportunity to call Trump, 78, out.
## 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bill Maher slams woke left's latest change to the Boy Scouts of America Bill Maher has hit out after officials changed the name of the Boy Scouts of America to Scouting America to promote inclusion. Speaking on his show 'Real Time with Bill Maher' on Friday night, the comedian, 69, expressed his concern over the name change which came into effect this month. Maher said: 'The whole f****** country is an Onion headline, the Boy Scouts of America cannot be called Boy Scouts anymore because it's exclusionary.
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CNN heaps shock praise on Donald Trump as he completes first week in office CNN's resident data guru could not help but praise Donald Trump after observing a rise in his approval rating Friday - four days into his presidency. Senior Political Data Reporter Harry Enten called the occurrence proof Americans were already 'lik[ing] what they're seeing', even after the president's plentiful pardons. The polling from Reuters/Ipsos showed Trump ending the week with what's undoubtedly his highest rating ever - a net favorability of six points.
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           One in five Democratic voters say Trump is doing a good job as his whirlwind start in office attracts new fans • J.L. Partners polled 1000 registered voters for their views on Sunday President Donald Trump's approval rating is at a historic high three weeks after taking office and even one in five Democrats think he is doing a good job.
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Army is BACK! Military releases new high-octane Trump-era ad... and it's a huge split from woke Biden one The US Army released its latest recruitment advert to promote the no-nonsense approach of the Trump era - and the differences between the Biden-era adverts were stark. In the latest video released this week, a tattooed Special Forces fitness trainer performed huge feats of strength in the gym, including deadlifting 500lbs raw. The clip also showed the burly trooper lifting a heavy yoke over his shoulders, before he says to the camera: 'Stronger people are harder to kill.'
## 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump preparing plans to dismantle the 'woke' Department of Education through executive order • READ MORE: Sign up for DailyMail.com's daily political email President Donald Trump's administration is preparing an executive order to begin dismantling the Education Department - while acknowledging the president lacks the authority to kill the agency entirely. Trump vowed during the campaign to end what he called 'wokeness' and 'indoctrination' at the agency.
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump releases message ahead of Super Bowl as he jets into New Orleans after playing golf with Tiger Woods President Donald Trump jetted off to New Orleans for the Super Bowl Sunday afternoon - with several events set to put him front and center before a global audience. He flew from Palm Beach hours after golfing with Tiger Woods on his Trump International Course.
## 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Murdered fire captain's ex lover drops bombshell about victim's wife after cops named her as prime suspect The ex lover of a murdered California fire captain says the victim's wife is a 'volatile person' as she dropped bombshell new claims about their relationship. Rebecca Marodi, 49, was found dead from multiple stab wounds inside her Ramona home on Monday. Police announced on Thursday they are investigating Marodi's wife, Yolanda Olenjniczak, 53, as the prime suspect in her murder. The slain firefighter, who had spent more than 30 years with Cal Fire, was killed just weeks after battling the Eaton Fire with thousands of her fellow crew.
## 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Fox host Jesse Watters turns on Trump and DOGE for 'callous' cuts after his veteran friend got the chop Fox News host Jesse Watters criticized Donald Trump after his friend, a 20-year veteran, is among Elon Musk's Pentagon cuts in DOGE's latest cost-saving initiative. On Wednesday, a report revealed that the Pentagon had provided the Trump administration with a list of probationary employees who could be targeted in the next slashes to the federal workforce. Watters took time on The Five to criticize the administration's approach and share the story of a close friend of his who was preparing to be 'DOGE'd.'
## 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Stephen A. Smith shocks Sean Hannity with brutal verdict on his former Fox colleague Pete Hegseth Stephen A. Smith delivered a stunning rebuke of former Fox News host Pete Hegseth, questioning his qualifications for the role of Secretary of Defense - all while appearing live on Fox News. Smith's remarks came during a heated discussion with Sean Hannity on Tuesday evening as the debate - which began on diversity, equity, and inclusion (DEI) initiatives - took an unexpected turn. The ESPN personality seized the opportunity to call out Hegseth's lack of credentials for overseeing the nation's military operations.
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FAA turned away 1,000 job applicants because of its DEI rules despite staff shortages, lawsuit claims The Federal Aviation Administration turned away 1,000 air traffic controller applicants due to its DEI policies despite a staff shortage, according to a lawsuit. Complaints over the FAA's hiring policies have resurfaced after American Airlines flight 5342 collided in midair with a helicopter over WashingtonDC, killing 67. In a suit filed in 2015, lead plaintiff Andrew Brigida, 35, claims the agency's obsession with DEI hiring was a catalyst in ensuring an accident was likely to happen - and reiterated this in an interview with The Telegraph on Thursday.
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             NILE GARDINER: The Donald's revitalised America could lead Britain to broad sunlit uplands - but Keir Starmer's doctrinaire socialists will blow the opportunity The atmosphere in Washington DC has been transformed this week. It is as if a gigantic generator has suddenly been activated in the heart of the capital. Disillusion has given way to hope, paralysis has been replaced by dynamism. After the last four years of incompetence, inanity and inertia under the Democrats in the White House, the advent of Donald Trump's second presidency feels like a powerful electric current surging through American politics. A new era of renewal beckons for the USA - and for the Free World. At his inauguration on Monday, Trump, aged 78 and seven months, became the oldest figure in history to take the oath of office. But he is far more energetic and ambitious than many other presidents, particularly his immediate predecessor Joe Biden, whose visible accelerating decline turned him into a national embarrassment.
## 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MAGA stars cut loose at Trump's inaugural ball as Jake Paul and Mike Tyson perform bizarre stunt MAGA celebrities Kid Rock and Jon Voight were just some of the celebs letting loose at Donald Trump's inaugural ball after he was sworn in as the nation's 47th president. A-listers and political heavyweight attended multiple galas in Washington DC to celebrate after Trump's historic inauguration earlier in the day. Jake Paul and Mike Tyson, enemies in the ring just months ago, were among those clearly ready to party and
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Donald Trump finally reveals Elon Musk's real job in federal government Elon Musk divulged in a joint interview with Donald Trump that he is merely the 'tech support' for the president. But Trump clarified that the billionaire's real role within the federal government is to 'get it done.' The president lamented to Fox News host Sean Hannity how executive orders are issued but not adopted effectively or in a timely manner. But he claims that Musk cuts out a lot of the bureaucratic process to streamline implementation.
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Employees fume as Trump wipes 'transgender' from CDC and deletes 'climate change' from agriculture department • READ MORE: Trump orders communications 'blackout' at CDC, FDA, NIH Several health-related government websites have gone dark amid President Donald Trump's pledge to root out wokeism from federal agencies.
## 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Experts reveal rating for Trump's second inaugural address President Donald Trump delivered a powerful first speech after his swearing into office in the Capitol Rotunda on Monday previewing his first sweeping actions. 'We are at a thrilling new era of national success,' said Trump as he took the podium just after noon. 'Our national decline is over,' he declared to cheers among the hundreds of lawmakers and top MAGA allies gathered.
## 105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump orders Treasury to stop 'producing new pennies' as he continues to target wasteful spending: 'literally cost us more than 2 cents' Donald Trump has ordered the Treasury to stop 'producing new pennies' as part of his latest measures to cut down on public spending. The president took to Truth Social moments after he attended the first half of the Super Bowl to announce the measure.
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump makes dramatic pivot on stance towards the World Health Organization... days after ordering exit • PODCAST: Listen to Welcome to MAGAland for the latest insider Trump news & gossip President Trump said he was considering U-turning on his decision to withdraw the US from the World Health Organization days after signing an executive order to do so. The president told a rally in Las Vegas ' Circa Resort & Casino on Saturday that he would 'consider doing it again', but was far from committal.
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The View's Joy Behar suggests Trump is abolishing the penny because he's 'jealous' of past presidents Joy Behar has claimed that President Donald Trump's mission to abolish the penny is because he's 'jealous of Lincoln.' During a discussion on ABC's The View on Tuesday, Behar and her cohosts discussed Trump's decision to stop 'producing new pennies'. The veteran TV host argued that 'small and petty' Trump wanted rid of the penny because he's 'jealous of everyone'.
## 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Donald Trump's new Transportation Secretary Sean Duffy seen performing raunchy dance in embarrassing video • PODCAST: Listen to Welcome to MAGAland - our new podcast revealing all the latest politics news and gossip Donald Trump's new Transportation Secretary Sean Duffy performs a raunchy 'Chippendale' striptease and gets his nipple licked in a cringeworthy clip from his forgotten past in reality TV. The resurfaced footage shows the man tasked with restoring confidence in America 's shaken airline industry prancing around in nothing but his tighty whities, socks, and eyeglasses.
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The eye-popping amount of money Elon Musk has already slashed from the Education Department as staff melt down • Terrified staff left hysterical as 'well drilled' DOGE storms hyper 'woke' agency Elon Musk's Department of Government Efficiency has saved $982 million after combing through the Department of Education and canceling outside contracts, according to the agency.
## 110 Donald Trump's America will make Harry and Meghan 'more unpopular than ever': Royal experts say new president's inauguration is a 'day of fear' for the Sussexes with their US residency under threat • READ MORE: Melania Trump launches her own cryptocurrency Donald Trump's return to the White House will be a 'day of fear' for Prince Harry and Meghan Markle, it was claimed today.The Duke and Duchess of Sussex will be watching events in Washington DC this afternoon with great interest - and trepidation, experts have told MailOnline.Details of the Duke of Sussex's visa application was kept secret by the Biden administration - but Mr Trump is under pressure to perform a U-turn.His wider political plans, which he will call a 'revolution of common sense' in his inaugural address later, could also hurt the Sussexes and their charitable and business interests.Harry and Meghan have faced a string of bombshell claims made against them in an excoriating Vanity Fair piece named ' American Hustle', which criticises behaviour in the five years they have lived in the US . They are said to be distressed by it.But royal expert and investigative journalist Tom Bower told MailOnline that Donald Trump will be at the front of their minds today, especially as he has promised not to give Harry 'special treatment' and said he is 'no fan' of his wife'.While Greg Swenson, a London-based financier and Chairman of Republicans Overseas UK who is in Washington for Mr Trump's inauguration, said that the president's return to power could send the Sussexes into meltdown.But added: 'They have [already] self destructed'.[item name=video id=6939629 style=2 /]Mr Bower believes that Trump's America could make Harry and Meghan more unpopular than ever - and the President coming down hard on them in public could further improve his personal ratings.'This must be a day of fear.
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pam Bondi SUES Chicago over sanctuary city laws after sending DOJ into frenzy with sweeping pro-MAGA directives Attorney General Pam Bondi is suing the state of Illinois and the city of Chicago over their liberal sanctuary city policies. Bondi , 59, got straight to work after she was sworn into office on Wednesday and didn't waste any time overhauling the agency around pro-MAGA directives. 'She's going to restore fair, equal and impartial justice and restore the constitutional rule of law in America ,' Trump said of Bondi in the Oval Office. Bondi got right to work by issuing 14 orders and directives to implement the administration's new priorities at one of the agencies least trusted by the MAGA base.
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Fiery moment NBC's Peter Alexander clashes with new WH press secretary Karoline Leavitt over Trump's mass deportation and spending freezes NBC News' chief White House correspondent shared a fiery exchange with Donald Trump's new press secretary after posing questions about the President's sweeping immigration crackdown and federal spending freezes. Peter Alexander confronted Karoline Leavitt during a White House press briefing Tuesday about Trump's mass deportation effort, which has seen Immigrations and Customs Enforcement (ICE) arrest thousands of undocumented migrants. Alexander, citing how Trump said they would 'start with the criminals', asked if violent offenders would be deported before other immigrants, before alleging that 'nearly half' of the 1,179 migrants arrested on Sunday found to 'have no prior criminal record'. Leavitt vaguely suggested that all undocumented migrants would be targeted equally, saying that Trump is 'focused on launching the largest mass deportation operation in American history of illegal criminals'.
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump amplifies attacks on 'activist' judges halting DOGE's work as Democrats fear MAGA will defy courts • Elon Musk has joined Trump in slamming judges • Democrats see judicial branch as their only hope of stopping Trump agenda President Donald Trump ramped up his attacks on the judicial branch after a federal judge said the administration had violated his order halting a the freeze on federal funding and ordered the government to 'immediately restore frozen funding.' Trump slammed the 'activist' judge, claiming Elon Musk's Department of Government Efficiency had found fraud and abuse and its work was being restricted.
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Melania and Ivanka's close ties to USAID exposed as Trump goes scorched-earth on the 'corrupt' agency • READ MORE: Blistering moment Karoline Leavitt slams USAID spending Melania and Ivanka Trump used thousands of dollars from USAID to fund pet projects during Trump's first term it's been revealed as the agency's spending comes under scrutiny from the president. The president has gone scorched-earth against the USAID this week, berating its use of tax-payer dollars and saying it had to be 'corrupt' in its spending.
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CNN's Scott Jennings gives liberals a blistering reality check on Elon Musk's DOGE CNN 'black sheep' Scott Jennings reminded the network's stable of liberals why Elon Musk has been brought in to clean up the swamp for Donald Trump. Musk has been a controversial figure since joining team Trump and being named the chairman of the Department of Government Efficiency, aka DOGE. Democrats have slammed Musk for attempting to shut down the U.S. Agency for International Development and other government programs.
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Jim Acosta reignites war with Donald Trump over DC plane crash Jim Acosta has reignited his years-long tiff with Donald Trump over the president's 'finger-pointing' following the deadly plane crash over Washington, DC . Hours before in a press conference, Trump blamed the Biden and Obama administrations' diversity, equity and inclusion (DEI) policies for the crash, which killed 67 people. In response, a newly unemployed Acosta took to X to slam the comments, quoting another president in the process.
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Gay combat veteran reveals why Trump was RIGHT to ban transgender troops in the military • READ MORE: Pete Hegseth reveals his priorities on his first day as Defense Sec. A gay decorated Iraq War veteran has vigorously defended President Donald Trump's controversial decision to ban transgender individuals from serving in the U.S. military. In a fiery statement that pulls no punches, Rob Smith, who describes himself as a vocal advocate for military readiness and a staunch patriot, laid out a devastating critique of the impact transgender service members have on the armed forces. 'Trump just signed an executive order banning all transgender [people] in the military. Let me tell you what this means,' Smith began in a nearly four minute video posted to X. 'First of all, there are upwards of 15,000 trans people that are 'serving' in the United States military right now. All of these people are non-deployable.'
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump makes bombshell decision on 'DOGE dividend' - here's how much every taxpayer could receive Donald Trump is considering Elon Musk's pitch to give American taxpayers a 'DOGE dividend' amid ongoing efforts to claw back billions of dollars of wasteful spending. Musk's Department of Government Efficiency has taken an ax to government departments with an edict to do whatever it takes to root out waste and fraud. On Tuesday, the billionaire Tesla founder and 'First Buddy' vowed to 'check with the president' after investment firm CEO James Fishback suggested giving taxpayers a slice of the savings in the form of a tax refund.
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       REVEALED: Elon Musk and DOGE's final goal as it launches blitzkrieg through the federal government Elon Musk's end goal has been revealed as he continues to slim down federal government through ruthless redundancies and the slashing of entire departments. The Department of Government Efficiency (DOGE), run by the billionaire SpaceX founder, has laid off thousands of federal workers during its first weeks in existence.
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The next 10 government agencies in DOGE's line of fire that ballooned under Biden • CLICK HERE: Sign up for DailyMail.com's daily U.S. politics newsletter Donald Trump's executive order to produce 'large-scale reductions' in the federal workforce may lead the DOGE directly to agencies that swelled under Joe Biden. According to data from the U.S. Bureau of Labor Statistics, the federal workforce grew by 4.8 percent in the first three years of the previous presidential administration.
## 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pete Hegseth reveals his top priority on his first day as Donald Trump's Defense Secretary Pete Hegseth arrived at the Pentagon for his first day serving as President Donald Trump's Secretary of the Department of Defense. Speaking with reporters outside the Pentagon in Arlington, Virginia on Monday, the newly sworn-in secretary revealed there will be a 'shift' at the DoD from the previous four years. He also detailed how taking control of operations at the southern border will be a priority for the Trump administration.
## 122                                                                                                                                                                                                                                                    Inside Trump's plan to make it easier to fire federal employees - and agencies have just 90 days to respond • Trump tried to make it easier to fire federal workers in his first term • Joe Biden overturned Trump efforts President Donald Trump is pushing ahead with his plan to make it easier to fire federal employees, blasting past roadblocks Joe Biden put in his path and giving agencies just 90 days to respond to his order.It's the latest in Trump's moves to shake up the federal government, coming after he froze foreign and domestic federal aid, and got rid of his first round of civil servants.Trump tried to purge the federal work force in his first term but ran out of time. Now the Office of Personnel Management announced a rebranded effort as part of Trump's war on the government.The OPM memo outlined a new designation for federal employees called: 'Schedule Career/Policy.' It is what Trump called 'Schedule F' when he pushed this plan in his first term.And the heads of federal agencies are given 90 days - until April 20th - to review all the positions in their agency to find those that fit into the 'policy-determining, policy-making, or policy-advocating character.'The OPM memo specifically orders employees who 'are not normally subject to change as a result of a Presidential transition' to be reviewed - those are employees who usually have broad protections from being fired or suspended.It could impact hundreds of thousands of federal workers. [item name=video id=6952159 style=2 /]It is the latest step in Trump's greater plan to purge the federal government of those who disagree with his agenda.
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ANDREW NEIL: Trump's bombastic blizzard of an inauguration speech threatened to provoke chaos. Then a startling realisation dawned on me... 'The Golden Age of America begins right now,' Donald Trump asserted right at the start of his inauguration address under the Capitol Rotunda. It's the sort of optimistic, high-falutin ambition with which incoming presidents traditionally pepper their inauguration speeches. This time it looked as if Trump was going to follow suit, in welcome contrast to the bleak and overdone ' American carnage' theme of his first inauguration address eight years ago.
## 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump signs bombshell executive order to make himself the most powerful president in history as he enacts controversial Constitutional theory • READ MORE: Donald Trump finally reveals Elon Musk's real job in federal government Donald Trump has signed an executive order that could make him the most powerful president in history by using an obscure Constitutional theory to enact his vision of authority. The new order seeks to 'rein in independent agencies' by seizing various departments that normally act in accordance with Congress and bring them under control of the executive branch in the White House.
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Madonna posts poignant message honoring Martin Luther King Jr. as President Trump is sworn in for second term • Have YOU got a story? Email tips@dailymail.com • READ MORE: Madonna eats F-word anti- Trump cake after shock election win • READ MORE: Snoop Dogg responds to Trump Crypto Ball controversy Madonna posted a poignant message honoring Martin Luther King Jr. on the national holiday in his honor Monday, concurring with as President Donald Trump being sworn in for the second time in Washington, D.C. The 66-year-old pop superstar took to Instagram with a series of images of King and text splayed across a clip of the 1963 March on Washington, expressing her resigned sentiments on the day.
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hamilton meets 'King Trump' as Lin-Manuel Miranda makes surprise SNL appearance in hilarious cold open as Timothée Chalamet is blasted for Jimmy Carter joke: 'Too soon' Lin-Manuel Miranda made a surprise return to his iconic role as Alexander Hamilton during Saturday Night Live as the comedy show now in its 50th year roasted Donald Trump over his first week of his second term in office. The show's cold open was a hit with fans, featuring a humorous take on the Founding Fathers drafting the Declaration of Independence before the group were interrupted by the newly inaugurated President Donald Trump.
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Army top brass blast Pete Hegseth in foul-mouthed rant about DEI overhaul An active-duty general in the US Army has blasted Pete Hegseth's anti-DEI crackdown in response to the military ending its diversity recruitment efforts. The anonymous soldier told Military.com the decision to abandon its hiring at a prestigious event for black engineers was 'f***ing racist.'
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SNL mocks return of 'King Trump' as host Timothee Chalamet delivers an off-color joke about Jimmy Carter Saturday Night Live mocked 'King' Donald Trump's new 'whitely' republic as Lin-Manuel Miranda made a surprise return in his role as Alexander Hamilton. As the comedy staple marked its 50th year, the cast roasted the President with James Austin Johnson portraying the 78-year-old Republican. In the sketch, Johnson's Trump boasted about his executive orders and cabinet picks and talked of being in his 'king era.'
## 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     NCAA makes ruling on transgender athletes in women's sports after Trump executive order • READ MORE: Lia Thomas' former teammates sue to scrub her records The NCAA has officially adapted a policy preventing trans women from competing in women's sports after President Donald Trump signed an executive order banning them on Wednesday. The top collegiate athletics governing body has now implemented new rules that will only allow people to compete in women's sports if they were assigned female at birth.
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ivanka Trump unveils new inner friendship circle after being reembraced by socialite pals • Ivanka spent time with her female pals at Miami Beach eatery Forte dei Marmi • The First Daughter looked radiant in one photo dressed in a sleeveless lilac top • READ MORE: Ivanka 'exposes' her hair extensions in embarrassing mishap Ivanka Trump unveiled her girl squad on social media on Tuesday evening as she enjoyed a fancy night out with her pals in Miami and tucked into a delicious-looking meal.
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Who ordered the runway switch minutes before the DC crash? Are DEI air traffic controllers to blame? Why did Biden's FAA chief suddenly quit? All the unanswered questions It was a clear, cold night in Washington DC on January 29, when at 8.47 pm, a bright orange and red flame suddenly erupted in the sky. A disturbing video - now seen by millions - showed the explosive collision between a commuter jet and a US military helicopter above the Potomac River close to Ronald Reagan Washington National Airport (DCA). Voice recordings of air traffic controllers tell of the horror. 'Crash, crash, crash,' one can be heard saying. 'This is an alert three.'
## 132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      British voters support raft of Donald Trump 's policies in blind polling test - but how many do YOU agree with? From declaring a border emergency to backing fossil fuel production, British voters have supported a raft of Donald Trump 's policies in a blind polling test. Some 2,000 voters were asked for their thoughts about the US President's views on migration, the environment and diversity - without being told they were his policies. Those being surveyed by polling firm Opinium were questioned on excerpts from Mr Trump 's inauguration speech in Washington DC last Monday, adapted for the UK.
## 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Squad' member Ilhan Omar has very choice words for Dems who attended Trump 's swearing in Ilhan Omar took a potshot Monday at Democrats who made hysterical claims about Donald Trump as a threat to Democracy while still attending his inauguration. Democrats in attendance included Bill and Hillary Clinton, Barack Obama and John Fetterman, as well as several other members of the opposition party. Omar was responding to backlash against entertainers who performed as part of the inauguration and suggested politicians should be held to higher standards.
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's sweeping changes to grants and loans begins now... here's what it means for you The White House sent a shockwave through Washington, D.C. - and the country - when its budget office directed agencies to put congressional funding on a temporary hold. Democratic lawmakers, progressive groups and those who could be affected by the pause were in an all-out panic on Tuesday as they scrambled to find out what the latest order means. President Donald Trump's White House Office of Management and Budget (OMB) sent a memo Monday night telling its agencies to halt loan, grant and other federal assistance pending review to make sure it's in alignment with the new administration's priorities. This means any initiatives that promote diversity, equity and inclusion (DEI) programs, 'wokeness,' transgender ideology and environmentalism could see their funding pulled.
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Black Hawk didn't follow air traffic controller's route before DC plane crash The Army Black Hawk that collided with an American Airlines plane was hundreds of feet outside air traffic control's predesignated, approved route ahead of the deadly crash over the Potomac River . The Black Hawk was supposed to be following 'Route 4' - a known path at Reagan National that allows helicopters to fly at low altitudes below 200 feet to avoid commercial jets arriving at the Virginia airport - sources told The New York Times. However, the military aircraft - which was marked as a PAT-25 - was flying above 300 feet and was at least a half-mile off course when it collided with American Airlines Flight 5342 on Wednesday evening, killing 67 people.
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Republican senator tells DOGE to slash two sides off the Pentagon and make it a 'Trigon' to save money • Sign up for the latest with DailyMail.com's U.S. politics newsletter Republican Alabama Senator Tommy Tuberville invented a new word to describe a triangle while advocating for spending cuts at the Defense Department.
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             SCOTT JENNINGS: America 's 'Worst Pundit' predicts Trump will collapse within 30 days... here's the glaring truth that utterly destroys his case The Rajun' Cajun is at it again. It was only last October when a New York Times column headlined 'Three Reasons I'm Certain Kamala Harris Will Win,' turned James Carville into a laughingstock among the political cognoscenti. Carville, who has been riding high on his role as a lead strategist in Bill Clinton's 1992 presidential campaign for 30 years, cited three reasons for his certainty: Trump had lost before, Harris's fundraising advantage and his own 'emotional' feelings.
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Jack Schlossberg has crude message for DOGE after JFK presidential library forced to close due to federal employee purge Jack Schlossberg told Elon Musk's Department of Government Efficiency to 'eat s***' after John F. Kennedy's presidential library was abruptly closed. The grandson of JFK posted a video of himself delivering a short rant on social media after the library and museum shut down at around 2pm on Tuesday. 'Due to an Executive Order concerning a 'reduction in force (RIF),' the JFK Library and Museum will be closed to the public until further notice,' read a note taped to the front door of the building.
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CBS anchor defends ludicrous USAID spending on trans operations and atheism overseas Florida Rep. Brian Mast butted heads with CBS journalist Margaret Brennan over 'woke' spending in the U.S. Agency for International Development. On Sunday, the congressman and Face the Nation host sparred over Mast's support of 'purging' the State Department. Mast said 'freezing aid' and 'purging of people throughout the State Department' is 'important and necessary' to securing the country.
## 140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Illegal migrant raids spark civil war as teacher turns on his own STUDENTS with startling message to ICE agents A Texas teacher sparked outrage after urging Immigration and Customs Enforcement (ICE) agents to target his own students because they 'don't even speak English'. The teacher, who goes by @HookEm232 on X but has not been identified by officials, sparked an investigation from the Fort Worth Independent School District following his social media posts. The educator responded to a daily update from ICE announcing how many arrests and detainers the agency had made against illegal immigrants amid President Trump's crackdown on his first week back in power.
## 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Liberal 'mean girl' cruelly trolls press secretary Karoline Leavitt and her older husband The popular liberal influencer who made a name for herself pushing Democrats to be more ruthless when calling out the opposition has set her sights on Karoline Leavitt, Donald Trump's 27-year-old press secretary. Suzanne Lambert, who has likened her political approach to Regina George from the cult classic film 'Mean Girls', has already torched Leavitt's makeup and style choices, while also going after the appearance of Rep. Nancy Mace (R- South Carolina ). Lambert, 33, recently upped the ante, suggesting in a TikTok video that Leavitt wants to cut off Medicaid for elderly people. Lambert pointed out that Leavitt's husband, 59-year-old Nicholas Riccio, will soon be eligible for the program for low-income seniors and joked that Leavitt has ulterior motives.
## 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Kid Rock's shocking claim about Kendrick Lamar and Colin Kaepernick after Super Bowl 2025 halftime show • READ MORE: Bill Maher slams Nike 'lie' in controversial Super Bowl commercial Kid Rock has sensationally claimed that Colin Kaepernick's NFL protest is the real reason why Kendrick Lamar was chosen to perform the Super Bowl halftime show.
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Elon Musk wants Trump to 'delete entire agencies' as part of his radical push to slash government spending Elon Musk has urged President Trump to 'delete entire agencies' as part of his push to radically cut the US government's spending. Musk made the comment during a video call to the World Governments Summit in Dubai where he spoke at length about what he described as the priorities of the Trump administration. He also made multiple references to 'thermonuclear warfare' and the possible dangers of artificial intelligence.
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    California congresswoman and her fellow liberals users blame Trump for deadly mid-air collision near Reagan airport A Democratic California congresswoman and other liberals have claimed that president Donald Trump is to blame for the deadly mid-air collision in Washington DC . 'I blame Donald Trump and his entire administration for this horrific crash and the deaths of all involved,' Rep. Sydney Kamlager said on X of the tragedy that left 67 dead on Wednesday night. 'This is what happens when you confirm incompetence and have such disdain for government. His government is trying to kill us, not keep us safe.'
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump scores big win as John Ratcliffe confirmed as CIA director • Ratcliffe served as director of national intelligence during Trump's first term • CLICK HERE: Sign up for DailyMail.com's daily U.S. politics newsletter Former director of national intelligence John Ratcliffe has been confirmed by the Senate to become the next CIA director.
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Saturday Night Live slammed after controversial comedy segment about the Trump assassination attempt Saturday Night Live has faced fierce backlash over a controversial comedy segment during its 'Weekend Update,' with fans slamming a joke about the Trump assassination attempt. Comedians Colin Jost and Michael Che took aim at President-elect Donald Trump during the show's 50th season's 'Weekend Update' Saturday night. The two comedians delivered a series of provocative jokes that quickly sparked social media fury, leaving some users asking: 'When am I supposed to laugh?' The most shocking moment came during a segment about Trump's inauguration, where Jost made a dark joke about Lincoln and Trump.
## 147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump blames media for federal funding freeze chaos and reveals move has already uncovered millions in waste • A judge had put a temporary halt on the order President Donald Trump rescinded his order freezing trillions of dollars in federal grants as he revealed millions in waste had been uncovered in a crackdown on woke government projects. Trump officials had argued funding should be put on hold while they ensured all government spending is in line with executive orders the president signed last week abolishing the Biden administration's DEI agenda. But the order, issued on Tuesday, led to confusion including Medicaid portals being temporarily shut down, and aid groups warned lives were in danger as critical funding for vaccines and other health issues was frozen.
## 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Endeavour Air slammed for 'DEI obsessed' social media after Toronto plane crash Endeavor Air has been slammed on social media for being too focused on DEI after one of their planes crashed at Toronto Airport on Monday. The Delta subsidiary had been operating Flight 4819 when it crash-landed at Toronto Pearson Airport amid windy weather.
## 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A MAGA star is born! On her first day, Trump's sparkling new press secretary Karoline Leavitt, age 27, hits the 'legacy media' with brilliantly barbed remark No one could remember the James S. Brady briefing room so packed, as new White House press secretary Karoline Leavitt stepped into the lions' den on Tuesday. Journalists were squeezed in like sardines, with no elbow room to write. 'This is epic,' said one. 'I think I might faint.' After a long slumber during the Biden years, many of the reporters today suddenly appeared ready to pounce.
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Terrified staff left hysterical as 'well drilled' DOGE nerds storm hyper 'woke' Department of Education Elon Musk's nerd army stormed into the Department of Education on Tuesday and saved over $900 million. Musk's DOGE lieutenants Akash Bobba and Ethan Shaotran, both 22, already have access to the department, NBC News reported. And as many as 16 DOGE team members have entered the premises as the agency begins to be ripped apart.
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Moment air traffic controller screams as American Airlines plane collides with Black Hawk helicopter over Washington • READ MORE: All the catastrophic mistakes that led to deadly DC plane crash • READ MORE: Full list of all people confirmed dead in DC plane crash tragedy An audio recording has captured the moment an air traffic controller screamed as a Black Hawk helicopter and American Airlines passenger jet crashed over DC . Air traffic control (ATC) operators were directing the doomed Black Hawk Sikorsky H-60 helicopter - marked as a PAT 25 - to pass behind the plane just seconds before the deadly crash occurred. 'PAT 2-5 do you have the CRJ in sight?' one controller said, according to a recording of the final communication between ATC and the three helicopter crew members.
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               FBI warns staff they are in a 'battle' as Trump purges agents who 'did their jobs in accordance with the law' and investigated Jan 6 riots A top FBI official has warned staff they are in the midst of a 'battle' after Donald Trump purged agents who investigated the January 6 Capitol riots. James E Dennehy, assistant director in charge of the FBI's New York field office, reportedly sent an email round in which he promised he would 'dig in'. He argued that agents are being targeted for doing their jobs 'in accordance with the law' in an email seen by The New York Times.
## 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Karoline Leavitt clashes with AOC over looming restraining order on Trump's federal funding freeze • The 27-year-old press secretary held her first briefing earlier this week • CLICK HERE: Sign up for DailyMail.com's daily U.S. politics newsletter Progressive leader Rep. Alexandria Ocasio-Cortez took a shot directly at Karoline Leavitt, calling Donald Trump's new press secretary her bad at her job. 'In case you're having a bad day at work, remember that at least you're not Trump's Press Secretary who tweets were so bad today she earned the entire administration a federal restraining order,' the New York Democrat wrote.
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DR TIM HAMES: The seven ways that Donald Trump will send shockwaves around the world The political recovery and restoration of Donald Trump is one of the most extraordinary events in modern history. It is, frankly, a sensation. Back in November, many predicted that even if Trump won, a slim majority in the houses of Congress would hobble him. But he won the popular vote and the electoral college quite easily: he rolled the dice and broke the bank to his advantage. What, then, will his second term be like? He has already shown his determination to force through his programme via an amazing avalanche of executive orders that he started to issue today. These are written orders issued by the president to the federal government which do not require congressional approval.
## 155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              KENNEDY: The truth of Barack Obama's hopelessly-delayed $830 million DEI nightmare of a presidential library that may never be built Bolting billionaires. Ballooning budgets. A racial discrimination suit from a thwarted subcontractor. Who needs Jussie Smollett? The Obama Presidential Center (OPC) is turning out to be Chicago's greatest hoax. Sprouting up on the city's South Side in 2021 like an Egyptian funerary complex, the Taj Barack has already taken nearly twice as long to build as any presidential library in history. And at an estimated cost of $830 million, it's the most expensive... by hundreds of millions. That's enough to make King Tut's mummy blush, but it's pretty standard when it comes to the modern gods of the Democratic party.
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump blames DC plane crash on DEI Trump blames DC plane crash on DEI
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Florida gets revenge on Target over tuck swimsuits and DEI obsession that sparked a culture war Newly-appointed Florida Attorney General James Uthmeier has taken aim at Target for its disastrous 2023 Pride campaign, which caused stock prices to plummet and put retirement pensions at risk. Uthmeier teamed up with America First Legal and the State Board Administration of Florida - which oversees state pension funds - to file the proposed class action lawsuit against the retailer in federal court in Fort Myers on Thursday, the Orlando Sentinel reports. It alleges that Target violated the Securities Exchange Act by not disclosing the risk to investors of its DEI initiatives and environmental, social and governance efforts - particularly with its 2023 Pride campaign that led to widespread boycotts of the company.
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DEI obliterated as Trump issues scathing order DEI obliterated as Trump issues scathing order
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Apple defies Trump's executive order on DEI Apple defies Trump's executive order on DEI
## 160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Disgraceful reason American flag was hung upside-down in Yosemite • READ MORE: Elon Musk calls for immediate destruction of NASA's $150 billion prized possession Millions of people flock to see the beauty of Yosemite National Park each year, but this month they were met with the strange sight of an upside-down American flag. Draped over the side of El Capitan, the famed 7,500-foot rockface in the park, was the nation's flag with the union pointing to the ground on Saturday.
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Axe-wielding squatters, pepper spray while I walk the dog... but the scariest part of my beloved LA's descent into squalor is the celeb I'm hearing could replace Newsom Standing in the burning rubble the day after wildfires had razed one of the most affluent areas in Los Angeles, I felt an overwhelming sense of sadness. Stepping through the smoking embers and past the burned-out shells of the schools and businesses of Pacific Palisades, my sense of grief for those who lost their homes and livelihoods overtook all other emotions. But today, two months after the fires displaced 80,000 people and caused an estimated $250 billion in losses, my sadness - like so many in LA - has turned to rage at those whose mismanagement and woke politics have destroyed a once-great city. The fact that brave firemen ran out of water because city officials had allowed reservoirs to run dry is just the start.
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Elon Musk's role in reshaping US revealed in subtle message that shows exactly where Trump found plan for federal workforce purge Elon Musk has hinted he is the mastermind behind Donald Trump's latest decision to purge federal government by posting a symbolic picture on X harking back to his infamous Twitter cleanse. The billionaire Tesla founder in 2022 sensationally took over Twitter and renamed it X to much dismay from staff, 80 per cent of whom found themselves unceremoniously sacked. At the time, he sent a letter to staff titled: 'A Fork in the Road' which warned he needed to be 'extremely hardcore' in order to 'build a breakthrough Twitter 2.0 and succeed in an increasingly competitive world.'
## 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump and Musk's DOGE fire team of lawyers trying to stop drunk pilots from flying A casualty of Donald Trump and Elon Musk's DOGE-led purge of the Federal Aviation Administration are a group of lawyers who work to keep drunk pilots out of the air. A source close to the matter told Rolling Stone that multiple legal offices within the FAA were hit by the 'bloodbath' cuts. Among those were attorneys responsible for helping to prevent pilots with drug and alcohol problems from getting in the cockpit. Many kinds of lawyers were 'abruptly' let go, according to the outlet, causing numerous staffers and officials to voice their concerns that the cuts were without cause. 'It's such a pointless bloodbath,' a source of the outlet said. 'Every time we try to figure out why this or that was done, the answers you get from the Trump and Musk guys usually amount to: Because we can.'
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Karoline Leavitt announces Trump will impose tariffs on Mexico , Canada and China this weekend • Trump berates Black Hawk helicopter crew for air crash after targeting DEI Donald Trump has announced a 25 percent tariff on Mexico and Canada and a 10 percent import duty on goods from China that will go into effect on Saturday. White House Press Secretary Karoline Leavitt made the bombshell announcement that Trump intended to launch a $1.6 trillion war with America 's biggest trading partners in an effort to boost domestic manufacturing and raise revenues for the federal government. 'Starting tomorrow, those tariffs will be in place,' Leavitt told reporters. 'These are promises made and promises kept by the president.' The tariffs threaten to drive up the price of everything from gas to and pickup trucks and guacamole dip and are an aggressive response to the flow of illicit drugs into the United States .
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Elon Musk considers 'DOGE dividend' that would send $5,000 check to all Americans following massive budget cuts Elon Musk showed interest in an idea that would guarantee a $5,000 payment, or 'DOGE Dividend,' to every American to show off the $55 billion in taxpayer funds saved. The Department of Government Efficiency revealed Tuesday that President Donald Trump has saved taxpayers a staggering $55 billion in less than a month. It said the savings were found through a combination of detecting and deleting fraud, canceling contracts and leases, and selling assets.
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           $50M in condoms for Gaza and 'trans operas' in Colombia : The staggering foreign aid projects Trump is blocking • House Foreign Affairs Chairman Brian Mast reveals Joe Biden's foreign priorities • CLICK HERE: Sign up for DailyMail.com's daily U.S. politics newsletter Joe Biden's use of U.S. taxpayer money to fund transgender operas in Colombia and transgender comic books in Peru will be totally undone by Trump, a top Republican told DailyMail.com. House Foreign Affairs Committee Chairman Brian Mast (R- Fla. ) has a laundry list of Biden-era State Department programs that are on the chopping block now that Trump is in the White House.
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Political guru James Carville's surprising advice for Democrats as minority party flails in attempt to combat Trump and Elon Musk The 'ragin' Cajun' James Carville has surprised Democrats by suggesting they 'do nothing' in response to Donald Trump and Elon Musk's takeover of the federal government. Liberals have been in a frenzy as they attempt to halt Trump and Musk's DOGE, which is ruffling feathers in Washington as bureaucrats and longtime government employees fear their jobs could be on the chopping block. Protesters against Trump and his policies braved frigid temperatures in parts of the U.S. Monday, shouting 'No kings on Presidents Day' in East Coast cities.
## 168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ivanka Trump stuns in Oscar de la Renta as she hugs Lauren Sanchez during candlelight dinner in Washington DC Ivanka Trump looked stunning in a custom Oscar de la Renta gown on Sunday night as her father held a candlelight dinner at the National Building Museum in Washington D.C. President-elect Donald Trump's eldest daughter could be seen with some of her father's most loyal and wealthy supporters just hours ahead of his inauguration to be the 47th president. Ivanka rubbed shoulders with Elon Musk and Amazon founder Jeff Bezos. At one point, cameras caught her hugging Bezos' fiancée, Lauren Sanchez. The fashion company described Ivanka's custom dress as a custom off-shoulder crystal and pearl floral-embroidered empire waist gown with silver stole.
## 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If Trump really wants to bring down the price of eggs, he can start by listening to Turkey and the long-forgotten 'Stans'. Because these energy giants can cut REALLY cut the price of gas... The blizzard of executive orders from the White House has gone down pretty well with the American electorate. Following a month of hyperactivity, President Donald Trump's approval rating stands at a respectable 44 per cent according to a Reuters/Ipsos poll. This is despite the seriously controversial nature of what he's been proposing. Trump has had some big wins. Rapid and dramatic action on illegal migration has proved popular. Trump's orders revoking aspects of DEI have struck a chord, particularly with his MAGA base. But some of the problems facing the 47th president will take real time to solve.
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ice skater, 16, killed in DC plane crash pulled off ultra-rare 'triple axle' jump hours before his death A 16-year-old ice skater, who tragically died in the DC plane crash, landed one of skating's hardest moves just hours before his death. Cory Haynos, of Virginia , landed the triple axel for the second time in his career on Wednesday morning - just mere hours before he would find himself on the doomed American Airlines Flight 5342. The triple axel - which sees an athlete spin in the air three times - was first performed by then-20-year-old Canadian Vern Taylor, who landed it in a 1978 competition.
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           USAID workers will be escorted to their desks and have 15 minutes to collect personal belongings from gutted agency HQ this week Former USAID employees will have just 15 minutes to collect their belongings as they are escorted to their desks before leaving the gutted Washington HQ later this week. A note circled by USAID Tuesday told staffers that 'this Thursday and Friday ONLY' they will 'have the opportunity' to collect their belongings from the office. Employees were warned that if they do not show up during the allocated slots, their possessions will be stored in a federal warehouse and could be damaged or lost. All staff will be scanned and X-rayed before they are allowed in and 'escorted to their workplace, where they will be permitted to collect their personal items'.
## 172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Head of Social Security abruptly resigns after clash with Elon Musk over DOGE's access to sensitive data The acting commissioner of the Social Security Administration has quit after a disagreement with Elon Musk over the 'First Buddy' and DOGE attempting to access government records. Musk has served as a sidekick to Donald Trump early on in his second term, using his role as DOGE chairman to attempt to cut unnecessary waste, fraud and abuse from government. Social security is no different, as Musk today shared staggering data showing there are millions of dead Americans still eligible for social security payments.
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Musk stunned as dozens of DOGE staff suddenly QUIT with scathing letter... as eye-watering new savings figure is revealed • CLICK HERE: Sign up for DailyMail.com's daily U.S. politics newsletter Department of Government Efficiency workers are revolting against Elon Musk and Donald Trump by signing a dramatic resignation letter vowing not to defund 'public services.'
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The four banned words in Trump's overhauled CDC that are sending workers into meltdown • READ MORE: I know why Trump left the WHO with its suspicious funding model Experts at the CDC have been banned from releasing any new studies or news releases with certain terms viewed as being woke. The agency has been told to withdraw any literature or pending publications that mention terms such as 'transgender,' 'LGBT', 'pregnant people' or 'immigrant.' Dr Sam Posner, the CDC's associate director for science, told employees in an email late Friday to axe phrases 'that promote or inculcate gender ideology or that have been flagged as at risk for such.'
## 175                                                                                                                                                                                                                                                                                                                    Trump tears into lazy federal staff who work from home and warns they will be FIRED if they don't return to office • READ MORE: Inside Trump's plan to make it easier to fire federal workers President Donald Trump on Wednesday said that federal employees who don't show up to work in their offices next month will be fired.He also said some may have to prove they don't work a second job, threatening employees with two gigs with dismissal. 'We have informed the federal workforce,' he said during the signing of the Laken Riley Act at the White House, 'that if they're working for the federal government, they must show up to the office on time and on schedule.''If they don't agree by February 6 to show up back to work in their office, they will be terminated,' he added.Trump noted he expects some downsizing of the federal work force as a result of his order.'We think a very substantial number of people will not show up to work, and therefore our government will get smaller and more efficient,' he said.His latest threat is part of his continuing effort to purge and downsize the federal government.As a sweetner to his return-to-the-office order, up to two million federal workers will be offered buyouts if they don't want to return to the office.The Trump administration started sending emails to thousands of federal workers Tuesday evening, offering them a chance to voluntarily vacate their government posts while remaining on the payroll for months.The email was linked to Trump's executive order demanding federal employees return to the office.
## 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Internet goes wild for hulking Special Forces agent spotted with Pete Hegseth on early morning run The internet has gone wild for a hulking Special Forces agent after he was spotted on an early morning run with Secretary of DefensePete Hegseth. Hegseth, 44, was pictured pumping iron and jogging outdoors during a trip to Germany , where he is visiting senior military leaders at US command centers. But social media users were more interested in a man pictured flanking Hegseth, who appeared to be one of the US Special Forces agents stationed in the country.
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     New footage of American Airlines crash shows doomed jet and Black Hawk helicopter's lights could be seen from over a mile away - so how did they not spot each other? • READ MORE: All the catastrophic mistakes that led to deadly DC plane crash • READ MORE: Full list of all people confirmed dead in DC plane crash tragedy New footage of the American Airlines crash shows that lights on both the doomed passenger plane and Army Black Hawk helicopter could be seen from more than a mile away before the two aircraft collided, killing 67 people. The footage shows the moment the plane, flying near the US Capitol building, was approaching to land at DC 's Ronald Reagan Washington National Airport on Wednesday. Lights from both aircraft are seen flashing as they continue to fly towards each other, before crashing in mid-air. A fireball then erupted in the night sky and both the plane and helicopter tumbled into the icy Potomac River .
## 178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FAA to make huge safety update after 67 died in DC plane crash The Federal Aviation Administration plans to announce it will reduce arrivals at Washington Reagan National Airport in DC , after a deadly collision between a helicopter and an American Airlines jet killed 67 people. The FAA told airlines late on Wednesday that the reduction from a maximum of 28 to 26 arrivals per hour would reduce future risks - but will also increase average delays from 40 minutes to 50 minutes. The email, seen by Reuters, said investigators from the FAA and National Transportation Safety Board 'have expressed concern for our tower personnel on duty, who have an increased level of stress while also having a front row view of the accident recovery.'
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump continues purge by dismantling DEI from another agency Trump continues purge by dismantling DEI from another agency
## 180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump gifts Elon Musk the Lincoln Bedroom at the White House after turning DOGE office into sleeping quarters • PODCAST: Get the latest insider news and gossip on our new politics show - Welcome to MAGAland. Listen wherever you get your podcasts Elon Musk is bringing his 'hardcore' work ethic to DOGE as he's reportedly told allies he's been sleeping in their Washington offices. The DOGE chairman has kept at the same pace as Donald Trump's fast-moving administration, already pitching several ideas and ensuring that Trump's vision is carried out at the highest level.
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Devastating Pennsylvania plane crash scene pics emerge as American flyers unnerved by second deadly accident Devastating photos have emerged of the Philadelphia plane crash that killed six as American flyers are voicing their concerns over the back-to-back deadly incidents. Large rescue and emergency crews were spotted cleaning up the wreckage of the Philadelphia plane crash outside of Roosevelt Mall in Philadelphia on Saturday morning in pictures taken from the scene. Scraps of metal, blackened debris, and personal items could be seen littering the ground.
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DOGE finds millions of instances of social security fraud in database including a 360-year-old and 'vampires' Elon Musk today shared staggering data showing there are millions of dead Americans still eligible for social security payments. The Department of Government Efficiency (DOGE) is investigating wasted taxpayer money as a matter of urgency after Donald Trump promised voters huge savings at the federal government. Musk posted a chart on X showing that there are more than 20 million Americans listed over the age of 100, including 3.9 million in the 130-139 range, more than 3.5 million aged 140-149 and more than 1.3 million in the range 150-159. There is even an 'alive' citizen aged over 360, according to the records.
## 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump drops European Union tariff bombshell as astonishing new front opens up in global trade war • Trump berates Black Hawk helicopter crew for air crash after targeting DEI Donald Trump has announced he will impose tariffs on the European Union - on the eve of slapping new 25 percent tariffs on Canada and Mexico and a 10 percent tariff on China. Trump said at the White House Friday he would 'absolutely' put tariffs on the nation's EU allies. 'The European Union has treated us so terribly,' Trump told reporters as he inked new executive orders. 'You want the truthful answer or should I give you a political answer?' Trump said when asked about it - underlying his commitment to the issue. He said the tariffs on the EU would be 'very substantial,' without providing details.
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump's telling remark about JD Vance 's brilliant wife Usha ... and what it reveals about America 's future When President Trump took to the podium on inauguration night after a whirlwind of balls and parades, there were two women he wanted to highlight. The first, as expected, was the First Lady, who stood adoringly next to him in a mesmerizing black and white gown. But it was his telling compliment about the second that reveals more about America 's future than many would have realized at the time.
## 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What to know about Trump's first executive orders as the president renames the Gulf of Mexico • Follow DailyMail.com's live coverage of the first day of Trump's second term Donald Trump is signing approximately 200 executive orders on Monday in a massive crackdown on Day One of his second term. The orders cover a wide range of issues from immigration policies, to gender identity issues and even deregulating the permitted flow of water from shower heads. 'Today, I will sign a series of historic executive orders,' Trump said during his inaugural address from the Capitol Rotunda on Monday. 'With these actions, we will begin the complete restoration of America and the revolution of common sense - it's all about common sense.' One of his more interesting proposals is to rename or restore previous titles to landmarks and bodies of water bordering the U.S. , including the new 'Gulf of America.'
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump doubles down on DEI claims after DC plane crash Trump doubles down on DEI claims after DC plane crash
## 187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Report: Trump fires Coast Guard leader over border and DEI Report: Trump fires Coast Guard leader over border and DEI
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Roseanne Barr digs at Trump's 'Special Envoy' stars... after claiming she was frozen out by MAGA inner circle • Have YOU got a story? Email tips@dailymail.com Roseanne Barr made a dig at President Trump's new celebrity 'special envoys' in a rare interview this week, after claiming she was frozen out by his inner circle. The fallen former TV icon, 72, whose career imploded after she made a series of racist tweets, first pledged her allegiance to Trump's MAGA movement in 2018 and revealed she hopes he makes a cameo in her new show. The star, who flashed her rose chest tattoo during the chat, was asked about the appointment of Jon Voight, Mel Gibson, and Sylvester Stallone as Special Ambassadors to represent Hollywood to the world. Quizzed on 'three white men' getting high profile government roles and whether she would join them or form a DEI in LA , the star said: 'No, I'm on my own baby, I'm above all that.'
## 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Google scraps DEI hiring targets as big tech bends to Trump Google scraps DEI hiring targets as big tech bends to Trump
## 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Weary GOP lawmakers lash out at 'childish' Elon Musk for drastic DOGE cuts during secret House meeting Republicans in the House turned out to be a surprisingly tough crowd for Elon Musk in a secret meeting meant to go over cuts made by the Department of Government Efficiency. The massive DOGE federal review has already saved about $65 billion in taxpayer dollars, the group claims. Those billions in savings came from DOGE cutting many contracts for foreign aid, DEI education, thousands of recently hired federal employees and more.
## 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Riley Gaines stunned as trans activist claims Paralympians should compete against Olympians in gender neutral competition • READ MORE: Lia Thomas' ex-teammates sue NCAA to erase her records While the debate of the inclusion of trans people in sports has taken a sharp turn toward the 'no' side in recent weeks, there are still many who are advocating for complete unilateral acceptance in athletics.
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Musk savagely trolls whining federal workers as attempts to seize highly-sensitive $5 TRILLION system hits major stumbling block in emergency court hearing challenging DOGE's power Elon Musk mercilessly mocked federal workers upset over DOGE's effort to transform multiple government agencies - even after the billionaire 'first buddy' suffered his first blow in an 11th-hour court showdown. The Tesla founder updated his X bio on Wednesday to unveil his new government title as 'White House Tech Support' while his acolytes in the Department of Government Efficiency continued to mine large swaths of sensitive data. Musk's latest troll sent a blunt message to critics about his prominence in President Donald Trump's orbit - even as Democrats scramble to limit his ever-expanding powers.
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How Trump administration is begging federal workers to take the 'buyout' and visit their 'dream destination' • Trump berates Black Hawk helicopter crew for DC plane crash after targeting DEI The Trump administration has sent a second 'fork in the road' email to 2 million federal employees talking up an offer to resign - this time dropping in enticing language about enjoying an 'extended vacation' and touring 'dream destinations.' It offers the lure of no-show, no-work jobs, benefits that keep accruing over time, and even dangles tropical getaways in an effort to persuade employees to move on, according to an email obtained by DailyMail.com.
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doomed Black Hawk helicopter's call sign sparks fresh mystery following DC plane crash The call sign for the doomed Black Hawk helicopter that crashed into an American Airlines plane and killed more than 60 passengers has sparked mystery as the public struggles to make sense of the tragic incident. The Black Hawk was marked as a PAT 25, which stands for priority air transport and is usually reserved for when the Army is conducting VIP missions, such as having officials onboard. The Army has confirmed no officials were onboard the aircraft, which was carrying three soldiers, a standard sized crew, according to Fox News Journalist Jennifer Griffin.
## 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Democrats tear into Trump for blaming the DC plane crash on DEI Democrats tear into Trump for blaming the DC plane crash on DEI
## 196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             All the shocking ways USAID spent your money • CLICK HERE: Sign up for DailyMail.com's daily U.S. politics newsletter The United States Agency for International Development (USAID) was set up in 1961 to provide American money for aid overseas. But in recent years it has used tens of millions of U.S. taxpayer dollars for some shocking expenditures. The agency has now been shuttered because Donald Trump and Elon Musk have found that the aid being doled out often does not accomplish core U.S. missions, like expanding education and improving infrastructure.
## 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CNN gives Karoline Leavitt nasty new nickname after first White House briefing CNN has baptized new White House press secretary Karoline Leavitt as a 'spinmeister.' The network's fact-checker Daniel Dale accused Leavitt, 27, of spinning information regarding a pause of federal grants and loans during her first White House press briefing on Tuesday. Leavitt was repeatedly asked about the spending freeze, and said payments for Social Security, Medicare and food stamps would not be affected. However, she was criticized for not saying what would happen to nonprofit programs like Meals on Wheels.
## 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Pete Hegseth says Trump is 'right' to blame DEI for DC plane crash Pete Hegseth says Trump is 'right' to blame DEI for DC plane crash
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RICHARD LITTLEJOHN: Trump has shocked the world by doing exactly what he promised. If only evasive, petulant Starmer would put Britain first for once, too Tomorrow night Donald Trump will become the first sitting president to attend the Super Bowl, American Football's answer to the FA Cup and Premier League championship rolled into one. The reaction of the 71,000-strong crowd will be telling. It's a reasonable bet that his reception will lift the roof off the New Orleans Superdome, packed with both NFL and Trump supporters from Middle America . In November, Trump won Missouri and Pennsylvania , home states of finalists Kansas City Chiefs and the Philadelphia Eagles. Even those who backed the hapless Kamala Harris - including Taylor Swift, girlfriend of the Chiefs' star player Travis Kelce - would be well advised to keep their disapproval under their non-MAGA hats.
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Musk urged to abolish Planned Parenthood funding as report reveals abortion clinic horror stories Conservatives are urging Elon Musk to take his Department of Government Efficiency team through Planned Parenthood amid shocking claims about the organization. The New York Times recently reported about what a sorry state many clinics are, lacking money and in some cases staff trained poorly, with botched abortions and IUD insertions gone awry. While Republicans have always opposed Planned Parenthood for performing abortions, many are now asking Musk to be the vessel for cutting funds.
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Gov agency caught using sneaky tactic to get around Trump's DEI purge Gov agency caught using sneaky tactic to get around Trump's DEI purge
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Disney scraps woke trigger warnings on family favourites such as Dumbo and Peter Pan in a bonfire of diversity, equity and inclusion policies Disney is ditching its severe woke warnings on family favourites such as Dumbo and Peter Pan. The American entertainment giant becomes the latest to quietly tweak disclaimers on its decades-old films featuring themes of racism or relying on ethnic stereotypes in the wake of US President Donald Trump's return to the White House.
## 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Elon Musk's DOGE lieutenant's X-rated online pseudonym leaves CNN hosts flummoxed One of Elon Musk's DOGE staffers who goes under the self-proclaimed nickname 'Big Balls' has left a CNN host discussing his moniker on-air shocked. In a segment where Outfront's Erin Burnett claimed that Musk's 'government experts' at DOGE were not given a background check, the host shared the anatomical pseudonym of Edward Corestine. 'So, this is a 19-year-old high school graduate who has used the unfortunate nickname "Big Balls" online,' said Katie Drummond, Global Editorial Director for Wired, while appearing on the segment.
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Target is banned from Pride parade as revenge for axing DEI policies Target has been banned from participating in the Minneapolis Pride parade after the retail store decided to axe its DEI program. The retailer has long supported Twin Cities Pride, but after news broke of the company deciding to cut back on its policies, the pride organization's Executive Director Andi Otto banished the store and its $55,000 in funding. The parade organization took to social media on Sunday to share that the company's decision - announced in a newsletter on Friday - was 'the breaking point', even though Target was expected to sponsor the parade again this year.
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Coca-Cola boycott brewing amid rumors staff are 'reporting colleagues to ICE' Coca-Cola is facing calls for a boycott after rumors spread online that the company reported its workers to immigration. The 'Freeze Latino Movement' was launched as a response to President Donald Trump's executive orders targeting immigration and diversity, equity and inclusion (DEI).
## 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Up to 74m Americans unable to access healthcare after Trump's federal funding freeze causes Medicaid chaos Officials in all 50 states have reported disruptions to their state Medicaid programs, which provide health coverage to the poor, due to the Trump administration's abrupt funding freeze. The halt on federal grants and loans was announced in a vaguely worded two-page memo directed at 'federal agencies' without further specification, sowing widespread confusion about whether the 72 million Americans who receive care through Medicaid would be affected. White House Press Secretary Karoline Leavitt sought to clear up confusion with reporters at the administration's first press briefing Tuesday, telling reporters: 'To individuals at home who receive direct assistance from the federal government, you will not be impacted by this federal freeze.'
## 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Clay Travis makes shock Donald Trump ESPN prediction and says they regret being 'too left wing and woke' • READ MORE: Clay Travis calls iconic sportscaster 'd***head' for LA fire remarks Outkick founder Clay Travis has tipped Donald Trump to appear on ESPN's College GameDay in 2025 after claiming the network is backtracking from its 'woke' agenda. Travis, who is a contributor for rival college-football show Big Noon Kickoff on Fox Sports, was one of many to blast ESPN for not showing the national anthem and moment of silence in memory of New Orleans terror-attack victims on its main channel during this month's Sugar Bowl.
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Charlamagne Tha God gives brutal take on Vivek Ramaswamy's DOGE exit and predicts Elon Musk will 'crash and burn' • PODCAST: On Welcome to MAGAland, we dive into the JFK files, that Gavin Newsom kiss & Trump's latest sparring matches Charlamagne tha God had a tense exchange where he predicted Elon Musk would 'crash and burn' with Vivek Ramaswamy after discussing his quick exit from DOGE. Ramaswamy, 39, departed the fat-cutting new agency he was supposed to run with Elon Musk before it could even get started in Donald Trump's administration. The former presidential candidate has been rumored to be running for governor of Ohio in 2026 instead.
## 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Get this numbskull off my show!' Moment furious LBC host Iain Dale orders US columnist is taken off air during row over Donald Trump's claims that diversity hiring was to blame for Washington DC plane crash An LBC radio presenter has branded a journalist a 'numbskull' for backing Donald Trump's claim that diversity hires were to blame for the Washington plane crash. Iain Dale hit out at American author Kurt Schlichter for supporting the US President's suggestion after the deadly crash on Wednesday - before kicking him off the show. Mr Trump had said in a news conference about the horror incident yesterday that diversity efforts at the Federal Aviation Administration (FAA) had led to slipping standards - even though he acknowledged the cause of the crash was unknown. After an American Airlines plane with 64 people on board collided in the sky with an Army helicopter, the President blamed air traffic controllers, the helicopter pilots and Democratic policies at federal agencies, without giving evidence for his claims.
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CNN star Jake Tapper blasted for penning new book 'exposing' the cover up of Biden's health decline he 'actively participated in' CNN's Jake Tapper is facing ridicule for penning a book about the 'cover-up' surrounding Joe Biden's health despite claims he and his network did the same. 'Original Sin: President Biden's Decline, Its Cover-up, and His Disastrous Choice to Run Again,' by Tapper and CNN contributor Alex Thompson, provides an in-depth look at the former president's 'serious decline' and cover-up. It was announced Wednesday morning, by the the book's publisher Penguin Press. Within hours, onlookers were expressing ire toward CNN and airing accusations of hypocrisy - as the network advertised the looming May release.
## 211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The American farmers at the heart of Trump's war with USAID who are struggling to survive President Donald Trump's ongoing efforts to dismantle the US Agency for International Development (USAID) and freeze federal spending is wreaking havoc on the bottom lines of farmers all across the nation. Prior to Trump ordering the closure of USAID and the firing of its employees - an act that was carried out by Elon Musk and his Department of Government Efficiency - the agency ran food aid, disaster relief and disease prevention programs in over 100 countries on a $40billion annual budget. American farms supply 41 percent of the food that USAID then goes on to distribute around the world to populations often near starvation, according to a 2021 report by the Congressional Research Service. Trump also de-fanged USAID through an executive order pausing all foreign aid for 90 days to make sure the money going out is consistent with US foreign policy. Two lawsuits were filed this week by nonprofits seeking to overturn the order, calling it an 'unlawful and unconstitutional exercise'.
## 212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      How Obama's FAA used a skewed multiple-choice quiz to prioritize DEI applicants and bar the brightest from air traffic controller jobs A job questionnaire for aspiring air traffic controllers introduced by the Obama administration was designed to meet secret DEI target numbers, DailyMail.com can reveal. The aspiring controllers were given extra credit for being 'risk takers', in the bizarre multiple-choice quiz to secretly prioritize DEI applicants. It required virtually no knowledge of aviation to pass but top marks were awarded to candidates who 'need a great deal of time to complete assignments' and 'take chances very often'. And playing three or more sports in high school was rated more valuable than having a stint as an air traffic controller in the military.
## 213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Swift justice for influencer who filmed herself calling for Elon Musk's murder and boasted about not paying tax A US attorney has honed in on an influencer who called for Elon Musk's assassination while making a bold admission about paying taxes. Social media creator Sarah C Roberts shared a video to TikTok where she threatened the billionaire's life before boasting about how she's skipped taxes for the past eight years. The controversial video garnered immense attention, including from Musk and Acting United States Attorney Ed Martin of the District of Columbia , who vowed to take action against Roberts. Though the influencer's accounts have since been deactivated, Libs of TikTok reposted a recording of the video to X on Monday.
## 214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Joe Rogan exposes Biden's top 'inappropriate spending' tactic after DOGE's findings • PODCAST: Listen to Welcome to MAGAland - our new podcast revealing all the latest politics news and gossip Joe Rogan claims former President Joe Biden diverted Americans from noticing 'inappropriate spending,' and that the Department of Government Efficiency (DOGE) is cracking down. The podcaster, 57, sat down with comedian Bridget Phetasy on his show 'The Joe Rogan Experience' on Monday as the pair discussed the 'beach balls' Biden 'tossed around' during his time in office. Since Donald Trump returned to the White House on January 20, Elon Musk, who he appointed as the head of DOGE, has been uncovering and dismantling projects that have been funded by billions of US taxpayers' dollars. 'It's not just the money being spent, it's what it's being spent for and what's going on, which is an enormous propaganda machine,' Rogan, a Trump ally, said.
## 215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Costco plummets down list of top supermarkets as biggest customer bugbears damage its reputation Costco's reign as the top grocery store has come to an end. After leading rankings for an influential customer satisfaction survey in 2024, the wholesale giant has slipped to seventh place in 2025 - with its  score falling from 85 percent to 81 percent. The American Customer Satisfaction Index (ACSI) survey asked customers about their experiences at 19 grocery stores. Costco's shoppers reported a nearly 5 percent satisfaction drop since 2024.
## 216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bill Maher eviscerates former Obama speechwriter over Dems obsession with trans issues: 'You want to lose every election?' • PODCAST: Listen to Welcome to MAGAland - our new podcast revealing all the latest politics news and gossip Bill Maher eviscerated a former speechwriter for Barack Obama over Democrats' ongoing obsession with platforming transgender rights issues. The 'Real Time' host and comedian said the controversial issue alienated everyday voters, most of whom are more interested in policies involving the economy or other matters relevant to their lives. Speaking to former Obama speechwriter Jon Lovett, on the Pod Save America podcast on Sunday, Maher warned that following the same trajectory would cost Democrats the election time and time again.
## 217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              All the 'crazy' USAID programs on blast by Republicans... including a bizarre $25K drag queen show in Ecuador Shocking foreign aid spending on drag shows and other woke DEI projects abroad has been laid bare at a congressional hearing. The House Foreign Affairs Committee held a session titled 'The USAID Betrayal' examining how the government agency, and the State Department, allocated tens of billions of dollars in recent years to 'crazy wasteful' programs. Donald Trump and Elon Musk's Department of Government Efficiency (DOGE) has recently sought to dismantle USAID after pausing all foreign aid it distributed and discovering suspicious payments.
## 218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Tiny rural Pennsylvania town tears itself apart over politics and pronouns A small Pennsylvania town has remained deeply divided in the wake of a school board decision on transgender athletes and preferred pronouns. The Elizabethtown school board voted 8-1 on January 28 to pass two gender policies, reported Fox 43. One policy mandates students are only allowed to participate in sports that align with the gender they were born with.
## 219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       How America quietly funded Iraqi Sesame Street for years Democrats have run to the defense of USAID spending $20 million to produce a slick Iraqi version of Sesame Street after Elon Musk's DOGE exposed the use of US taxpayer money to fund foreign influence campaigns. USAID handed the grant to a nonprofit called Sesame Workshop, which delivers a humanitarian the 'early childhood development initiative' known as Ahlan Simsim, or 'Welcome Sesame'. The project is made up of direct healthcare outreach programs, alongside a version of the popular kids program screened to around 29 million children in the Middle East and north Africa, often in areas where schooling has been disrupted by war.
## 220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diversity in the NHS means staff are now promoting 'anti-whiteness', warns Health Secretary Diversity and inclusion in the NHS has gone too far with some staff now promoting 'anti-whiteness', Wes Streeting has warned. The health secretary said there are some 'really daft things' being done in the name of equality that risk undermining its cause. He said the health service must get back to the fundamentals of what equality means, so everyone gets high quality care.
## 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Joy Reid demands Congress subpoena Elon Musk and raft of DOGE staffers Joy Reid has demanded Congress subpoena Elon Musk and his baby-faced staffers at the Department of Government Efficiency (DOGE) over the agency's radical spending cuts.
## 222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Back to petroleum at last: BP's switch back to fossil fuels is a seismic U-turn, says MAGGIE PAGANO Murray Auchincloss is to be applauded. It takes courage to admit mistakes, and even greater courage to try to fix them, especially when you are in the public spotlight. But that's what the BP chief executive is doing. He's dropping most of its ambitious renewable targets and focusing again on increasing oil and gas production to boost profits. Where you can take issue with the Canadian boss is his description of this shift as a reset, albeit a fundamental reset.
## 223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DC plane crash widow reveals fateful choice that killed husband and saved her life • Follow DailyMail.com's live blog for updates on the American Airlines plane crash A grief-stricken widow who lost her husband on American AirlinesFlight 5342 when it crashed in Washington DC has revealed they had to make a split decision on who would be on the flight. Natalya Gudin and her husband Alexandr Kirsanov coached two young figure skaters and had to decide which one of them would accompany them to Kansas for the National Development Camp for figure skating.
## 224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Tulsi Gabbard fires more than 100 intelligence agents over transgender sex chat messages Donald Trump's director of national security announced she was firing more than 100 people from 15 intelligence agencies for having sexually explicit conversations on a government messaging service.
## 225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Megyn Kelly's brutal takedown of CNN pundit and her meltdown over being 'paid less than white male colleagues' • READ MORE: CNN panel ignites into heated clash as guest fumes over 'pay gap' Megyn Kelly ferociously attacked a CNN pundit who had a meltdown on air claiming she is paid less than her white, male colleagues. The journalist ripped into former White House staffer Ashley Allison, 42, during her hit show on Friday, discussing the 'terrible race-obsessed panel of yelling' seen on CNN's NewsNight.
## 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Mark Zuckerberg suffers ultimate humiliation after whining to staff 'everything I say leaks' Mark Zuckerberg was humiliated on Thursday after he complained to Meta's entire staff that his internal remarks kept getting leaked. 'We try to be really open and then everything I say leaks,' the 40-year-old billionaire told Meta's more than 70,000 employees in an 'all-hands' meeting, according to The Verge. 'It sucks.'
## 227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doomed Black Hawk chopper was rehearsing Trump's evacuation to a nuclear bunker when it slammed into American Airlines jet, online sleuths claim as more wild conspiracy theories emerge The doomed Black Hawk chopper had been rehearsing Trump's evacuation route to a nuclear bunker before its deadly crash, online sleuths have claimed. American Airlines Flight 5342 was approaching Washington's Reagan National Airport at around 9pm on Wednesday when the military chopper and plane collided in mid-air, before falling into the Potomac River , killing 67 people. The plane held four crew members and 60 passengers, while the helicopter was carrying three soldiers during a night training exercise 'on a standard corridor for a continuity of government mission', Pete Hegseth, Trump's defence secretary, said. 'The military does dangerous things. It does routine things on a regular basis. Tragically, last night, a mistake was made.'
## 228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Macmillan Cancer Support is criticised for recruiting a £100k a year DEI director - despite recently axing a quarter of its workforce Macmillan Cancer Support came under fire yesterday for recruiting a £100,000-a-year Head of Equity, Diversity & Inclusion - despite recently axing a quarter of its workforce. The charity said the successful applicant will 'drive cultural change' and 'build a truly inclusive environment, where all colleagues belong and can do their best work'. The job advert also says the chosen candidate will be required to work only 34.5 hours a week, splitting their time 'between home and our London Office'.
## 229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Karoline Leavitt throws Democrats' own words back in their faces in brutal takedown amid DOGE protests Karoline Leavitt, 27, is trolling Democrats who are afraid of DOGE with a reminder that their party leaders Barack Obama and Joe Biden wanted to cut federal spending in the past. Liberals have been in a frenzy as they attempt to halt Donald Trump's and Elon Musk's DOGE, which is ruffling feathers in Washington as bureaucrats and longtime government employees fear their jobs could be on the chopping block. Top Democrats have protested alongside federal employees outside of government agency headquarters to demand that DOGE and its lieutenants stop their quest to root out waste.
## 230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DOGE prepares gold reserve 'audit' after top Republican invites Elon Musk to review Fort Knox Sen. Rand Paul is inviting Elon Musk to come to his state of Kentucky to review the largest reserves of gold in the U.S. A libertarian X account with 2 million followers asked the leader of the Department of Government Efficiency (DOGE) to set his sights on Fort Knox to make sure the U.S. supply of gold is still in its reserves. Musk questioned why the gold supply is not reviewed every year, leading to speculation that he could look into the military base with the fortified vault full of U.S. gold.
## 231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Chilling 'conspiracy theory' about Black Hawk helicopter in DC plane crash is TRUE The US Army helicopter involved in Wednesday's midair collision with American Airlines flight 5342 had been practicing for the event of an attack on the capital. Officials have confirmed that the three soldiers, who all perished, had been rehearsing a plan that involves the evacuation of the White House when their Black Hawk collided with the passenger jet just before 9pm on Wednesday night. Defense sources confirmed the nature of the training exercise to CBS News, after internet sleuths had floated a theory online that it was doing exactly what sources say.
## 232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Passenger onboard plane departing DC airport shows how 'crazy close' choppers fly next to commercial crafts A Milwaukee father of two has shared a shocking video of two helicopters flying eerily close to a commercial plane in Washington DC last week. Kyle Salewski, a Technical Solutions Engineer at Direct Supply, was onboard a passenger jet about six days ago when he saw the choppers gliding near his window over Reagan International Airport. The short clip, which was posted on X, showed the copters flying in a straight file and landing on a base near the airport mere feet away from Salewski's plane.
## 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             All the catastrophic mistakes that led to DC plane crash as it is revealed air traffic controller left tower early • Follow DailyMail.com's live blog for updates on the American Airlines plane crash An air traffic controller was allowed to leave their post just before American Airlines Flight 5342 collided in midair with a helicopter over Washington DC . That's according to insiders who spoke with The New York Times and an internal FAA report that has started probing the tragedy that killed 67 people, including three soldiers. The collision took place as the American Airlines flight, carrying 60 passengers and four crew, made its final approach to Ronald Reagan Washington National Airport shortly before 9pm ET. That night, an air traffic controller at Reagan National was left to handle both helicopter traffic and manage planes - which should have been a divided duty.
## 234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Woke 'plot' to axe face of Founding Father from Washington state flag George Washington could be removed from the flag of the state that bears his name, with local Democrats accused of a woke plot to erase him from history. Washington state lawmakers want to redesign their current emblem from 1923 that sees the United States ' first president's face sit in the center of a green background. Progressive Dem politicians Strom Peterson, Julia Reed and Greg Nance introduced House Bill 1938 to the state legislature.
## 235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wife of slain California fire captain believed to have fled to Mexico as police issue arrest warrant for murder • READ MORE: Haunting final words of murdered fire chief The woman suspected of stabbing her California Fire Captain wife to death is believed to have fled to Mexico amid an urgent hunt for her whereabouts. Rebecca Marodi, 49, was found dead from multiple stab wounds to her neck, chest and abdomen last week inside the Ramona home she shared with her wife and her mother. Days after the tragic discovery, police announced an investigation into Rebecca's wife, 53-year-old Yolanda Olenjniczak, as the prime suspect in her murder, warning the public that she is still on the loose. In a new development, authorities have issued a warrant for Yolanda's arrest, as she is believed to have fled to Mexico following the horrific killing, the Los Angeles Times reported.
## 236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CNN panelists at each other's throats over resigned DOGE staffer's 'racist' posts in fiery exchange Panelists on CNN got into a heated exchange about racism in government after a Department of Government Efficiency (DOGE) staffer resigned over insensitive social media posts. Progressive writer Touré and Representative Ro Khanna joined CNN's NewsNight with Abby Phillip to discuss the resignation of Marko Elez, 25, after it was revealed he had posted comments saying he 'was racist before it was cool'. Elez - who also advocated to 'normalize Indian hate' - was one of two employees at DOGE that was granted access to $5 trillion in the Treasury payment systems.
## 237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Lady Gaga slammed for 'odd and meaningless' political Grammys speech: 'Hollywood is a cult' • Have YOU got a story? Email tips@dailymail.com Fans have reacted furiously Lady Gaga using her acceptance speech to make a political statement in support of the transgender community at Sunday night's Grammy Awards. After accepting the Grammy for best pop duo/group performance with Bruno Mars, she declared that trans people were 'not invisible'. 'Trans people deserve love. The queer community deserves to be lifted up. Music is love,' she said.
## 238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The truth behind rumor DC crash Black Hawk co-pilot was transgender servicewoman Jo Ellis A transgender Black Hawk pilot has been wrongly named as one of the three US Army personnel flying the helicopter that collided with a plane in Washington DC . Jo Ellis, 34, was misidentified as the female co-pilot of the doomed chopper on Thursday. A shaken-sounding Ellis picked up the phone when called by DailyMail.com Friday morning, confirming that she was not killed.
## 239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump to sign order creating a new 'Iron Dome' U.S. missile defense system • Israel says missile defense system is 90% effective • Building such a system in U.S. is estimated to cost $2.5 trillion President Donald Trump will sign an executive order today to create an 'Iron Dome' style defense system in the United States , DailyMail.com has learned. It would be an American version of the famed Israeli missile defense system. Incoming Defense Secretary Pete Hegseth hinted the order was coming when he walked into the Pentagon on Monday, his first day on the new job.
## 240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Lady Gaga makes political speech about transgender community at the 2025 Grammys • Have YOU got a story? Email tips@dailymail.com Lady Gaga spoke out in support of the transgender community while accepting the trophy for best pop duo/group performance at the 67th Grammy Awards on Sunday alongside her Die with a Smile duet partner Bruno Mars. 'I just want to say tonight, that trans people are not invisible,' the 38-year-old pop diva said onstage LA's Crypto.com Arena.
## 241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          How warnings about Black Hawk helicopter's safety systems date back decades and have been linked to dozens of deaths • READ More: Flights resume out of Reagan Airport after DC plane crash: Live blog The deadly collision of a Black Hawk and passenger jet in Washington DC shocked the nation Wednesday, sparking an investigation into what caused the mid-air crash. While Republicans pointed to DEI and Democrats blamed President Donald Trump, reports show there have been serious warnings about the helicopter's 'systemic failures' for decades. There have been at least 10 major accidents that killed more than 40 soldiers since 2014 on American soil, including the three who lost their lives during a training flight last night. Senator Kirsten Gillibrand ( NY -D) called for an investigation into 'a disturbing pattern of incidents' back in 2021 and Senate Majority Leader Chuck Schumer raised concerns about 'maintenance issues' two years later.
## 242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Critics Choice Awards 2025: Chelsea Handler ROASTS Justin Baldoni and Blake Lively in opener • READ MORE: 2025 Critics Choice Awards winners • READ MORE: The best-dressed stars at 2025 Critics Choice Awards • Have YOU got a story? Email tips@dailymail.com Chelsea Handler delivered a roast of A-list stars during her opening monologue at the 30th Annual Critics Choice Awards, held at Barker Hangar in Santa Monica on Friday. The comedian, 49, took aim at Blake Lively, 37, and Justin Baldoni's, 41, ongoing legal battle, before poking fun of Nicole Kidman's Babygirl sex scenes and teasing Ariana Grande for 'dating a munchkin' during the star-studded show. Chelsea, who introduced herself as 'your DEI host', started by roasting It Ends With Us stars Blake and Justin, who were not present, as she thanked them for providing the country with a 'distraction.'
## 243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSNBC star Rachel Maddow set for courtroom humiliation over shocking on-air slurs NBCUniversal has agreed to settle a $30 million defamation suit filed by a Georgia gynecologist after on-air talents - including Rachel Maddow - falsely labeled him a 'uterus collector.' Dr. Mahendra Amin sued in September 2021 after NBCU hosts like MSNBC's Maddow reported claims he performed 'mass hysterectomies' on ICE center detainees with impunity - allegations that later turned out to be false. Documents filed in the US District Court for the Southern District of Georgia Thursday show how MSNBC's parent has since agreed to settle - with talks about a number now underway. 'The parties are diligently working to finalize the language of the settlement agreement,' a notice stated, after a Georgia judge already ruled that Maddow, Chris Hayes and Nicole Wallace all made 'verifiably false' statements about the doctor.
##     publication_16 publication_type_17 pub_copyright show term ticker
## 1       MailOnline     Web Publication            NA <NA>   NA     NA
## 2       MailOnline     Web Publication            NA <NA>   NA     NA
## 3       MailOnline     Web Publication            NA <NA>   NA     NA
## 4       MailOnline     Web Publication            NA <NA>   NA     NA
## 5       MailOnline     Web Publication            NA <NA>   NA     NA
## 6       MailOnline     Web Publication            NA <NA>   NA     NA
## 7       MailOnline     Web Publication            NA <NA>   NA     NA
## 8       MailOnline     Web Publication            NA <NA>   NA     NA
## 9       MailOnline     Web Publication            NA <NA>   NA     NA
## 10      MailOnline     Web Publication            NA <NA>   NA     NA
## 11      MailOnline     Web Publication            NA <NA>   NA     NA
## 12      MailOnline     Web Publication            NA <NA>   NA     NA
## 13      MailOnline     Web Publication            NA <NA>   NA     NA
## 14      MailOnline     Web Publication            NA <NA>   NA     NA
## 15      MailOnline     Web Publication            NA <NA>   NA     NA
## 16      MailOnline     Web Publication            NA <NA>   NA     NA
## 17      MailOnline     Web Publication            NA <NA>   NA     NA
## 18      MailOnline     Web Publication            NA <NA>   NA     NA
## 19      MailOnline     Web Publication            NA <NA>   NA     NA
## 20      MailOnline     Web Publication            NA <NA>   NA     NA
## 21      MailOnline     Web Publication            NA <NA>   NA     NA
## 22      MailOnline     Web Publication            NA <NA>   NA     NA
## 23      MailOnline     Web Publication            NA <NA>   NA     NA
## 24      MailOnline     Web Publication            NA <NA>   NA     NA
## 25      MailOnline     Web Publication            NA <NA>   NA     NA
## 26      MailOnline     Web Publication            NA <NA>   NA     NA
## 27      MailOnline     Web Publication            NA <NA>   NA     NA
## 28      MailOnline     Web Publication            NA <NA>   NA     NA
## 29      MailOnline     Web Publication            NA <NA>   NA     NA
## 30      MailOnline     Web Publication            NA <NA>   NA     NA
## 31      MailOnline     Web Publication            NA <NA>   NA     NA
## 32      MailOnline     Web Publication            NA <NA>   NA     NA
## 33      MailOnline     Web Publication            NA <NA>   NA     NA
## 34      MailOnline     Web Publication            NA <NA>   NA     NA
## 35      MailOnline     Web Publication            NA <NA>   NA     NA
## 36      MailOnline     Web Publication            NA <NA>   NA     NA
## 37      MailOnline     Web Publication            NA <NA>   NA     NA
## 38      MailOnline     Web Publication            NA <NA>   NA     NA
## 39      MailOnline     Web Publication            NA <NA>   NA     NA
## 40      MailOnline     Web Publication            NA <NA>   NA     NA
## 41      MailOnline     Web Publication            NA <NA>   NA     NA
## 42      MailOnline     Web Publication            NA <NA>   NA     NA
## 43      MailOnline     Web Publication            NA <NA>   NA     NA
## 44      MailOnline     Web Publication            NA <NA>   NA     NA
## 45      MailOnline     Web Publication            NA <NA>   NA     NA
## 46      MailOnline     Web Publication            NA <NA>   NA     NA
## 47      MailOnline     Web Publication            NA <NA>   NA     NA
## 48      MailOnline     Web Publication            NA <NA>   NA     NA
## 49      MailOnline     Web Publication            NA <NA>   NA     NA
## 50      MailOnline     Web Publication            NA <NA>   NA     NA
## 51      MailOnline     Web Publication            NA <NA>   NA     NA
## 52      MailOnline     Web Publication            NA <NA>   NA     NA
## 53      MailOnline     Web Publication            NA <NA>   NA     NA
## 54      MailOnline     Web Publication            NA <NA>   NA     NA
## 55      MailOnline     Web Publication            NA <NA>   NA     NA
## 56      MailOnline     Web Publication            NA <NA>   NA     NA
## 57      MailOnline     Web Publication            NA <NA>   NA     NA
## 58      MailOnline     Web Publication            NA <NA>   NA     NA
## 59      MailOnline     Web Publication            NA <NA>   NA     NA
## 60      MailOnline     Web Publication            NA <NA>   NA     NA
## 61      MailOnline     Web Publication            NA <NA>   NA     NA
## 62      MailOnline     Web Publication            NA <NA>   NA     NA
## 63      MailOnline     Web Publication            NA <NA>   NA     NA
## 64      MailOnline     Web Publication            NA <NA>   NA     NA
## 65      MailOnline     Web Publication            NA <NA>   NA     NA
## 66      MailOnline     Web Publication            NA <NA>   NA     NA
## 67      MailOnline     Web Publication            NA <NA>   NA     NA
## 68      MailOnline     Web Publication            NA <NA>   NA     NA
## 69      MailOnline     Web Publication            NA <NA>   NA     NA
## 70      MailOnline     Web Publication            NA <NA>   NA     NA
## 71      MailOnline     Web Publication            NA <NA>   NA     NA
## 72      MailOnline     Web Publication            NA <NA>   NA     NA
## 73      MailOnline     Web Publication            NA <NA>   NA     NA
## 74      MailOnline     Web Publication            NA <NA>   NA     NA
## 75      MailOnline     Web Publication            NA <NA>   NA     NA
## 76      MailOnline     Web Publication            NA <NA>   NA     NA
## 77      MailOnline     Web Publication            NA <NA>   NA     NA
## 78      MailOnline     Web Publication            NA <NA>   NA     NA
## 79      MailOnline     Web Publication            NA <NA>   NA     NA
## 80      MailOnline     Web Publication            NA <NA>   NA     NA
## 81      MailOnline     Web Publication            NA <NA>   NA     NA
## 82      MailOnline     Web Publication            NA <NA>   NA     NA
## 83      MailOnline     Web Publication            NA <NA>   NA     NA
## 84      MailOnline     Web Publication            NA <NA>   NA     NA
## 85      MailOnline     Web Publication            NA <NA>   NA     NA
## 86      MailOnline     Web Publication            NA <NA>   NA     NA
## 87      MailOnline     Web Publication            NA <NA>   NA     NA
## 88      MailOnline     Web Publication            NA <NA>   NA     NA
## 89      MailOnline     Web Publication            NA <NA>   NA     NA
## 90      MailOnline     Web Publication            NA <NA>   NA     NA
## 91      MailOnline     Web Publication            NA <NA>   NA     NA
## 92      MailOnline     Web Publication            NA <NA>   NA     NA
## 93      MailOnline     Web Publication            NA <NA>   NA     NA
## 94      MailOnline     Web Publication            NA <NA>   NA     NA
## 95      MailOnline     Web Publication            NA <NA>   NA     NA
## 96      MailOnline     Web Publication            NA <NA>   NA     NA
## 97      MailOnline     Web Publication            NA <NA>   NA     NA
## 98      MailOnline     Web Publication            NA <NA>   NA     NA
## 99      MailOnline     Web Publication            NA <NA>   NA     NA
## 100     MailOnline     Web Publication            NA <NA>   NA     NA
## 101     MailOnline     Web Publication            NA <NA>   NA     NA
## 102     MailOnline     Web Publication            NA <NA>   NA     NA
## 103     MailOnline     Web Publication            NA <NA>   NA     NA
## 104     MailOnline     Web Publication            NA <NA>   NA     NA
## 105     MailOnline     Web Publication            NA <NA>   NA     NA
## 106     MailOnline     Web Publication            NA <NA>   NA     NA
## 107     MailOnline     Web Publication            NA <NA>   NA     NA
## 108     MailOnline     Web Publication            NA <NA>   NA     NA
## 109     MailOnline     Web Publication            NA <NA>   NA     NA
## 110     MailOnline     Web Publication            NA <NA>   NA     NA
## 111     MailOnline     Web Publication            NA <NA>   NA     NA
## 112     MailOnline     Web Publication            NA <NA>   NA     NA
## 113     MailOnline     Web Publication            NA <NA>   NA     NA
## 114     MailOnline     Web Publication            NA <NA>   NA     NA
## 115     MailOnline     Web Publication            NA <NA>   NA     NA
## 116     MailOnline     Web Publication            NA <NA>   NA     NA
## 117     MailOnline     Web Publication            NA <NA>   NA     NA
## 118     MailOnline     Web Publication            NA <NA>   NA     NA
## 119     MailOnline     Web Publication            NA <NA>   NA     NA
## 120     MailOnline     Web Publication            NA <NA>   NA     NA
## 121     MailOnline     Web Publication            NA <NA>   NA     NA
## 122     MailOnline     Web Publication            NA <NA>   NA     NA
## 123     MailOnline     Web Publication            NA <NA>   NA     NA
## 124     MailOnline     Web Publication            NA <NA>   NA     NA
## 125     MailOnline     Web Publication            NA <NA>   NA     NA
## 126     MailOnline     Web Publication            NA <NA>   NA     NA
## 127     MailOnline     Web Publication            NA <NA>   NA     NA
## 128     MailOnline     Web Publication            NA <NA>   NA     NA
## 129     MailOnline     Web Publication            NA <NA>   NA     NA
## 130     MailOnline     Web Publication            NA <NA>   NA     NA
## 131     MailOnline     Web Publication            NA <NA>   NA     NA
## 132     MailOnline     Web Publication            NA <NA>   NA     NA
## 133     MailOnline     Web Publication            NA <NA>   NA     NA
## 134     MailOnline     Web Publication            NA <NA>   NA     NA
## 135     MailOnline     Web Publication            NA <NA>   NA     NA
## 136     MailOnline     Web Publication            NA <NA>   NA     NA
## 137     MailOnline     Web Publication            NA <NA>   NA     NA
## 138     MailOnline     Web Publication            NA <NA>   NA     NA
## 139     MailOnline     Web Publication            NA <NA>   NA     NA
## 140     MailOnline     Web Publication            NA <NA>   NA     NA
## 141     MailOnline     Web Publication            NA <NA>   NA     NA
## 142     MailOnline     Web Publication            NA <NA>   NA     NA
## 143     MailOnline     Web Publication            NA <NA>   NA     NA
## 144     MailOnline     Web Publication            NA <NA>   NA     NA
## 145     MailOnline     Web Publication            NA <NA>   NA     NA
## 146     MailOnline     Web Publication            NA <NA>   NA     NA
## 147     MailOnline     Web Publication            NA <NA>   NA     NA
## 148     MailOnline     Web Publication            NA <NA>   NA     NA
## 149     MailOnline     Web Publication            NA <NA>   NA     NA
## 150     MailOnline     Web Publication            NA <NA>   NA     NA
## 151     MailOnline     Web Publication            NA <NA>   NA     NA
## 152     MailOnline     Web Publication            NA <NA>   NA     NA
## 153     MailOnline     Web Publication            NA <NA>   NA     NA
## 154     MailOnline     Web Publication            NA <NA>   NA     NA
## 155     MailOnline     Web Publication            NA <NA>   NA     NA
## 156     MailOnline     Web Publication            NA <NA>   NA     NA
## 157     MailOnline     Web Publication            NA <NA>   NA     NA
## 158     MailOnline     Web Publication            NA <NA>   NA     NA
## 159     MailOnline     Web Publication            NA <NA>   NA     NA
## 160     MailOnline     Web Publication            NA <NA>   NA     NA
## 161     MailOnline     Web Publication            NA <NA>   NA     NA
## 162     MailOnline     Web Publication            NA <NA>   NA     NA
## 163     MailOnline     Web Publication            NA <NA>   NA     NA
## 164     MailOnline     Web Publication            NA <NA>   NA     NA
## 165     MailOnline     Web Publication            NA <NA>   NA     NA
## 166     MailOnline     Web Publication            NA <NA>   NA     NA
## 167     MailOnline     Web Publication            NA <NA>   NA     NA
## 168     MailOnline     Web Publication            NA <NA>   NA     NA
## 169     MailOnline     Web Publication            NA <NA>   NA     NA
## 170     MailOnline     Web Publication            NA <NA>   NA     NA
## 171     MailOnline     Web Publication            NA <NA>   NA     NA
## 172     MailOnline     Web Publication            NA <NA>   NA     NA
## 173     MailOnline     Web Publication            NA <NA>   NA     NA
## 174     MailOnline     Web Publication            NA <NA>   NA     NA
## 175     MailOnline     Web Publication            NA <NA>   NA     NA
## 176     MailOnline     Web Publication            NA <NA>   NA     NA
## 177     MailOnline     Web Publication            NA <NA>   NA     NA
## 178     MailOnline     Web Publication            NA <NA>   NA     NA
## 179     MailOnline     Web Publication            NA <NA>   NA     NA
## 180     MailOnline     Web Publication            NA <NA>   NA     NA
## 181     MailOnline     Web Publication            NA <NA>   NA     NA
## 182     MailOnline     Web Publication            NA <NA>   NA     NA
## 183     MailOnline     Web Publication            NA <NA>   NA     NA
## 184     MailOnline     Web Publication            NA <NA>   NA     NA
## 185     MailOnline     Web Publication            NA <NA>   NA     NA
## 186     MailOnline     Web Publication            NA <NA>   NA     NA
## 187     MailOnline     Web Publication            NA <NA>   NA     NA
## 188     MailOnline     Web Publication            NA <NA>   NA     NA
## 189     MailOnline     Web Publication            NA <NA>   NA     NA
## 190     MailOnline     Web Publication            NA <NA>   NA     NA
## 191     MailOnline     Web Publication            NA <NA>   NA     NA
## 192     MailOnline     Web Publication            NA <NA>   NA     NA
## 193     MailOnline     Web Publication            NA <NA>   NA     NA
## 194     MailOnline     Web Publication            NA <NA>   NA     NA
## 195     MailOnline     Web Publication            NA <NA>   NA     NA
## 196     MailOnline     Web Publication            NA <NA>   NA     NA
## 197     MailOnline     Web Publication            NA <NA>   NA     NA
## 198     MailOnline     Web Publication            NA <NA>   NA     NA
## 199     MailOnline     Web Publication            NA <NA>   NA     NA
## 200     MailOnline     Web Publication            NA <NA>   NA     NA
## 201     MailOnline     Web Publication            NA <NA>   NA     NA
## 202     MailOnline     Web Publication            NA <NA>   NA     NA
## 203     MailOnline     Web Publication            NA <NA>   NA     NA
## 204     MailOnline     Web Publication            NA <NA>   NA     NA
## 205     MailOnline     Web Publication            NA <NA>   NA     NA
## 206     MailOnline     Web Publication            NA <NA>   NA     NA
## 207     MailOnline     Web Publication            NA <NA>   NA     NA
## 208     MailOnline     Web Publication            NA <NA>   NA     NA
## 209     MailOnline     Web Publication            NA <NA>   NA     NA
## 210     MailOnline     Web Publication            NA <NA>   NA     NA
## 211     MailOnline     Web Publication            NA <NA>   NA     NA
## 212     MailOnline     Web Publication            NA <NA>   NA     NA
## 213     MailOnline     Web Publication            NA <NA>   NA     NA
## 214     MailOnline     Web Publication            NA <NA>   NA     NA
## 215     MailOnline     Web Publication            NA <NA>   NA     NA
## 216     MailOnline     Web Publication            NA <NA>   NA     NA
## 217     MailOnline     Web Publication            NA <NA>   NA     NA
## 218     MailOnline     Web Publication            NA <NA>   NA     NA
## 219     MailOnline     Web Publication            NA <NA>   NA     NA
## 220     MailOnline     Web Publication            NA <NA>   NA     NA
## 221     MailOnline     Web Publication            NA <NA>   NA     NA
## 222     MailOnline     Web Publication            NA <NA>   NA     NA
## 223     MailOnline     Web Publication            NA <NA>   NA     NA
## 224     MailOnline     Web Publication            NA <NA>   NA     NA
## 225     MailOnline     Web Publication            NA <NA>   NA     NA
## 226     MailOnline     Web Publication            NA <NA>   NA     NA
## 227     MailOnline     Web Publication            NA <NA>   NA     NA
## 228     MailOnline     Web Publication            NA <NA>   NA     NA
## 229     MailOnline     Web Publication            NA <NA>   NA     NA
## 230     MailOnline     Web Publication            NA <NA>   NA     NA
## 231     MailOnline     Web Publication            NA <NA>   NA     NA
## 232     MailOnline     Web Publication            NA <NA>   NA     NA
## 233     MailOnline     Web Publication            NA <NA>   NA     NA
## 234     MailOnline     Web Publication            NA <NA>   NA     NA
## 235     MailOnline     Web Publication            NA <NA>   NA     NA
## 236     MailOnline     Web Publication            NA <NA>   NA     NA
## 237     MailOnline     Web Publication            NA <NA>   NA     NA
## 238     MailOnline     Web Publication            NA <NA>   NA     NA
## 239     MailOnline     Web Publication            NA <NA>   NA     NA
## 240     MailOnline     Web Publication            NA <NA>   NA     NA
## 241     MailOnline     Web Publication            NA <NA>   NA     NA
## 242     MailOnline     Web Publication            NA <NA>   NA     NA
## 243     MailOnline     Web Publication            NA <NA>   NA     NA
##                         index
## 1   trumpcontinuesgovernmentp
## 2   sunnyhostinclaimstrumpisa
## 3   googlescrapsdeitargetsasb
## 4   donlemonblastsnepobabytru
## 5   applerisksthewrathofdonal
## 6   thebrutalwaytrumpfiredthe
## 7   democratstearsintovileand
## 8   trumpsuccessfullyplungesg
## 9   trumpblamesdeiforamerican
## 10  thetruthbehinddonaldtrump
## 11  trumpobliteratesdeiwithne
## 12  jdvanceroaststhemediafort
## 13  donaldtrumptobantransgend
## 14  trumpstripsmillionsfromde
## 15  seasonedpilotlaurensanche
## 16  deiistoblamefortrumpsnear
## 17  trumpberatesblackhawkheli
## 18  karolineleavittpledgestru
## 19  femalentsbheadstunsthepre
## 20  trumpsignsexecutiveordert
## 21  nbcparentcompanysdeiiniti
## 22  wokedeiteachercomplainsab
## 23  petehegsethsaystrumpisexa
## 24  petebuttigiegrespondstotr
## 25  servicemembersrevealhowtr
## 26  trevornoahleadsantitrumpr
## 27  transtroopshuntershelpers
## 28  donaldtrumpfiresfirstfema
## 29  trumpevictshighestranking
## 30  theleftisprivatelybracing
## 31  pambondithrowsoutdeilawsu
## 32  governmentagencyiscaughtd
## 33  msnbcguestlaunchesunhinge
## 34  hollywooddeliversabrutalr
## 35  theblackbusinessownerswho
## 36  trumpordersallfederalempl
## 37  majorupdateafterthousands
## 38  madonnatakesaswingatdonal
## 39  directorofnationalintelli
## 40  nsaagentsexposedforsexcha
## 41  tedcruztakesonwokedeiprop
## 42  activistinvestorrevealsco
## 43  cnnsshockingonairdigattru
## 44  elonmuskannouncesdogesfir
## 45  msnbcguestclaimsamericais
## 46  cnnpanelexplodesintoheate
## 47  oscarsgoestowarwithtrumpb
## 48  trumpstreasurychiefscottb
## 49  aviationchiefswererecruit
## 50  costcoboldlydefiesdonaldt
## 51  nasaswokebossadmitsagency
## 52  dogeripsaparthalfabillion
## 53  tomhanksblastedforracista
## 54  chiefsandeaglesplayersspe
## 55  pressuremountsoncostcoove
## 56  trumppausesallfederalgran
## 57  billmaherpraisestrumpform
## 58  stephenasmithsendsdemocra
## 59  staggeringbonusesgiventoc
## 60  magarepublicansunifyonthr
## 61  petehegsethfirestopfemale
## 62  kevinolearyripsnutscostco
## 63  costcoconfirmsmajorfoodco
## 64  kamalaharrismichelleobama
## 65  dogeuncoversfarcical23mpr
## 66  petehegsethordersdogeinsp
## 67  wokestdeigovernmentworker
## 68  americaswokestcompanydisn
## 69  warrenbuffettsberkshireta
## 70  thesixbiggesttakeawaysfro
## 71  gaylekingaskswhytherearen
## 72  jessicaalvesputsonabustyd
## 73  fansslamsnlssourtrumpassa
## 74  donaldtrumpsexmarlamaples
## 75  jaketapperleftstunnedasst
## 76  nfltomakecontroversialsup
## 77  nswpremierchrisminnsquiet
## 78  usaidinspectorgeneralisfi
## 79  costcounseatedastopwholes
## 80  womanwaspassedoverforprom
## 81  jessicaalvesrevealsshehas
## 82  whiningelizabethwarrengiv
## 83  billmahersaudiencegoeswil
## 84  alsharptonsdeistuntbackfi
## 85  politicalgurupredictstrum
## 86  trumpsreelectionlandsarmy
## 87  professorfuelsconspiracyt
## 88  trumpissuesanultimatumtos
## 89  ragingmorningjoestartakes
## 90  billmaherslamswokeleftsla
## 91  cnnheapsshockpraiseondona
## 92  oneinfivedemocraticvoters
## 93  thearmyisbackmilitaryrele
## 94  trumppreparingplanstodism
## 95  trumpreleasesmessageahead
## 96  murderedfirecaptainsexlov
## 97  foxhostjessewattersturnso
## 98  stephenasmithshocksseanha
## 99  faaturnedaway1000jobappli
## 100 nilegardinerthedonaldsrev
## 101 magastarscutlooseattrumps
## 102 donaldtrumpfinallyreveals
## 103 employeesfumeastrumpwipes
## 104 expertsrevealratingfortru
## 105 trumporderstreasurytostop
## 106 trumpmakesdramaticpivoton
## 107 theviewsjoybeharsuggestst
## 108 donaldtrumpsnewtransporta
## 109 theeyepoppingamountofmone
## 110 donaldtrumpsamericawillma
## 111 pambondisueschicagooversa
## 112 fierymomentnbcspeteralexa
## 113 trumpamplifiesattacksonac
## 114 melaniaandivankasclosetie
## 115 cnnsscottjenningsgiveslib
## 116 jimacostareigniteswarwith
## 117 gaycombatveteranrevealswh
## 118 trumpmakesbombshelldecisi
## 119 revealedelonmuskanddogesf
## 120 thenext10governmentagenci
## 121 petehegsethrevealshistopp
## 122 insidetrumpsplantomakeite
## 123 andrewneiltrumpsbombastic
## 124 trumpsignsbombshellexecut
## 125 madonnapostspoignantmessa
## 126 hamiltonmeetskingtrumpasl
## 127 armytopbrassblastpetehegs
## 128 snlmocksreturnofkingtrump
## 129 ncaamakesrulingontransgen
## 130 ivankatrumpunveilsnewinne
## 131 whoorderedtherunwayswitch
## 132 britishvoterssupportrafto
## 133 squadmemberilhanomarhasve
## 134 trumpssweepingchangestogr
## 135 blackhawkdidntfollowairtr
## 136 republicansenatortellsdog
## 137 scottjenningsamericaswors
## 138 jackschlossberghascrudeme
## 139 cbsanchordefendsludicrous
## 140 illegalmigrantraidssparkc
## 141 liberalmeangirlcruellytro
## 142 kidrocksshockingclaimabou
## 143 elonmuskwantstrumptodelet
## 144 californiacongresswomanan
## 145 trumpscoresbigwinasjohnra
## 146 saturdaynightliveslammeda
## 147 trumpblamesmediaforfedera
## 148 endeavourairslammedfordei
## 149 amagastarisbornonherfirst
## 150 terrifiedstafflefthysteri
## 151 momentairtrafficcontrolle
## 152 fbiwarnsstafftheyareinaba
## 153 karolineleavittclasheswit
## 154 drtimhamesthesevenwaystha
## 155 kennedythetruthofbarackob
## 156 trumpblamesdcplanecrashon
## 157 floridagetsrevengeontarge
## 158 deiobliteratedastrumpissu
## 159 appledefiestrumpsexecutiv
## 160 disgracefulreasonamerican
## 161 axewieldingsquatterspeppe
## 162 elonmusksroleinreshapingu
## 163 trumpandmusksdogefireteam
## 164 karolineleavittannouncest
## 165 elonmuskconsidersdogedivi
## 166 50mincondomsforgazaandtra
## 167 politicalgurujamescarvill
## 168 ivankatrumpstunsinoscarde
## 169 iftrumpreallywantstobring
## 170 iceskater16killedindcplan
## 171 usaidworkerswillbeescorte
## 172 headofsocialsecurityabrup
## 173 muskstunnedasdozensofdoge
## 174 thefourbannedwordsintrump
## 175 trumptearsintolazyfederal
## 176 internetgoeswildforhulkin
## 177 newfootageofamericanairli
## 178 faatomakehugesafetyupdate
## 179 trumpcontinuespurgebydism
## 180 trumpgiftselonmuskthelinc
## 181 devastatingpennsylvaniapl
## 182 dogefindsmillionsofinstan
## 183 trumpdropseuropeanunionta
## 184 trumpstellingremarkaboutj
## 185 whattoknowabouttrumpsfirs
## 186 trumpdoublesdownondeiclai
## 187 reporttrumpfirescoastguar
## 188 roseannebarrdigsattrumpss
## 189 googlescrapsdeihiringtarg
## 190 wearygoplawmakerslashouta
## 191 rileygainesstunnedastrans
## 192 musksavagelytrollswhining
## 193 howtrumpadministrationisb
## 194 doomedblackhawkhelicopter
## 195 democratstearintotrumpfor
## 196 alltheshockingwaysusaidsp
## 197 cnngiveskarolineleavittna
## 198 petehegsethsaystrumpisrig
## 199 richardlittlejohntrumphas
## 200 muskurgedtoabolishplanned
## 201 govagencycaughtusingsneak
## 202 disneyscrapswoketriggerwa
## 203 elonmusksdogelieutenantsx
## 204 targetisbannedfrompridepa
## 205 cocacolaboycottbrewingami
## 206 upto74mamericansunabletoa
## 207 claytravismakesshockdonal
## 208 charlamagnethagodgivesbru
## 209 getthisnumbskulloffmyshow
## 210 cnnstarjaketapperblastedf
## 211 theamericanfarmersatthehe
## 212 howobamasfaausedaskewedmu
## 213 swiftjusticeforinfluencer
## 214 joeroganexposesbidenstopi
## 215 costcoplummetsdownlistoft
## 216 billmaherevisceratesforme
## 217 allthecrazyusaidprogramso
## 218 tinyruralpennsylvaniatown
## 219 howamericaquietlyfundedir
## 220 diversityinthenhsmeanssta
## 221 joyreiddemandscongresssub
## 222 backtopetroleumatlastbpss
## 223 dcplanecrashwidowrevealsf
## 224 tulsigabbardfiresmorethan
## 225 megynkellysbrutaltakedown
## 226 markzuckerbergsuffersulti
## 227 doomedblackhawkchopperwas
## 228 macmillancancersupportisc
## 229 karolineleavittthrowsdemo
## 230 dogepreparesgoldreserveau
## 231 chillingconspiracytheorya
## 232 passengeronboardplanedepa
## 233 allthecatastrophicmistake
## 234 wokeplottoaxefaceoffoundi
## 235 wifeofslaincaliforniafire
## 236 cnnpanelistsateachotherst
## 237 ladygagaslammedforoddandm
## 238 thetruthbehindrumordccras
## 239 trumptosignordercreatinga
## 240 ladygagamakespoliticalspe
## 241 howwarningsaboutblackhawk
## 242 criticschoiceawards2025ch
## 243 msnbcstarrachelmaddowsetf
##                                                                                                     filename
## 1                                Trump continues government purge by dismantling DEI from another agency.txt
## 2                              Sunny Hostin claims Trump is an unqualified 'DEI' hire in apoplectic rant.txt
## 3                                   Google scraps DEI targets as big tech bends to DOGE, Trump, and Elon.txt
## 4                             Don Lemon blasts 'nepo baby' Trump in furious rant about his DEI crackdown.txt
## 5                              Apple risks the wrath of Donald Trump as it defies executive order on DEI.txt
## 6                  The brutal way Trump fired the highest-ranking woman in the military in his DEI purge.txt
## 7                   Democrats tears into 'vile' and 'grotesque' Trump for blaming the plane crash on DEI.txt
## 8      Trump successfully plunges government into darkness as 8,000 DEI web pages stripped from internet.txt
## 9                                            Trump blames DEI for American Airlines crash that killed 67.txt
## 10         The truth behind Donald Trump's astounding claims Biden, Obama and DEI are to blame for crash.txt
## 11  Trump obliterates DEI with new demand to place every federal diversity program employee on paid leav.txt
## 12      JD Vance roasts the media for their 'funny' coverage of Trump's DEI remarks after DC plane crash.txt
## 13     Donald Trump to ban transgender troops and DEI military programs in latest executive order flurry.txt
## 14  Trump strips millions from DEI foreign aid programs funding Irish musicals, LGBTQ programs in Serbia.txt
## 15  Seasoned pilot Lauren Sanchez blasts racist, sexist rage-baiting as Trump blames DEI for aviation di.txt
## 16                            DEI is to blame for Trump's near-assassination claims Secret Service agent.txt
## 17                       Trump berates Black Hawk helicopter crew for DC plane crash after targeting DEI.txt
## 18         Karoline Leavitt pledges Trump will bring down prices as she takes aim at 'crap' DEI projects.txt
## 19   Female NTSB head stuns the press with her unexpected response to Trump's claim DEI caused the crash.txt
## 20  Trump signs executive order to eradicate DEI from the FAA and makes awkward JOKE about visiting plan.txt
## 21  NBC parent company's DEI initiatives probed by FCC as it becomes latest target of Trump administrati.txt
## 22                  Woke DEI teacher complains about Trump removing their pronouns in parody-like speech.txt
## 23  Pete Hegseth says Trump is 'exactly right' to blame DEI for DC plane crash and details the key to th.txt
## 24       Pete Buttigieg responds to Trump's 'despicable' comments blaming HIM and DEI for DC plane crash.txt
## 25  Service members reveal how Trump can 'rejuvenate' the military after COVID purge and DEI 'demoraliza.txt
## 26  Trevor Noah leads anti-Trump roast at the Grammys as Hollywood targets tariffs, celebrates DEI and t.txt
## 27  Trans troops, Hunter's helpers, DEI fanatics_ Wokest heads to roll as Trump vows to fire MORE in blo.txt
## 28                        Donald Trump fires first female Coast Guard leader over her obsession with DEI.txt
## 29  Trump evicts highest-ranking woman in the military from her home on short notice after her ouster ov.txt
## 30  The Left is privately bracing for a Trump-style DEI apocalypse if Dutton wins. These programs will b.txt
## 31            Pam Bondi throws out DEI lawsuits against police and firefighters, saying no more 'quotas'.txt
## 32             Government agency is caught deploying sneaky tactic to get around Trump's anti-woke purge.txt
## 33  MSNBC guest launches unhinged attack on 'white folks' over price of eggs in 'Trump's disgusting Amer.txt
## 34  Hollywood delivers a brutal response to Donald Trump's gender ideology crackdown as Mexican transgen.txt
## 35                     The black business owners who say DEI has never worked and that it 'isn't for us'.txt
## 36                               Trump orders all federal employees to remove pronouns from their emails.txt
## 37     Major update after thousands of government websites were set to go dark amid Trump's online purge.txt
## 38  Madonna takes a swing at Donald Trump for 'dismantling' LGBTQ+ freedoms and tells her fans 'don't gi.txt
## 39  Director of National Intelligence Tulsi Gabbard vows to crack down after kinky sex chats among NSA a.txt
## 40  NSA agents exposed for sex chats as Tulsi Gabbard vows to punish workers posting 'kinks, fetishes an.txt
## 41                  Ted Cruz takes on 'woke DEI propagandist' government consultants raking in thousands.txt
## 42         Activist investor reveals Costco's defiant DEI stance is 'not as meaningful' as it may appear.txt
## 43                             CNN's shocking on-air dig at Trump during DC plane crash press conference.txt
## 44                      Elon Musk announces DOGE's first official act as Trump takes over in Oval Office.txt
## 45                MSNBC guest claims America is becoming 'less safe' as FBI paints over 'diversity wall'.txt
## 46    CNN panel explodes into heated clash as pundit fumes she gets paid less than white male colleagues.txt
## 47  Oscars goes to war with Trump by nominating two trans dramas for 21 awards after president's two-gen.txt
## 48  Trump's Treasury chief Scott Bessent has witty comeback about being highest-ranking LGBTQ official i.txt
## 49  Aviation chiefs 'were recruiting people with targeted disabilities including intellectual problems a.txt
## 50                                                   Costco boldly defies Donald Trump's executive order.txt
## 51         NASA's woke boss admits agency wasted millions of taxpayer dollars on 'shameful' DEI programs.txt
## 52  DOGE rips apart half a BILLION in DEI grants to 'develop anti-racist mindsets' at Education Departme.txt
## 53      Tom Hanks blasted for 'racist and disgusting' portrayal of MAGA supporter on star-studded SNL 50.txt
## 54  Chiefs and Eagles players speak out on playing in front of Donald Trump with president set to attend.txt
## 55                   Pressure mounts on Costco over DEI policies_ 'Why would they Bud Light themselves_'.txt
## 56                      Trump pauses ALL federal grants, loans and other assistance, leaked memo reveals.txt
## 57  Bill Maher praises Trump for mocking reporter's 'stupid question'... as he jokes about DC plane cras.txt
## 58     Stephen A. Smith sends Democrats a message over trans issues after landing on 2028 President poll.txt
## 59                                 Staggering bonuses given to Costco executives for hitting DEI targets.txt
## 60           MAGA Republicans unify on three-word response to Democrats outraged about USAID destruction.txt
## 61                    Pete Hegseth FIRES top female military staffer as military gets the DOGE treatment.txt
## 62  Kevin O'Leary rips 'nuts' Costco for boldly defying Trump order after Walmart and major companies ca.txt
## 63                                                               Costco confirms major food court change.txt
## 64  Kamala Harris, Michelle Obama and Taylor Swift all now share the same humiliation. Buckle up, libera.txt
## 65       DOGE uncovers farcical $2.3m program training soldiers to 'speak and act in a DEI friendly' way.txt
## 66                                        Pete Hegseth orders DOGE-inspired $50 billion in Pentagon cuts.txt
## 67           'Wokest' DEI government workers revealed... along with their staggering taxpayer-funded pay.txt
## 68              America 's wokest company Disney makes major changes to classic films as it banishes DEI.txt
## 69                                  Warren Buffett's Berkshire takes a cryptic turn under Trump's shadow.txt
## 70   The six biggest takeaways from Trump's first weeks in government... and what they tell us about the.txt
## 71                          Gayle King asks why there aren't more 'people of color' at Trump swearing-in.txt
## 72  Jessica Alves puts on a busty display in a skintight pink catsuit as she leaves the hair salon after.txt
## 73                         Fans slam SNL's sour Trump assassination joke_ 'When am I supposed to laugh_'.txt
## 74  Donald Trump's ex Marla Maples makes appearance at 2025 Grammys as former husband is blasted by star.txt
## 75  Jake Tapper left stunned as Stephen Miller explains why Trump ordered a surprise freeze on federal s.txt
## 76  NFL to make controversial Super Bowl decision over racism message with Donald Trump attending showpi.txt
## 77                NSW Premier Chris Minns quietly removes he_him pronouns from his social media accounts.txt
## 78                    USAID inspector general is fired by the White House after attacking DOGE and Trump.txt
## 79                           Costco unseated as top wholesale store by rival pushing high-tech checkouts.txt
## 80                Woman was passed over for promotion because she was not gay, Supreme Court case claims.txt
## 81  Jessica Alves reveals she has been forced to cancel all US TV appearances over 'fears for her own sa.txt
## 82             Whining Elizabeth Warren gives Elon Musk a swanky new nickname while complaining on MSNBC.txt
## 83                        Bill Maher's audience goes WILD as Kid Rock drops surprising view on Democrats.txt
## 84  Al Sharpton's DEI stunt backfires spectacularly after liberal icon marches in support of Costco_ 'ki.txt
## 85                                Political guru predicts Trump White House will COLLAPSE within 30 days.txt
## 86    Trump's reelection lands Army best free promotion in 15 years as recruitment swells to record high.txt
## 87  Professor fuels conspiracy theories after blaming Trump for future plane crashes just HOURS before D.txt
## 88  Trump issues an ultimatum to senior FBI agents in his government purge after Kash Patel vowed to 'no.txt
## 89             Raging Morning Joe star takes aim at Democrats as liberal circular firing squad escalates.txt
## 90                               Bill Maher slams woke left's latest change to the Boy Scouts of America.txt
## 91                           CNN heaps shock praise on Donald Trump as he completes first week in office.txt
## 92  One in five Democratic voters say Trump is doing a good job as his whirlwind start in office attract.txt
## 93   The Army is BACK! Military releases new high-octane Trump-era ad... and it's a huge split from woke.txt
## 94         Trump preparing plans to dismantle the 'woke' Department of Education through executive order.txt
## 95  Trump releases message ahead of Super Bowl as he jets into New Orleans after playing golf with Tiger.txt
## 96  Murdered fire captain's ex lover drops bombshell about victim's wife after cops named her as prime s.txt
## 97  Fox host Jesse Watters turns on Trump and DOGE for 'callous' cuts after his veteran friend got the c.txt
## 98     Stephen A. Smith shocks Sean Hannity with brutal verdict on his former Fox colleague Pete Hegseth.txt
## 99  FAA turned away 1,000 job applicants because of its DEI rules despite staff shortages, lawsuit claim.txt
## 100 NILE GARDINER_ The Donald's revitalised America could lead Britain to broad sunlit uplands - but Kei.txt
## 101     MAGA stars cut loose at Trump's inaugural ball as Jake Paul and Mike Tyson perform bizarre stunt.txt
## 102                              Donald Trump finally reveals Elon Musk's real job in federal government.txt
## 103 Employees fume as Trump wipes 'transgender' from CDC and deletes 'climate change' from agriculture d.txt
## 104                                           Experts reveal rating for Trump's second inaugural address.txt
## 105 Trump orders Treasury to stop 'producing new pennies' as he continues to target wasteful spending_ '.txt
## 106 Trump makes dramatic pivot on stance towards the World Health Organization... days after ordering ex.txt
## 107 The View's Joy Behar suggests Trump is abolishing the penny because he's 'jealous' of past president.txt
## 108 Donald Trump's new Transportation Secretary Sean Duffy seen performing raunchy dance in embarrassing.txt
## 109 The eye-popping amount of money Elon Musk has already slashed from the Education Department as staff.txt
## 110  Donald Trump's America will make Harry and Meghan 'more unpopular than ever'_ Royal experts say new.txt
## 111 Pam Bondi SUES Chicago over sanctuary city laws after sending DOJ into frenzy with sweeping pro-MAGA.txt
## 112 Fiery moment NBC's Peter Alexander clashes with new WH press secretary Karoline Leavitt over Trump's.txt
## 113 Trump amplifies attacks on 'activist' judges halting DOGE's work as Democrats fear MAGA will defy co.txt
## 114 Melania and Ivanka's close ties to USAID exposed as Trump goes scorched-earth on the 'corrupt' agenc.txt
## 115                   CNN's Scott Jennings gives liberals a blistering reality check on Elon Musk's DOGE.txt
## 116                                       Jim Acosta reignites war with Donald Trump over DC plane crash.txt
## 117             Gay combat veteran reveals why Trump was RIGHT to ban transgender troops in the military.txt
## 118     Trump makes bombshell decision on 'DOGE dividend' - here's how much every taxpayer could receive.txt
## 119   REVEALED_ Elon Musk and DOGE's final goal as it launches blitzkrieg through the federal government.txt
## 120                    The next 10 government agencies in DOGE's line of fire that ballooned under Biden.txt
## 121           Pete Hegseth reveals his top priority on his first day as Donald Trump's Defense Secretary.txt
## 122  Inside Trump's plan to make it easier to fire federal employees - and agencies have just 90 days to.txt
## 123  ANDREW NEIL_ Trump's bombastic blizzard of an inauguration speech threatened to provoke chaos. Then.txt
## 124 Trump signs bombshell executive order to make himself the most powerful president in history as he e.txt
## 125 Madonna posts poignant message honoring Martin Luther King Jr. as President Trump is sworn in for se.txt
## 126 Hamilton meets 'King Trump' as Lin-Manuel Miranda makes surprise SNL appearance in hilarious cold op.txt
## 127                            Army top brass blast Pete Hegseth in foul-mouthed rant about DEI overhaul.txt
## 128 SNL mocks return of 'King Trump' as host Timothee Chalamet delivers an off-color joke about Jimmy Ca.txt
## 129              NCAA makes ruling on transgender athletes in women's sports after Trump executive order.txt
## 130            Ivanka Trump unveils new inner friendship circle after being reembraced by socialite pals.txt
## 131 Who ordered the runway switch minutes before the DC crash_ Are DEI air traffic controllers to blame_.txt
## 132  British voters support raft of Donald Trump 's policies in blind polling test - but how many do YOU.txt
## 133           'Squad' member Ilhan Omar has very choice words for Dems who attended Trump 's swearing in.txt
## 134              Trump's sweeping changes to grants and loans begins now... here's what it means for you.txt
## 135                        Black Hawk didn't follow air traffic controller's route before DC plane crash.txt
## 136 Republican senator tells DOGE to slash two sides off the Pentagon and make it a 'Trigon' to save mon.txt
## 137  SCOTT JENNINGS_ America 's 'Worst Pundit' predicts Trump will collapse within 30 days... here's the.txt
## 138 Jack Schlossberg has crude message for DOGE after JFK presidential library forced to close due to fe.txt
## 139                 CBS anchor defends ludicrous USAID spending on trans operations and atheism overseas.txt
## 140 Illegal migrant raids spark civil war as teacher turns on his own STUDENTS with startling message to.txt
## 141            Liberal 'mean girl' cruelly trolls press secretary Karoline Leavitt and her older husband.txt
## 142 Kid Rock's shocking claim about Kendrick Lamar and Colin Kaepernick after Super Bowl 2025 halftime s.txt
## 143 Elon Musk wants Trump to 'delete entire agencies' as part of his radical push to slash government sp.txt
## 144 California congresswoman and her fellow liberals users blame Trump for deadly mid-air collision near.txt
## 145                                     Trump scores big win as John Ratcliffe confirmed as CIA director.txt
## 146 Saturday Night Live slammed after controversial comedy segment about the Trump assassination attempt.txt
## 147  Trump blames media for federal funding freeze chaos and reveals move has already uncovered millions.txt
## 148                      Endeavour Air slammed for 'DEI obsessed' social media after Toronto plane crash.txt
## 149 A MAGA star is born! On her first day, Trump's sparkling new press secretary Karoline Leavitt, age 2.txt
## 150 Terrified staff left hysterical as 'well drilled' DOGE nerds storm hyper 'woke' Department of Educat.txt
## 151 Moment air traffic controller screams as American Airlines plane collides with Black Hawk helicopter.txt
## 152 FBI warns staff they are in a 'battle' as Trump purges agents who 'did their jobs in accordance with.txt
## 153   Karoline Leavitt clashes with AOC over looming restraining order on Trump's federal funding freeze.txt
## 154                 DR TIM HAMES_ The seven ways that Donald Trump will send shockwaves around the world.txt
## 155 KENNEDY_ The truth of Barack Obama's hopelessly-delayed $830 million DEI nightmare of a presidential.txt
## 156                                                                   Trump blames DC plane crash on DEI.txt
## 157      Florida gets revenge on Target over tuck swimsuits and DEI obsession that sparked a culture war.txt
## 158                                                       DEI obliterated as Trump issues scathing order.txt
## 159                                                          Apple defies Trump's executive order on DEI.txt
## 160                                    Disgraceful reason American flag was hung upside-down in Yosemite.txt
## 161 Axe-wielding squatters, pepper spray while I walk the dog... but the scariest part of my beloved LA'.txt
## 162 Elon Musk's role in reshaping US revealed in subtle message that shows exactly where Trump found pla.txt
## 163                   Trump and Musk's DOGE fire team of lawyers trying to stop drunk pilots from flying.txt
## 164       Karoline Leavitt announces Trump will impose tariffs on Mexico , Canada and China this weekend.txt
## 165  Elon Musk considers 'DOGE dividend' that would send $5,000 check to all Americans following massive.txt
## 166  $50M in condoms for Gaza and 'trans operas' in Colombia _ The staggering foreign aid projects Trump.txt
## 167  Political guru James Carville's surprising advice for Democrats as minority party flails in attempt.txt
## 168 Ivanka Trump stuns in Oscar de la Renta as she hugs Lauren Sanchez during candlelight dinner in Wash.txt
## 169 If Trump really wants to bring down the price of eggs, he can start by listening to Turkey and the l.txt
## 170 Ice skater, 16, killed in DC plane crash pulled off ultra-rare 'triple axle' jump hours before his d.txt
## 171 USAID workers will be escorted to their desks and have 15 minutes to collect personal belongings fro.txt
## 172  Head of Social Security abruptly resigns after clash with Elon Musk over DOGE's access to sensitive.txt
## 173 Musk stunned as dozens of DOGE staff suddenly QUIT with scathing letter... as eye-watering new savin.txt
## 174               The four banned words in Trump's overhauled CDC that are sending workers into meltdown.txt
## 175 Trump tears into lazy federal staff who work from home and warns they will be FIRED if they don't re.txt
## 176   Internet goes wild for hulking Special Forces agent spotted with Pete Hegseth on early morning run.txt
## 177  New footage of American Airlines crash shows doomed jet and Black Hawk helicopter's lights could be.txt
## 178                                       FAA to make huge safety update after 67 died in DC plane crash.txt
## 179                                         Trump continues purge by dismantling DEI from another agency.txt
## 180 Trump gifts Elon Musk the Lincoln Bedroom at the White House after turning DOGE office into sleeping.txt
## 181  Devastating Pennsylvania plane crash scene pics emerge as American flyers unnerved by second deadly.txt
## 182 DOGE finds millions of instances of social security fraud in database including a 360-year-old and '.txt
## 183    Trump drops European Union tariff bombshell as astonishing new front opens up in global trade war.txt
## 184 Trump's telling remark about JD Vance 's brilliant wife Usha ... and what it reveals about America '.txt
## 185        What to know about Trump's first executive orders as the president renames the Gulf of Mexico.txt
## 186                                                Trump doubles down on DEI claims after DC plane crash.txt
## 187                                           Report_ Trump fires Coast Guard leader over border and DEI.txt
## 188 Roseanne Barr digs at Trump's 'Special Envoy' stars... after claiming she was frozen out by MAGA inn.txt
## 189                                          Google scraps DEI hiring targets as big tech bends to Trump.txt
## 190 Weary GOP lawmakers lash out at 'childish' Elon Musk for drastic DOGE cuts during secret House meeti.txt
## 191 Riley Gaines stunned as trans activist claims Paralympians should compete against Olympians in gende.txt
## 192 Musk savagely trolls whining federal workers as attempts to seize highly-sensitive $5 TRILLION syste.txt
## 193 How Trump administration is begging federal workers to take the 'buyout' and visit their 'dream dest.txt
## 194               Doomed Black Hawk helicopter's call sign sparks fresh mystery following DC plane crash.txt
## 195                                      Democrats tear into Trump for blaming the DC plane crash on DEI.txt
## 196                                                         All the shocking ways USAID spent your money.txt
## 197                       CNN gives Karoline Leavitt nasty new nickname after first White House briefing.txt
## 198                                   Pete Hegseth says Trump is 'right' to blame DEI for DC plane crash.txt
## 199  RICHARD LITTLEJOHN_ Trump has shocked the world by doing exactly what he promised. If only evasive,.txt
## 200    Musk urged to abolish Planned Parenthood funding as report reveals abortion clinic horror stories.txt
## 201                                Gov agency caught using sneaky tactic to get around Trump's DEI purge.txt
## 202 Disney scraps woke trigger warnings on family favourites such as Dumbo and Peter Pan in a bonfire of.txt
## 203                    Elon Musk's DOGE lieutenant's X-rated online pseudonym leaves CNN hosts flummoxed.txt
## 204                                 Target is banned from Pride parade as revenge for axing DEI policies.txt
## 205                        Coca-Cola boycott brewing amid rumors staff are 'reporting colleagues to ICE'.txt
## 206 Up to 74m Americans unable to access healthcare after Trump's federal funding freeze causes Medicaid.txt
## 207 Clay Travis makes shock Donald Trump ESPN prediction and says they regret being 'too left wing and w.txt
## 208 Charlamagne Tha God gives brutal take on Vivek Ramaswamy's DOGE exit and predicts Elon Musk will 'cr.txt
## 209 'Get this numbskull off my show!' Moment furious LBC host Iain Dale orders US columnist is taken off.txt
## 210  CNN star Jake Tapper blasted for penning new book 'exposing' the cover up of Biden's health decline.txt
## 211            The American farmers at the heart of Trump's war with USAID who are struggling to survive.txt
## 212 How Obama's FAA used a skewed multiple-choice quiz to prioritize DEI applicants and bar the brightes.txt
## 213 Swift justice for influencer who filmed herself calling for Elon Musk's murder and boasted about not.txt
## 214                  Joe Rogan exposes Biden's top 'inappropriate spending' tactic after DOGE's findings.txt
## 215     Costco plummets down list of top supermarkets as biggest customer bugbears damage its reputation.txt
## 216 Bill Maher eviscerates former Obama speechwriter over Dems obsession with trans issues_ 'You want to.txt
## 217 All the 'crazy' USAID programs on blast by Republicans... including a bizarre $25K drag queen show i.txt
## 218                           Tiny rural Pennsylvania town tears itself apart over politics and pronouns.txt
## 219                                             How America quietly funded Iraqi Sesame Street for years.txt
## 220          Diversity in the NHS means staff are now promoting 'anti-whiteness', warns Health Secretary.txt
## 221                               Joy Reid demands Congress subpoena Elon Musk and raft of DOGE staffers.txt
## 222  Back to petroleum at last_ BP's switch back to fossil fuels is a seismic U-turn, says MAGGIE PAGANO.txt
## 223                   DC plane crash widow reveals fateful choice that killed husband and saved her life.txt
## 224             Tulsi Gabbard fires more than 100 intelligence agents over transgender sex chat messages.txt
## 225 Megyn Kelly's brutal takedown of CNN pundit and her meltdown over being 'paid less than white male c.txt
## 226         Mark Zuckerberg suffers ultimate humiliation after whining to staff 'everything I say leaks'.txt
## 227 Doomed Black Hawk chopper was rehearsing Trump's evacuation to a nuclear bunker when it slammed into.txt
## 228 Macmillan Cancer Support is criticised for recruiting a £100k a year DEI director - despite recently.txt
## 229 Karoline Leavitt throws Democrats' own words back in their faces in brutal takedown amid DOGE protes.txt
## 230        DOGE prepares gold reserve 'audit' after top Republican invites Elon Musk to review Fort Knox.txt
## 231                   Chilling 'conspiracy theory' about Black Hawk helicopter in DC plane crash is TRUE.txt
## 232 Passenger onboard plane departing DC airport shows how 'crazy close' choppers fly next to commercial.txt
## 233 All the catastrophic mistakes that led to DC plane crash as it is revealed air traffic controller le.txt
## 234                                Woke 'plot' to axe face of Founding Father from Washington state flag.txt
## 235 Wife of slain California fire captain believed to have fled to Mexico as police issue arrest warrant.txt
## 236  CNN panelists at each other's throats over resigned DOGE staffer's 'racist' posts in fiery exchange.txt
## 237          Lady Gaga slammed for 'odd and meaningless' political Grammys speech_ 'Hollywood is a cult'.txt
## 238            The truth behind rumor DC crash Black Hawk co-pilot was transgender servicewoman Jo Ellis.txt
## 239                           Trump to sign order creating a new 'Iron Dome' U.S. missile defense system.txt
## 240                     Lady Gaga makes political speech about transgender community at the 2025 Grammys.txt
## 241  How warnings about Black Hawk helicopter's safety systems date back decades and have been linked to.txt
## 242         Critics Choice Awards 2025_ Chelsea Handler ROASTS Justin Baldoni and Blake Lively in opener.txt
## 243                    MSNBC star Rachel Maddow set for courtroom humiliation over shocking on-air slurs.txt
##                                                                                                                     filepath
## 1                                ./file_raw_text/Trump continues government purge by dismantling DEI from another agency.txt
## 2                              ./file_raw_text/Sunny Hostin claims Trump is an unqualified 'DEI' hire in apoplectic rant.txt
## 3                                   ./file_raw_text/Google scraps DEI targets as big tech bends to DOGE, Trump, and Elon.txt
## 4                             ./file_raw_text/Don Lemon blasts 'nepo baby' Trump in furious rant about his DEI crackdown.txt
## 5                              ./file_raw_text/Apple risks the wrath of Donald Trump as it defies executive order on DEI.txt
## 6                  ./file_raw_text/The brutal way Trump fired the highest-ranking woman in the military in his DEI purge.txt
## 7                   ./file_raw_text/Democrats tears into 'vile' and 'grotesque' Trump for blaming the plane crash on DEI.txt
## 8      ./file_raw_text/Trump successfully plunges government into darkness as 8,000 DEI web pages stripped from internet.txt
## 9                                            ./file_raw_text/Trump blames DEI for American Airlines crash that killed 67.txt
## 10         ./file_raw_text/The truth behind Donald Trump's astounding claims Biden, Obama and DEI are to blame for crash.txt
## 11  ./file_raw_text/Trump obliterates DEI with new demand to place every federal diversity program employee on paid leav.txt
## 12      ./file_raw_text/JD Vance roasts the media for their 'funny' coverage of Trump's DEI remarks after DC plane crash.txt
## 13     ./file_raw_text/Donald Trump to ban transgender troops and DEI military programs in latest executive order flurry.txt
## 14  ./file_raw_text/Trump strips millions from DEI foreign aid programs funding Irish musicals, LGBTQ programs in Serbia.txt
## 15  ./file_raw_text/Seasoned pilot Lauren Sanchez blasts racist, sexist rage-baiting as Trump blames DEI for aviation di.txt
## 16                            ./file_raw_text/DEI is to blame for Trump's near-assassination claims Secret Service agent.txt
## 17                       ./file_raw_text/Trump berates Black Hawk helicopter crew for DC plane crash after targeting DEI.txt
## 18         ./file_raw_text/Karoline Leavitt pledges Trump will bring down prices as she takes aim at 'crap' DEI projects.txt
## 19   ./file_raw_text/Female NTSB head stuns the press with her unexpected response to Trump's claim DEI caused the crash.txt
## 20  ./file_raw_text/Trump signs executive order to eradicate DEI from the FAA and makes awkward JOKE about visiting plan.txt
## 21  ./file_raw_text/NBC parent company's DEI initiatives probed by FCC as it becomes latest target of Trump administrati.txt
## 22                  ./file_raw_text/Woke DEI teacher complains about Trump removing their pronouns in parody-like speech.txt
## 23  ./file_raw_text/Pete Hegseth says Trump is 'exactly right' to blame DEI for DC plane crash and details the key to th.txt
## 24       ./file_raw_text/Pete Buttigieg responds to Trump's 'despicable' comments blaming HIM and DEI for DC plane crash.txt
## 25  ./file_raw_text/Service members reveal how Trump can 'rejuvenate' the military after COVID purge and DEI 'demoraliza.txt
## 26  ./file_raw_text/Trevor Noah leads anti-Trump roast at the Grammys as Hollywood targets tariffs, celebrates DEI and t.txt
## 27  ./file_raw_text/Trans troops, Hunter's helpers, DEI fanatics_ Wokest heads to roll as Trump vows to fire MORE in blo.txt
## 28                        ./file_raw_text/Donald Trump fires first female Coast Guard leader over her obsession with DEI.txt
## 29  ./file_raw_text/Trump evicts highest-ranking woman in the military from her home on short notice after her ouster ov.txt
## 30  ./file_raw_text/The Left is privately bracing for a Trump-style DEI apocalypse if Dutton wins. These programs will b.txt
## 31            ./file_raw_text/Pam Bondi throws out DEI lawsuits against police and firefighters, saying no more 'quotas'.txt
## 32             ./file_raw_text/Government agency is caught deploying sneaky tactic to get around Trump's anti-woke purge.txt
## 33  ./file_raw_text/MSNBC guest launches unhinged attack on 'white folks' over price of eggs in 'Trump's disgusting Amer.txt
## 34  ./file_raw_text/Hollywood delivers a brutal response to Donald Trump's gender ideology crackdown as Mexican transgen.txt
## 35                     ./file_raw_text/The black business owners who say DEI has never worked and that it 'isn't for us'.txt
## 36                               ./file_raw_text/Trump orders all federal employees to remove pronouns from their emails.txt
## 37     ./file_raw_text/Major update after thousands of government websites were set to go dark amid Trump's online purge.txt
## 38  ./file_raw_text/Madonna takes a swing at Donald Trump for 'dismantling' LGBTQ+ freedoms and tells her fans 'don't gi.txt
## 39  ./file_raw_text/Director of National Intelligence Tulsi Gabbard vows to crack down after kinky sex chats among NSA a.txt
## 40  ./file_raw_text/NSA agents exposed for sex chats as Tulsi Gabbard vows to punish workers posting 'kinks, fetishes an.txt
## 41                  ./file_raw_text/Ted Cruz takes on 'woke DEI propagandist' government consultants raking in thousands.txt
## 42         ./file_raw_text/Activist investor reveals Costco's defiant DEI stance is 'not as meaningful' as it may appear.txt
## 43                             ./file_raw_text/CNN's shocking on-air dig at Trump during DC plane crash press conference.txt
## 44                      ./file_raw_text/Elon Musk announces DOGE's first official act as Trump takes over in Oval Office.txt
## 45                ./file_raw_text/MSNBC guest claims America is becoming 'less safe' as FBI paints over 'diversity wall'.txt
## 46    ./file_raw_text/CNN panel explodes into heated clash as pundit fumes she gets paid less than white male colleagues.txt
## 47  ./file_raw_text/Oscars goes to war with Trump by nominating two trans dramas for 21 awards after president's two-gen.txt
## 48  ./file_raw_text/Trump's Treasury chief Scott Bessent has witty comeback about being highest-ranking LGBTQ official i.txt
## 49  ./file_raw_text/Aviation chiefs 'were recruiting people with targeted disabilities including intellectual problems a.txt
## 50                                                   ./file_raw_text/Costco boldly defies Donald Trump's executive order.txt
## 51         ./file_raw_text/NASA's woke boss admits agency wasted millions of taxpayer dollars on 'shameful' DEI programs.txt
## 52  ./file_raw_text/DOGE rips apart half a BILLION in DEI grants to 'develop anti-racist mindsets' at Education Departme.txt
## 53      ./file_raw_text/Tom Hanks blasted for 'racist and disgusting' portrayal of MAGA supporter on star-studded SNL 50.txt
## 54  ./file_raw_text/Chiefs and Eagles players speak out on playing in front of Donald Trump with president set to attend.txt
## 55                   ./file_raw_text/Pressure mounts on Costco over DEI policies_ 'Why would they Bud Light themselves_'.txt
## 56                      ./file_raw_text/Trump pauses ALL federal grants, loans and other assistance, leaked memo reveals.txt
## 57  ./file_raw_text/Bill Maher praises Trump for mocking reporter's 'stupid question'... as he jokes about DC plane cras.txt
## 58     ./file_raw_text/Stephen A. Smith sends Democrats a message over trans issues after landing on 2028 President poll.txt
## 59                                 ./file_raw_text/Staggering bonuses given to Costco executives for hitting DEI targets.txt
## 60           ./file_raw_text/MAGA Republicans unify on three-word response to Democrats outraged about USAID destruction.txt
## 61                    ./file_raw_text/Pete Hegseth FIRES top female military staffer as military gets the DOGE treatment.txt
## 62  ./file_raw_text/Kevin O'Leary rips 'nuts' Costco for boldly defying Trump order after Walmart and major companies ca.txt
## 63                                                               ./file_raw_text/Costco confirms major food court change.txt
## 64  ./file_raw_text/Kamala Harris, Michelle Obama and Taylor Swift all now share the same humiliation. Buckle up, libera.txt
## 65       ./file_raw_text/DOGE uncovers farcical $2.3m program training soldiers to 'speak and act in a DEI friendly' way.txt
## 66                                        ./file_raw_text/Pete Hegseth orders DOGE-inspired $50 billion in Pentagon cuts.txt
## 67           ./file_raw_text/'Wokest' DEI government workers revealed... along with their staggering taxpayer-funded pay.txt
## 68              ./file_raw_text/America 's wokest company Disney makes major changes to classic films as it banishes DEI.txt
## 69                                  ./file_raw_text/Warren Buffett's Berkshire takes a cryptic turn under Trump's shadow.txt
## 70   ./file_raw_text/The six biggest takeaways from Trump's first weeks in government... and what they tell us about the.txt
## 71                          ./file_raw_text/Gayle King asks why there aren't more 'people of color' at Trump swearing-in.txt
## 72  ./file_raw_text/Jessica Alves puts on a busty display in a skintight pink catsuit as she leaves the hair salon after.txt
## 73                         ./file_raw_text/Fans slam SNL's sour Trump assassination joke_ 'When am I supposed to laugh_'.txt
## 74  ./file_raw_text/Donald Trump's ex Marla Maples makes appearance at 2025 Grammys as former husband is blasted by star.txt
## 75  ./file_raw_text/Jake Tapper left stunned as Stephen Miller explains why Trump ordered a surprise freeze on federal s.txt
## 76  ./file_raw_text/NFL to make controversial Super Bowl decision over racism message with Donald Trump attending showpi.txt
## 77                ./file_raw_text/NSW Premier Chris Minns quietly removes he_him pronouns from his social media accounts.txt
## 78                    ./file_raw_text/USAID inspector general is fired by the White House after attacking DOGE and Trump.txt
## 79                           ./file_raw_text/Costco unseated as top wholesale store by rival pushing high-tech checkouts.txt
## 80                ./file_raw_text/Woman was passed over for promotion because she was not gay, Supreme Court case claims.txt
## 81  ./file_raw_text/Jessica Alves reveals she has been forced to cancel all US TV appearances over 'fears for her own sa.txt
## 82             ./file_raw_text/Whining Elizabeth Warren gives Elon Musk a swanky new nickname while complaining on MSNBC.txt
## 83                        ./file_raw_text/Bill Maher's audience goes WILD as Kid Rock drops surprising view on Democrats.txt
## 84  ./file_raw_text/Al Sharpton's DEI stunt backfires spectacularly after liberal icon marches in support of Costco_ 'ki.txt
## 85                                ./file_raw_text/Political guru predicts Trump White House will COLLAPSE within 30 days.txt
## 86    ./file_raw_text/Trump's reelection lands Army best free promotion in 15 years as recruitment swells to record high.txt
## 87  ./file_raw_text/Professor fuels conspiracy theories after blaming Trump for future plane crashes just HOURS before D.txt
## 88  ./file_raw_text/Trump issues an ultimatum to senior FBI agents in his government purge after Kash Patel vowed to 'no.txt
## 89             ./file_raw_text/Raging Morning Joe star takes aim at Democrats as liberal circular firing squad escalates.txt
## 90                               ./file_raw_text/Bill Maher slams woke left's latest change to the Boy Scouts of America.txt
## 91                           ./file_raw_text/CNN heaps shock praise on Donald Trump as he completes first week in office.txt
## 92  ./file_raw_text/One in five Democratic voters say Trump is doing a good job as his whirlwind start in office attract.txt
## 93   ./file_raw_text/The Army is BACK! Military releases new high-octane Trump-era ad... and it's a huge split from woke.txt
## 94         ./file_raw_text/Trump preparing plans to dismantle the 'woke' Department of Education through executive order.txt
## 95  ./file_raw_text/Trump releases message ahead of Super Bowl as he jets into New Orleans after playing golf with Tiger.txt
## 96  ./file_raw_text/Murdered fire captain's ex lover drops bombshell about victim's wife after cops named her as prime s.txt
## 97  ./file_raw_text/Fox host Jesse Watters turns on Trump and DOGE for 'callous' cuts after his veteran friend got the c.txt
## 98     ./file_raw_text/Stephen A. Smith shocks Sean Hannity with brutal verdict on his former Fox colleague Pete Hegseth.txt
## 99  ./file_raw_text/FAA turned away 1,000 job applicants because of its DEI rules despite staff shortages, lawsuit claim.txt
## 100 ./file_raw_text/NILE GARDINER_ The Donald's revitalised America could lead Britain to broad sunlit uplands - but Kei.txt
## 101     ./file_raw_text/MAGA stars cut loose at Trump's inaugural ball as Jake Paul and Mike Tyson perform bizarre stunt.txt
## 102                              ./file_raw_text/Donald Trump finally reveals Elon Musk's real job in federal government.txt
## 103 ./file_raw_text/Employees fume as Trump wipes 'transgender' from CDC and deletes 'climate change' from agriculture d.txt
## 104                                           ./file_raw_text/Experts reveal rating for Trump's second inaugural address.txt
## 105 ./file_raw_text/Trump orders Treasury to stop 'producing new pennies' as he continues to target wasteful spending_ '.txt
## 106 ./file_raw_text/Trump makes dramatic pivot on stance towards the World Health Organization... days after ordering ex.txt
## 107 ./file_raw_text/The View's Joy Behar suggests Trump is abolishing the penny because he's 'jealous' of past president.txt
## 108 ./file_raw_text/Donald Trump's new Transportation Secretary Sean Duffy seen performing raunchy dance in embarrassing.txt
## 109 ./file_raw_text/The eye-popping amount of money Elon Musk has already slashed from the Education Department as staff.txt
## 110  ./file_raw_text/Donald Trump's America will make Harry and Meghan 'more unpopular than ever'_ Royal experts say new.txt
## 111 ./file_raw_text/Pam Bondi SUES Chicago over sanctuary city laws after sending DOJ into frenzy with sweeping pro-MAGA.txt
## 112 ./file_raw_text/Fiery moment NBC's Peter Alexander clashes with new WH press secretary Karoline Leavitt over Trump's.txt
## 113 ./file_raw_text/Trump amplifies attacks on 'activist' judges halting DOGE's work as Democrats fear MAGA will defy co.txt
## 114 ./file_raw_text/Melania and Ivanka's close ties to USAID exposed as Trump goes scorched-earth on the 'corrupt' agenc.txt
## 115                   ./file_raw_text/CNN's Scott Jennings gives liberals a blistering reality check on Elon Musk's DOGE.txt
## 116                                       ./file_raw_text/Jim Acosta reignites war with Donald Trump over DC plane crash.txt
## 117             ./file_raw_text/Gay combat veteran reveals why Trump was RIGHT to ban transgender troops in the military.txt
## 118     ./file_raw_text/Trump makes bombshell decision on 'DOGE dividend' - here's how much every taxpayer could receive.txt
## 119   ./file_raw_text/REVEALED_ Elon Musk and DOGE's final goal as it launches blitzkrieg through the federal government.txt
## 120                    ./file_raw_text/The next 10 government agencies in DOGE's line of fire that ballooned under Biden.txt
## 121           ./file_raw_text/Pete Hegseth reveals his top priority on his first day as Donald Trump's Defense Secretary.txt
## 122  ./file_raw_text/Inside Trump's plan to make it easier to fire federal employees - and agencies have just 90 days to.txt
## 123  ./file_raw_text/ANDREW NEIL_ Trump's bombastic blizzard of an inauguration speech threatened to provoke chaos. Then.txt
## 124 ./file_raw_text/Trump signs bombshell executive order to make himself the most powerful president in history as he e.txt
## 125 ./file_raw_text/Madonna posts poignant message honoring Martin Luther King Jr. as President Trump is sworn in for se.txt
## 126 ./file_raw_text/Hamilton meets 'King Trump' as Lin-Manuel Miranda makes surprise SNL appearance in hilarious cold op.txt
## 127                            ./file_raw_text/Army top brass blast Pete Hegseth in foul-mouthed rant about DEI overhaul.txt
## 128 ./file_raw_text/SNL mocks return of 'King Trump' as host Timothee Chalamet delivers an off-color joke about Jimmy Ca.txt
## 129              ./file_raw_text/NCAA makes ruling on transgender athletes in women's sports after Trump executive order.txt
## 130            ./file_raw_text/Ivanka Trump unveils new inner friendship circle after being reembraced by socialite pals.txt
## 131 ./file_raw_text/Who ordered the runway switch minutes before the DC crash_ Are DEI air traffic controllers to blame_.txt
## 132  ./file_raw_text/British voters support raft of Donald Trump 's policies in blind polling test - but how many do YOU.txt
## 133           ./file_raw_text/'Squad' member Ilhan Omar has very choice words for Dems who attended Trump 's swearing in.txt
## 134              ./file_raw_text/Trump's sweeping changes to grants and loans begins now... here's what it means for you.txt
## 135                        ./file_raw_text/Black Hawk didn't follow air traffic controller's route before DC plane crash.txt
## 136 ./file_raw_text/Republican senator tells DOGE to slash two sides off the Pentagon and make it a 'Trigon' to save mon.txt
## 137  ./file_raw_text/SCOTT JENNINGS_ America 's 'Worst Pundit' predicts Trump will collapse within 30 days... here's the.txt
## 138 ./file_raw_text/Jack Schlossberg has crude message for DOGE after JFK presidential library forced to close due to fe.txt
## 139                 ./file_raw_text/CBS anchor defends ludicrous USAID spending on trans operations and atheism overseas.txt
## 140 ./file_raw_text/Illegal migrant raids spark civil war as teacher turns on his own STUDENTS with startling message to.txt
## 141            ./file_raw_text/Liberal 'mean girl' cruelly trolls press secretary Karoline Leavitt and her older husband.txt
## 142 ./file_raw_text/Kid Rock's shocking claim about Kendrick Lamar and Colin Kaepernick after Super Bowl 2025 halftime s.txt
## 143 ./file_raw_text/Elon Musk wants Trump to 'delete entire agencies' as part of his radical push to slash government sp.txt
## 144 ./file_raw_text/California congresswoman and her fellow liberals users blame Trump for deadly mid-air collision near.txt
## 145                                     ./file_raw_text/Trump scores big win as John Ratcliffe confirmed as CIA director.txt
## 146 ./file_raw_text/Saturday Night Live slammed after controversial comedy segment about the Trump assassination attempt.txt
## 147  ./file_raw_text/Trump blames media for federal funding freeze chaos and reveals move has already uncovered millions.txt
## 148                      ./file_raw_text/Endeavour Air slammed for 'DEI obsessed' social media after Toronto plane crash.txt
## 149 ./file_raw_text/A MAGA star is born! On her first day, Trump's sparkling new press secretary Karoline Leavitt, age 2.txt
## 150 ./file_raw_text/Terrified staff left hysterical as 'well drilled' DOGE nerds storm hyper 'woke' Department of Educat.txt
## 151 ./file_raw_text/Moment air traffic controller screams as American Airlines plane collides with Black Hawk helicopter.txt
## 152 ./file_raw_text/FBI warns staff they are in a 'battle' as Trump purges agents who 'did their jobs in accordance with.txt
## 153   ./file_raw_text/Karoline Leavitt clashes with AOC over looming restraining order on Trump's federal funding freeze.txt
## 154                 ./file_raw_text/DR TIM HAMES_ The seven ways that Donald Trump will send shockwaves around the world.txt
## 155 ./file_raw_text/KENNEDY_ The truth of Barack Obama's hopelessly-delayed $830 million DEI nightmare of a presidential.txt
## 156                                                                   ./file_raw_text/Trump blames DC plane crash on DEI.txt
## 157      ./file_raw_text/Florida gets revenge on Target over tuck swimsuits and DEI obsession that sparked a culture war.txt
## 158                                                       ./file_raw_text/DEI obliterated as Trump issues scathing order.txt
## 159                                                          ./file_raw_text/Apple defies Trump's executive order on DEI.txt
## 160                                    ./file_raw_text/Disgraceful reason American flag was hung upside-down in Yosemite.txt
## 161 ./file_raw_text/Axe-wielding squatters, pepper spray while I walk the dog... but the scariest part of my beloved LA'.txt
## 162 ./file_raw_text/Elon Musk's role in reshaping US revealed in subtle message that shows exactly where Trump found pla.txt
## 163                   ./file_raw_text/Trump and Musk's DOGE fire team of lawyers trying to stop drunk pilots from flying.txt
## 164       ./file_raw_text/Karoline Leavitt announces Trump will impose tariffs on Mexico , Canada and China this weekend.txt
## 165  ./file_raw_text/Elon Musk considers 'DOGE dividend' that would send $5,000 check to all Americans following massive.txt
## 166  ./file_raw_text/$50M in condoms for Gaza and 'trans operas' in Colombia _ The staggering foreign aid projects Trump.txt
## 167  ./file_raw_text/Political guru James Carville's surprising advice for Democrats as minority party flails in attempt.txt
## 168 ./file_raw_text/Ivanka Trump stuns in Oscar de la Renta as she hugs Lauren Sanchez during candlelight dinner in Wash.txt
## 169 ./file_raw_text/If Trump really wants to bring down the price of eggs, he can start by listening to Turkey and the l.txt
## 170 ./file_raw_text/Ice skater, 16, killed in DC plane crash pulled off ultra-rare 'triple axle' jump hours before his d.txt
## 171 ./file_raw_text/USAID workers will be escorted to their desks and have 15 minutes to collect personal belongings fro.txt
## 172  ./file_raw_text/Head of Social Security abruptly resigns after clash with Elon Musk over DOGE's access to sensitive.txt
## 173 ./file_raw_text/Musk stunned as dozens of DOGE staff suddenly QUIT with scathing letter... as eye-watering new savin.txt
## 174               ./file_raw_text/The four banned words in Trump's overhauled CDC that are sending workers into meltdown.txt
## 175 ./file_raw_text/Trump tears into lazy federal staff who work from home and warns they will be FIRED if they don't re.txt
## 176   ./file_raw_text/Internet goes wild for hulking Special Forces agent spotted with Pete Hegseth on early morning run.txt
## 177  ./file_raw_text/New footage of American Airlines crash shows doomed jet and Black Hawk helicopter's lights could be.txt
## 178                                       ./file_raw_text/FAA to make huge safety update after 67 died in DC plane crash.txt
## 179                                         ./file_raw_text/Trump continues purge by dismantling DEI from another agency.txt
## 180 ./file_raw_text/Trump gifts Elon Musk the Lincoln Bedroom at the White House after turning DOGE office into sleeping.txt
## 181  ./file_raw_text/Devastating Pennsylvania plane crash scene pics emerge as American flyers unnerved by second deadly.txt
## 182 ./file_raw_text/DOGE finds millions of instances of social security fraud in database including a 360-year-old and '.txt
## 183    ./file_raw_text/Trump drops European Union tariff bombshell as astonishing new front opens up in global trade war.txt
## 184 ./file_raw_text/Trump's telling remark about JD Vance 's brilliant wife Usha ... and what it reveals about America '.txt
## 185        ./file_raw_text/What to know about Trump's first executive orders as the president renames the Gulf of Mexico.txt
## 186                                                ./file_raw_text/Trump doubles down on DEI claims after DC plane crash.txt
## 187                                           ./file_raw_text/Report_ Trump fires Coast Guard leader over border and DEI.txt
## 188 ./file_raw_text/Roseanne Barr digs at Trump's 'Special Envoy' stars... after claiming she was frozen out by MAGA inn.txt
## 189                                          ./file_raw_text/Google scraps DEI hiring targets as big tech bends to Trump.txt
## 190 ./file_raw_text/Weary GOP lawmakers lash out at 'childish' Elon Musk for drastic DOGE cuts during secret House meeti.txt
## 191 ./file_raw_text/Riley Gaines stunned as trans activist claims Paralympians should compete against Olympians in gende.txt
## 192 ./file_raw_text/Musk savagely trolls whining federal workers as attempts to seize highly-sensitive $5 TRILLION syste.txt
## 193 ./file_raw_text/How Trump administration is begging federal workers to take the 'buyout' and visit their 'dream dest.txt
## 194               ./file_raw_text/Doomed Black Hawk helicopter's call sign sparks fresh mystery following DC plane crash.txt
## 195                                      ./file_raw_text/Democrats tear into Trump for blaming the DC plane crash on DEI.txt
## 196                                                         ./file_raw_text/All the shocking ways USAID spent your money.txt
## 197                       ./file_raw_text/CNN gives Karoline Leavitt nasty new nickname after first White House briefing.txt
## 198                                   ./file_raw_text/Pete Hegseth says Trump is 'right' to blame DEI for DC plane crash.txt
## 199  ./file_raw_text/RICHARD LITTLEJOHN_ Trump has shocked the world by doing exactly what he promised. If only evasive,.txt
## 200    ./file_raw_text/Musk urged to abolish Planned Parenthood funding as report reveals abortion clinic horror stories.txt
## 201                                ./file_raw_text/Gov agency caught using sneaky tactic to get around Trump's DEI purge.txt
## 202 ./file_raw_text/Disney scraps woke trigger warnings on family favourites such as Dumbo and Peter Pan in a bonfire of.txt
## 203                    ./file_raw_text/Elon Musk's DOGE lieutenant's X-rated online pseudonym leaves CNN hosts flummoxed.txt
## 204                                 ./file_raw_text/Target is banned from Pride parade as revenge for axing DEI policies.txt
## 205                        ./file_raw_text/Coca-Cola boycott brewing amid rumors staff are 'reporting colleagues to ICE'.txt
## 206 ./file_raw_text/Up to 74m Americans unable to access healthcare after Trump's federal funding freeze causes Medicaid.txt
## 207 ./file_raw_text/Clay Travis makes shock Donald Trump ESPN prediction and says they regret being 'too left wing and w.txt
## 208 ./file_raw_text/Charlamagne Tha God gives brutal take on Vivek Ramaswamy's DOGE exit and predicts Elon Musk will 'cr.txt
## 209 ./file_raw_text/'Get this numbskull off my show!' Moment furious LBC host Iain Dale orders US columnist is taken off.txt
## 210  ./file_raw_text/CNN star Jake Tapper blasted for penning new book 'exposing' the cover up of Biden's health decline.txt
## 211            ./file_raw_text/The American farmers at the heart of Trump's war with USAID who are struggling to survive.txt
## 212 ./file_raw_text/How Obama's FAA used a skewed multiple-choice quiz to prioritize DEI applicants and bar the brightes.txt
## 213 ./file_raw_text/Swift justice for influencer who filmed herself calling for Elon Musk's murder and boasted about not.txt
## 214                  ./file_raw_text/Joe Rogan exposes Biden's top 'inappropriate spending' tactic after DOGE's findings.txt
## 215     ./file_raw_text/Costco plummets down list of top supermarkets as biggest customer bugbears damage its reputation.txt
## 216 ./file_raw_text/Bill Maher eviscerates former Obama speechwriter over Dems obsession with trans issues_ 'You want to.txt
## 217 ./file_raw_text/All the 'crazy' USAID programs on blast by Republicans... including a bizarre $25K drag queen show i.txt
## 218                           ./file_raw_text/Tiny rural Pennsylvania town tears itself apart over politics and pronouns.txt
## 219                                             ./file_raw_text/How America quietly funded Iraqi Sesame Street for years.txt
## 220          ./file_raw_text/Diversity in the NHS means staff are now promoting 'anti-whiteness', warns Health Secretary.txt
## 221                               ./file_raw_text/Joy Reid demands Congress subpoena Elon Musk and raft of DOGE staffers.txt
## 222  ./file_raw_text/Back to petroleum at last_ BP's switch back to fossil fuels is a seismic U-turn, says MAGGIE PAGANO.txt
## 223                   ./file_raw_text/DC plane crash widow reveals fateful choice that killed husband and saved her life.txt
## 224             ./file_raw_text/Tulsi Gabbard fires more than 100 intelligence agents over transgender sex chat messages.txt
## 225 ./file_raw_text/Megyn Kelly's brutal takedown of CNN pundit and her meltdown over being 'paid less than white male c.txt
## 226         ./file_raw_text/Mark Zuckerberg suffers ultimate humiliation after whining to staff 'everything I say leaks'.txt
## 227 ./file_raw_text/Doomed Black Hawk chopper was rehearsing Trump's evacuation to a nuclear bunker when it slammed into.txt
## 228 ./file_raw_text/Macmillan Cancer Support is criticised for recruiting a £100k a year DEI director - despite recently.txt
## 229 ./file_raw_text/Karoline Leavitt throws Democrats' own words back in their faces in brutal takedown amid DOGE protes.txt
## 230        ./file_raw_text/DOGE prepares gold reserve 'audit' after top Republican invites Elon Musk to review Fort Knox.txt
## 231                   ./file_raw_text/Chilling 'conspiracy theory' about Black Hawk helicopter in DC plane crash is TRUE.txt
## 232 ./file_raw_text/Passenger onboard plane departing DC airport shows how 'crazy close' choppers fly next to commercial.txt
## 233 ./file_raw_text/All the catastrophic mistakes that led to DC plane crash as it is revealed air traffic controller le.txt
## 234                                ./file_raw_text/Woke 'plot' to axe face of Founding Father from Washington state flag.txt
## 235 ./file_raw_text/Wife of slain California fire captain believed to have fled to Mexico as police issue arrest warrant.txt
## 236  ./file_raw_text/CNN panelists at each other's throats over resigned DOGE staffer's 'racist' posts in fiery exchange.txt
## 237          ./file_raw_text/Lady Gaga slammed for 'odd and meaningless' political Grammys speech_ 'Hollywood is a cult'.txt
## 238            ./file_raw_text/The truth behind rumor DC crash Black Hawk co-pilot was transgender servicewoman Jo Ellis.txt
## 239                           ./file_raw_text/Trump to sign order creating a new 'Iron Dome' U.S. missile defense system.txt
## 240                     ./file_raw_text/Lady Gaga makes political speech about transgender community at the 2025 Grammys.txt
## 241  ./file_raw_text/How warnings about Black Hawk helicopter's safety systems date back decades and have been linked to.txt
## 242         ./file_raw_text/Critics Choice Awards 2025_ Chelsea Handler ROASTS Justin Baldoni and Blake Lively in opener.txt
## 243                    ./file_raw_text/MSNBC star Rachel Maddow set for courtroom humiliation over shocking on-air slurs.txt
##     political_leaning dom_vs_intl
## 1               Right        INTL
## 2               Right        INTL
## 3               Right        INTL
## 4               Right        INTL
## 5               Right        INTL
## 6               Right        INTL
## 7               Right        INTL
## 8               Right        INTL
## 9               Right        INTL
## 10              Right        INTL
## 11              Right        INTL
## 12              Right        INTL
## 13              Right        INTL
## 14              Right        INTL
## 15              Right        INTL
## 16              Right        INTL
## 17              Right        INTL
## 18              Right        INTL
## 19              Right        INTL
## 20              Right        INTL
## 21              Right        INTL
## 22              Right        INTL
## 23              Right        INTL
## 24              Right        INTL
## 25              Right        INTL
## 26              Right        INTL
## 27              Right        INTL
## 28              Right        INTL
## 29              Right        INTL
## 30              Right        INTL
## 31              Right        INTL
## 32              Right        INTL
## 33              Right        INTL
## 34              Right        INTL
## 35              Right        INTL
## 36              Right        INTL
## 37              Right        INTL
## 38              Right        INTL
## 39              Right        INTL
## 40              Right        INTL
## 41              Right        INTL
## 42              Right        INTL
## 43              Right        INTL
## 44              Right        INTL
## 45              Right        INTL
## 46              Right        INTL
## 47              Right        INTL
## 48              Right        INTL
## 49              Right        INTL
## 50              Right        INTL
## 51              Right        INTL
## 52              Right        INTL
## 53              Right        INTL
## 54              Right        INTL
## 55              Right        INTL
## 56              Right        INTL
## 57              Right        INTL
## 58              Right        INTL
## 59              Right        INTL
## 60              Right        INTL
## 61              Right        INTL
## 62              Right        INTL
## 63              Right        INTL
## 64              Right        INTL
## 65              Right        INTL
## 66              Right        INTL
## 67              Right        INTL
## 68              Right        INTL
## 69              Right        INTL
## 70              Right        INTL
## 71              Right        INTL
## 72              Right        INTL
## 73              Right        INTL
## 74              Right        INTL
## 75              Right        INTL
## 76              Right        INTL
## 77              Right        INTL
## 78              Right        INTL
## 79              Right        INTL
## 80              Right        INTL
## 81              Right        INTL
## 82              Right        INTL
## 83              Right        INTL
## 84              Right        INTL
## 85              Right        INTL
## 86              Right        INTL
## 87              Right        INTL
## 88              Right        INTL
## 89              Right        INTL
## 90              Right        INTL
## 91              Right        INTL
## 92              Right        INTL
## 93              Right        INTL
## 94              Right        INTL
## 95              Right        INTL
## 96              Right        INTL
## 97              Right        INTL
## 98              Right        INTL
## 99              Right        INTL
## 100             Right        INTL
## 101             Right        INTL
## 102             Right        INTL
## 103             Right        INTL
## 104             Right        INTL
## 105             Right        INTL
## 106             Right        INTL
## 107             Right        INTL
## 108             Right        INTL
## 109             Right        INTL
## 110             Right        INTL
## 111             Right        INTL
## 112             Right        INTL
## 113             Right        INTL
## 114             Right        INTL
## 115             Right        INTL
## 116             Right        INTL
## 117             Right        INTL
## 118             Right        INTL
## 119             Right        INTL
## 120             Right        INTL
## 121             Right        INTL
## 122             Right        INTL
## 123             Right        INTL
## 124             Right        INTL
## 125             Right        INTL
## 126             Right        INTL
## 127             Right        INTL
## 128             Right        INTL
## 129             Right        INTL
## 130             Right        INTL
## 131             Right        INTL
## 132             Right        INTL
## 133             Right        INTL
## 134             Right        INTL
## 135             Right        INTL
## 136             Right        INTL
## 137             Right        INTL
## 138             Right        INTL
## 139             Right        INTL
## 140             Right        INTL
## 141             Right        INTL
## 142             Right        INTL
## 143             Right        INTL
## 144             Right        INTL
## 145             Right        INTL
## 146             Right        INTL
## 147             Right        INTL
## 148             Right        INTL
## 149             Right        INTL
## 150             Right        INTL
## 151             Right        INTL
## 152             Right        INTL
## 153             Right        INTL
## 154             Right        INTL
## 155             Right        INTL
## 156             Right        INTL
## 157             Right        INTL
## 158             Right        INTL
## 159             Right        INTL
## 160             Right        INTL
## 161             Right        INTL
## 162             Right        INTL
## 163             Right        INTL
## 164             Right        INTL
## 165             Right        INTL
## 166             Right        INTL
## 167             Right        INTL
## 168             Right        INTL
## 169             Right        INTL
## 170             Right        INTL
## 171             Right        INTL
## 172             Right        INTL
## 173             Right        INTL
## 174             Right        INTL
## 175             Right        INTL
## 176             Right        INTL
## 177             Right        INTL
## 178             Right        INTL
## 179             Right        INTL
## 180             Right        INTL
## 181             Right        INTL
## 182             Right        INTL
## 183             Right        INTL
## 184             Right        INTL
## 185             Right        INTL
## 186             Right        INTL
## 187             Right        INTL
## 188             Right        INTL
## 189             Right        INTL
## 190             Right        INTL
## 191             Right        INTL
## 192             Right        INTL
## 193             Right        INTL
## 194             Right        INTL
## 195             Right        INTL
## 196             Right        INTL
## 197             Right        INTL
## 198             Right        INTL
## 199             Right        INTL
## 200             Right        INTL
## 201             Right        INTL
## 202             Right        INTL
## 203             Right        INTL
## 204             Right        INTL
## 205             Right        INTL
## 206             Right        INTL
## 207             Right        INTL
## 208             Right        INTL
## 209             Right        INTL
## 210             Right        INTL
## 211             Right        INTL
## 212             Right        INTL
## 213             Right        INTL
## 214             Right        INTL
## 215             Right        INTL
## 216             Right        INTL
## 217             Right        INTL
## 218             Right        INTL
## 219             Right        INTL
## 220             Right        INTL
## 221             Right        INTL
## 222             Right        INTL
## 223             Right        INTL
## 224             Right        INTL
## 225             Right        INTL
## 226             Right        INTL
## 227             Right        INTL
## 228             Right        INTL
## 229             Right        INTL
## 230             Right        INTL
## 231             Right        INTL
## 232             Right        INTL
## 233             Right        INTL
## 234             Right        INTL
## 235             Right        INTL
## 236             Right        INTL
## 237             Right        INTL
## 238             Right        INTL
## 239             Right        INTL
## 240             Right        INTL
## 241             Right        INTL
## 242             Right        INTL
## 243             Right        INTL
final_index |> 
  filter(publication_4 == "CNN Transcripts") 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  title
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Sources: Trump May Invite Some Jan. 6 Rioters On White House; Trump , Republicans In Congress Defend Jan. 6 Pardons; Trump Dismantles Federal DEI Offices, Puts Staffers On Leave. Aired 12-12:30p ET
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Could Host Jan. 6 Rioters After Pardons; Trump's War On DEI; At Least Two Injured In Nashville School Shooting. Aired 2-2:30p ET
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Orders End Of Federal DEI Programs; Musk Casts Doubt On Trump's $500B AI Project; Trump Rebuffs Security Concerns Over Kids Using TikTok. Aired 6:30-7a ET
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Immigration Crackdown; Trump May Invite January 6 Convicts to White House; Trump Targets DEI. Aired 1-1:30p ET
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            President Trump Tackles Immigration Reform; Federal Employees Told To Report Efforts To Hide DEI Work; New York Jets Hire Aaron Glenn As New Head Coach. Aired 5:30-6a ET
## 6                                                                                                                                                                                                                                                                                                                               President Trump Orders all Federal Diversity, Equity, and Inclusion Staff Placed on Leave; President Trump Criticizes Bishop for Statements During National Prayer Service on Inauguration; New Allegations against Pete Hegseth regarding Treatment of His Second Wife Surface; Pushback on Trump 's January 6 Pardons; Trump Administration Dismantles Federal DEI Offices, Puts Staffers on Leave. Aired 8-8:30a ET
## 7                                                                                                                                                                                                                                                                                                                                                                           Top General Ousted As Trump Admin. Wages "War On Woke"; Legal Challenges Over Anti-DEI Orders Get First Results; Judge Temporarily Blocks Certain Trump Anti-DEI Directives. Target Is Getting Hit From All Sides On DEI; On Set With Starts Of New Soap Opera Centered On Black Family; "Liberated Muse" Takes Stage At Kennedy Center Amid Trump Takeover. Aired 8-9a ET
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Continuing to Blame DEI For Midair Collision; White House Holds Press Briefing; Midair Collision Investigation. Aired 1-1:30p ET
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Talks Jan. 6 Pardons, Immigration, Biden in Oval Office Interview; Trump Targets Federal Workers Who Focus on DEI; Trump's Bid to End Birthright Citizenship Faces Legal Challenges; Fast-Spreading Hughes Fire Racing in Los Angeles County . Aired 9-9:30a ET
## 10                                                                                                                                                                                                                                                                                                                            Impact Of Trump's Unsubstantiated Blame Of DEI For Crash; Trump DOJ Aims To Potentially Fire Thousands Of Jan. 6 Prosecutors; Rep. Byron Donalds, (R- FL ), Is Interviewed About Trump's Firing Of January 6 Prosecutors, Tariffs on Canada, Mexico , China; Tariffs On Canada, Mexico , China Now In Effect. Medevac Jet With Six People On Board Crashes In Philadelphia; Bill Maher: "Trump Is Cool Now." Aired 9-10a
## 11                                                                                                                                                                                                                                                                                                                                                                                          Mandatory Evacuation Orders As New Fire Breaks Out Near L.A.; Trump Closes Federal DEI Offices, Puts Staffers On Leave; Elon Musk Slams Trump 's $500b A.I. Project; JP Morgan Chase CEO On Trump Tariffs: "Get Over It"; Rep. Veronica Escobar (D- TX ), Is Interviewed About White House In Talks For Jan. 6 Convicts To Meet With Trump . Aired 5-6p ET
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Explosive New Fire In L.A. Area Could "Go Nuclear"; January 6 Leader Back At Capitol; Trump's DEI Purge; Trump Threatens Sanctions If Putin Doesn't End War In Ukraine . Aired 7-8p ET
## 13                                                                                                                                                                                                                                                                                                                                                                               Trump Fires Chairman Of The Joint Chiefs Of Staff; Judge Blocks Trump's Order Targeting DEI Programs; Supreme Court Says, Watchdog Fired By Trump Can Stay on Job; Maine Governor Takes A Stand Against Trump's Policy On Transgender Athletes; Actor George Clooney Explains Why Donald Trump Won And Why Joe Biden Clung To Hope That He Could Win. Aired 10-11p ET
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Elon Musk Dismantling Government, White House Calls Him "Special" Employee; Trump Backs Down; E.L.F. Embracing DEI. Aired 7-8p ET
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump To Make First Major Speech To Global Business, Political Leaders; Trump Targets Federal Employees Involved With DEI Practices; President Trump Announces Withdrawal From World Health Organization. Aired 7:30-8a ET
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pushback on Trump's January 6 Pardons; Trump Administration Dismantles Federal DEI Offices, Puts Staffers on Leave. Aired: 8-8:30a ET
## 17                                                                                                                                                                                                                                                                                                                                 Happy Black History Month?; Trump Ramps Up Trend Of Blaming "DEI Hires" For Disasters; The True Intent Behind "DEI" That Its Critics Are Missing. Rep. Gregory Porter (D-IN), Is Interviewed About IN Gov. Leaves Funding For Martin Univ. Out Of Budget Proposal; Debate Over Boycott After Target Dropped Diversity Goals; First Complete Opera By A Black American Premieres After 130 Plus Years. Aired 8-9a ET
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         New Videos Show Moment Helicopter and Plane Collided; Trump Says He Will Meet With Some of the Victims' Family Members; Trump Makes Baseless Claims DEI Hiring May Have Caused Collision. Aired 7- 7:30a ET
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump to Quickly Take Action on Immigration, Energy, DEI Policies; Hamas Releases Three Hostages, Celebrations in Tel Aviv; Trump Says We Have to Save TikTok at Victory Rally. Aired 4:30-5a ET
## 20                                                                                                                                                                                                                                                                                                                                                        With No Evidence, Trump Blame DEI For Deadly Midair Collision; 67 Presumed Dead In Midair Collision Over Potomac River ; Trump Baselessly Blames Democrats & Diversity For Plane Crash; Trump Baselessly Appears To Blame FAA "Diversity Push" For Collision; Plane's Fuselage Found In 3 Sections In Potomac River; American Airlines CEO Says Pilot Were "Experienced". Aired 12-12:30p ET
## 21                                                                                                                                                                                                                                                                                                                                                                                                                   Thousands Of USAID Employees Given Just 15 Minutes To Vacate Workstations; Trump To Meet With British PM Keir Starmer At The White House; Meta Apologizes, Americans With Disabilities Warn Protections Are Vanishing In Trump's DEI Rollback; Fixes Glitch That Caused Violent Video Recommendations On Reels. Aired 9:30-10a ET
## 22                                                                                                                                                                                                                                                                                                                                                   All Federal DEI Staff Now Ordered On Leave After Deadline Passes; Crews Battling Rapidly Growing New Fire In Northern L.A. County; Rep. Mike Johnson (R- LA ) Announces New House Select Subcommittee To Continue Republicans' Investigation Of January 6; Musk Bashes $500 Billion A.I. Project Touted By Trump ; Crews Battling Rapidly Growing New Fire In Northern L.A. County. Aired 6-7p ET
## 23                                                                                                                                                                                                                                                                                                                                           One Black Box Recovered from Potomac After Plane-Chopper Collision; Figure Skaters, Parents, Coaches Among the 67 Killed in Crash; Trump Baselessly Blames DEI Initiatives for Plane-Chopper Collision; 67 Believed Killed In D.C. Plane-Chopper Crash; Trump Baselessly Blames DEI Initiatives For Plane-Chopper Collision; Figure Skaters, Parents, Coaches Among The 67 Killed In Crash. Aired 8-9p ET
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Admin Dismantles Federal DEI Offices, Puts Staffers on Leave; At Least Nine Dead as Once-in-a-Generation Storm Slams South; Prince Harry Settles Legal Claim Against The Sun Publisher. Aired 7- 7:30a ET
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 No Survivors in Midair Collision; President Trump Blames DEI For Midair Collision. Aired 1-1:30p ET
## 26                                                                                                                                                                                                                                                                                                                                               Caroline Kennedy Accuses Cousin RFK Jr Of Being A "Predator" And Urges Senators To Reject His Nomination As HHS Secy; Patel's Personal Battles With Intel Community Shaped His Views Of FBI; WH: NJ Drones That Caused Hysteria Were "Not The Enemy"; Trump Calls China's DeepSeek A "Wake-Up Call" For U.S. Industries; Beauty Company Embraces DEI As Other Brands Ditch Programs. Aired 2:30-3p ET
## 27                                                                                                                                                                                                                                                                                                                                     Minorities Face Burnt Of Trump's First Actions Back In Office; Former White House Diversity Chief Reacts To End Of DEI Programs; Trump Targets DEI, Civil Rights Rules In First Days Of 2nd Term. Newark Mayor Says Business Raided By ICE Agents, Multiple People Detained; Hostages Return To Israel For Treatment After Release By Hamas; CNN Kobe Bryant Documentary Series Premiers Tonight. Aired 8-9a ET
## 28                                                                                                                                                                                                                                                                                                                                                                         FAA Says, Six People On Board Plane That Crashes In Philadelphia; Private Medical Flight Crashes Near Philadelphia Mall; NTSB Says, All Three Bodies Recovered From Black Hawk Helicopter; CNN Follows The Midair Collision Of American Eagle 5342 And Army Helicopter; Trump Makes Baseless Claims That DEI Led To The Crash Near Reagan National Airport. Aired 10-11p ET
## 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Both Black Boxes From Plane Recovered After Deadly Crash; Trump Blames DEI, Without Evidence, For Deadly Crash; Sen. Hassan Questions RFK Jr. On Past Autism Comments. Aired 9-10p ET
## 30                                                                                                                                                                                                                                                                                                                    "Sesame Street" Legend Reacts To Purge Of DEI Initiatives; Venezuelan Trump Supporters Fight To Preserve Policy; States Fight Back With Thousands Of Federal Workers In Limbo; "Sesame Street" Legend Reacts To Pressure On PBS Over DEI; Man Pleads Guilty In Shooting Of U.S. Teen Ralph Yarl; Missouri Sues Starbucks Over Its Diversity Programs; Military Cuts Recruiting Efforts At Black Engineering Event. Aired 8-9a ET
## 31                                                                                                                                                                                                                                                         Freed Women Hostages Handed Over To Israeli Forces; U.S. Freezes Almost All Foreign Aid Effective Immediately; Pete Hegseth Confirmed As U.S. Defense Chief In Tiebreaker Senate vote; White House Says Migrant Deportation Flights With Military Aircraft Have Begun. Buses Arrive Carrying Palestinian Prisoners in West Bank; Federal Agencies in the U.S. Told to Eliminate DEI Positions Within 60 Days; Trump Tours Disaster Areas in California and North California . Aired 6-7a ET
## 32                                                                                                                                                                                                                                                                                                                                                                                                                         40 Bodies Recovered so Far from Crash, Black Box Found; Probe Intensifies in Deadliest U.S. Plane Crash in 24 Years; Trump Baselessly Blames Democrats, DEI for Deadly Plane Crash. Rescuers Scouring For More Debris; Nine Lives Lost From Fairfax County; President Trump Points His Finger to Democrats. Aired 10-11p ET
## 33                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Threatens to Cut Off Funding for Sanctuary Cities; Trump's Immigration Plans Bring Refugee Programs to a Halt; Scientists Sound the Alarm After Trump Administration Halts NIH Meetings; Elon Musk Bashes Trump's $500 Billion A.I. Project; Trump Criticizes FEMA, Questions if Disaster Agency is Needed. Aired 8:30-9a ET
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Officials: No Survivors In Midair Collision; 67 Believed Dead; Recovery Effort Unfolds For 67 Victims Of Passenger Jet-Chopper Crash; Trump Lashes Out At DEI, Dems Amid Crash Recovery Effort; FBI Director Nominee Kash Patel Faces Confirmation Hearing. Aired 1:30-2p ET
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Recovery Effort Under Way In Deadly In-flight Collision; Without Evidence, Trump Blames DEI For Deadly Collision; Source Says One Air Traffic Controller Was Working Two Different Tower Positions At Time Of Collision. Aired 5-6:00p ET
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Approval Dips, Still Above Any Point in His First Term; Hamas Hands Bodies of Four Israeli Hostages to Red Cross; Trump Holds Event Marking Black History Month. Aired 3:30-4p ET
## 37                                                                                                                                                                                                                                                                                                                                                                                                                           U.S. Distances Itself from Ukraine as Trump Invites Putin; Reporter Barred from Oval Over Gulf of America Clash; FCC Opens Probe into Comcast to Root Out DEI Programs. Employee and Union Sources Say Mass Firings Have Begun at Federal Agencies; Pam Bondi Sues New York Over Sanctuary City Policies. Aired 10-11p ET
## 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CNN's Laura Coates Reports About the Tragedy on the Potomac ; Trump Blames DEI for Deadly Crash; CNN Remembers the Lives Lost on Flight 5432. Aired 11p-12a ET
## 39                                                   CNN Saturday Morning Table for Five. President Trump Blames Federal Government Diversity, Equity, and Inclusion Policies for Commercial Plane and Military Helicopter Midair Collision Near Washington D.C. ; Elon Musk's Possible Influence in Trump Administration Examined; Robert F. Kennedy Jr. and Tulsi Gabbard Face Tough Questions at Senate Confirmation Hearings for Their Nominations to Trump Administration; Paramount Settling Lawsuit with Donald Trump over Editing of Televised Interview with Kamala Harris; Senate Minority Leader Chuck Schumer Says Democrats Aroused after Trump Administration's Order of Freezing of Federal Grants and Loans Rescinded. Aired 10-11a ET
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Recovery Effort Unfolds For 67 Victims of Passenger Jet-Chopper Crash; Defense Secretary: "Mistake Was Made" During Routine Army Training Flight; Trump Lashes Out at DEI, Democrats Amid Crash Recovery Effort. Aired 2-2:30p ET
## 41                                                                                                                                                                                                                                                                                                                                                                                                   Musk And Mystery Team Intensify Dismantling Of Government; CIA Sent Names Of Recent Hires in Unclassified Email To White House; Nationwide Protests Against Trump And Musk Government Actions; "NewsNight" Panelists Discuss The Competency Of Trump Picks; Republicans Try To Figure Out Which Side of the Gaza Plan They're On. Aired 10-11p ET
## 42                                                                                                                                                                                                                                                                                                                                                                                                            Tensions High Between Officers, Judges, Rioters Over Pardons; Trump Orders Thousands Of Troops To Southern Border; Trump Already Sued Over Threat To Birthright Citizenship; An Executive Order May Cause Thousands Of Federal Government Workers To Be Displaced; New Wildfire Burns Thousands Of Acres In Los Angeles. Aired 10-11p ET
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                              Recovery And Investigation Underway In Deadly Aircraft Collision Over D.C. ; President Trump Talks Deadly Plane Crash, Tariffs; White House Still Claiming DEI Policies May Have Played Part In D.C. Plane Crash; NTSB Officials Give Update On Deadly D.C. Plane Crash. Aired 5-6p ET
## 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Dealt Double Down Blow Amid Effort To Gut U.S. Government; Musk Deputy Out; "Most Dangerous Nominee?"; Report: Russia Falls For Spoof Report On China's DeepSeek. Aired 7-8p ET
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Coleman Hughes is Interviewed about the Anti-DEI Push; Art delaCruz is Interviewed about Helping Wildfire Recovery Efforts; Pandas Make Public Debut in Washington. Aired 9:30-10a ET
## 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Medevac Plane Crashes in Philadelphia , Injuries on Ground Unclear; 6 On Board Crashed Medevac Jet in Philly, Including Child Patient; Trump Tries to Remake Government With No DEI; Coach Remembers Figure Skater Killed in DC Collision. Aired 12-1 am ET
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Interview With Rep. Yassamin Ansari (D- AZ ); Interview With Sen. Tim Kaine (D- VA ); Interview With U.S. Transportation Secretary Sean Duffy. Aired 9-10a ET
## 48                                                                                                                                                                                                                                                                                                                                                                                  Sources: Trump Admin Moves To Begin Dismantling Dept. Of Education; Sources: Trump Admin. Drafting Executive Order To Start Process Of Eliminating Education Dept.; Trump's Actions Echo Project 2025 Despite His Previous Denials; Trump Signs Executive Orders At White House; Trump Signs Order Withdrawing U.S. From UN Human Rights Council. Aired 3-3:30p ET
## 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                       FAA Indefinitely Closes Helicopter Routes Near Reagan National Airport; Families, Friends Honor The 67 People Killed In DC Tragedy; Confirmation Of Some Of Trump's Controversial Picks In Question; Most U.S. Companies Say Diversity Is Good For Business. Aired 1:30-2p ET
## 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Fires Inspectors General From Over A Dozen Federal Agencies; Trump Suggests Plan For Gaza Is To "Clean Out The Whole Thing"; NIH Told It Can Continue Purchasing Supplies For Studies. Aired 7:30-8a ET
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                               Sen. Tim Kaine (D- VA ) Discusses Plane-Chopper Midair Collion, Trump Lashing Out at DEI, Democrats; Soon: NTSB Press Conference On Deadly Plane Collision; New Details On Victims Aboard Aircraft; NTSB Gives Update On Investigation Into Deadly Midair Collision. Aired 2:30-3p ET
## 52                                                                                                                                                                                                                                                                                                                                                                                                    Trump and MAGA Allies Celebrating Firings Despite Chaos, Loss; Sources Say, 50,000-Plus Pentagon Workers at Risk of Firing; Trump Marks Black History Month Amid His War on Diversity. President Trump Says He Should Not Be Blamed For New Warning Signs About the Economy; V.P. Vance Talks About Masculinity In An Interview. Aired 10-11p ET
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  "Arab Americans For Trump" Changes Name Over Gaza Comments; NLRB Leader Ousted By Trump Speaks Out After Filing Lawsuit; Supervisors Withdraw Sade Robinson Memorial; NFL Removing "End Racism" From End Zones Ahead Of Trump Super Bowl Appearance. Aired 8-9a ET
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Administration Tells Agencies To Carry Out Widespread Layoffs; Vance To WSJ: Sending U.S. Troops To Ukraine Is "On The Table"; Jets Moving On From Rodgers. Aired 5:30-6a ET
## 55                                                                                                                                                                                                                                                                                                                       President Trump's Allies Look To Clarify His Ideas For Gaza; Attorney General Pam Bondi Quickly Aligns DOJ With Trump Agenda; Bird Flu Cases Lead To Higher Egg Prices In U.S. ; Panama Denies U.S. State Department's Claim That U.S. Government Ships Can Use The Panama Canal For Free; FCC Releases Kamala Harris' "60 Minutes" Interview Transcript; Google Removing Hiring Goals Targeting Diversity. Aired 5- 5:30a ET
## 56                                                                                                                                                                                                                                                                                                                                              Tonight: Deadline For Federal Workers To Accept "Buyout" Offer; Musk's Team Expands Its Influence Throughout Government; Ex-Trump WH lawyer: "It's A Naked Power Grab....To Flood The Zone"; Democrats Target "Unelected, Unaccountable Billionaire" Elon Musk; Now: House GOP Leaders Meet With Trump At White House; Trump Plots Out Legislative Strategy With House GOP Leaders. Aired 12-12:30p ET
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Federal DEI Staff Put on Leave; ICE to Use Common Sense with Migrant Arrests; John Sandweg is Interviewed about Deportations; Rare Storm Blankets South; DOJ Sidelines Workers. Aired 9-9:30a ET
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Flight Data Appears To Show Black Hawk Off Course And 100 Feet Above Maximum Allowed Altitude; Trump To Impose Tariffs On Mexico , Canada & China Tomorrow. Aired 4-5p ET
## 59                                                                                                                                                                                                                                                                                                   Major Changes Underway As Trump Works To Reshape Government; Sources: White House In Talks To Host Some Jan. 6 Convicts; DOJ Threatens To Prosecute Officials Who Resist Immigration Orders; JPMorgan Chase CEO On Trump Tariffs: "Get Over It"; PMorgan Chase CEO: Trump Tariff Threat May Be Negotiating Tool; Trump Tariffs Loom Over Chinese Factory In Mexico ; Chinese Firms Weigh Options As Trump Threatens New Tariffs. Aired 3-3:30p ET
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump, U.K. Prime Minister Starmer To Meet At White House For Critical Talks On Ukraine ; RKF Jr. Downplays Texas Outbreak Amid Measles Death; Sen. Chris Coons (D- DE ) Discusses Speaker Johnson Vowing GOP Will Not Cut Medicaid. Aired 7:30-8a ET
## 61                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Signs Order Banning Trans Athletes From Women's Sports; Texas Governor On Trump's Border Crackdown; Fired Agents Sue, Accusing DOJ Of Violating Constitution; Bondi Sworn In As Attorney General Amid DOJ Turmoil; Trump Expected To Get Mar-a-Lago Classified Docs Returned. Aired 5-5:59p ET
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interview With Sen. Cory Booker (D- NJ ); Interview With U.S. Secretary of Homeland Security Kristi Noem. Aired 9-10a ET
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Sen. Peter Welch (D- VT ) is Interviewed about Kash Patel; Trump Links Diversity to Collision; Controversial Cabinet Picks Face Senators. Aired 6:30-7a ET
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Judge Pauses Trump's "Buyout" Offer to Federal Workers; EPA Environmental Justice Workers Could be Put on Leave; Emails Show Mush Associates Sought to Use Critical Treasury Payment System to Shut Down USAID Spending. Aired 2-2:30p ET
## 65                                                                                                                                                                                                                                                                                                   Trump Approval At 47 Percent, Higher Than Any Point In First Term; Americans Weigh In On Trump's First Month In Office; 62 Percent Say Trump Not Doing Enough To Bring Down Prices; Source: DOGE Firings Amount To "Indiscriminate Madness"; McConnell Announces He Won't Run For Reelection; Senate On Track To Confirm Patel As FBI Director This Afternoon; One Month In: Much Of Project 2025 Agenda May Be Still To Come. Aired 12-12:30p ET
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             President Trump Defends Pardoning Violent January 6 Rioters; Evacuation Warning Just Issued As New Fire Erupts In L.A.; Trump Brushes Off Concerns Over China's Access To TikTok Data. Aired 5-5:30a ET
## 67                                                                                                                                                                                                                                                                                                                                                                                                 Soon: Trump Holds Event Marking Black History Month; Sources: Defense Secy. Could Soon Fire Top Generals, Admirals; Sen. Richard Blumenthal (D- CT ) Discusses About Hegseth's Firing of Generals; Sen. Blumenthal Urges Trump Admin. to Reverse Terminations at FAA; Zelensky Calls Meeting with U.S. Envoy Kellogg "Productive". Aired 3-3:30p ET
## 68                                                                                                                                                                                                                                                                            Federal Judge Clears Way For More Mass Firing; Some Once- Hawkish Republicans Soften Stance On Ukraine ; Sen. Markwayne Mullin, (R- OK ), Is Interviewed About Ukraine , Kash Patel; Senate Confirms Kash Patel To Lead FBI In 51-49 Vote; 11-Year-Old Texas Girl Dies By Suicide After Classmate Said ICE Would Deport Her Parents, Family Says; WH Hosts Black History Month Reception Amid Crackdown On DEI; West Texas Measles Outbreak Hits 58 Cases. Aired 5-6p ET
## 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Sen. Bernie Sanders: U.S. Moving Toward Oligarchy; Officer Hodges: Rioters Attacked Me, They Don't Deserve A Pardon; Denver Mayor Says City Will Work With ICE On Deporting Criminals, But Won't Allow Arrests At Schools & Churches. Aired 9-10p ET
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Interview With Rep. Gerry Connolly (D- VA ); Elon Musk Dismantling Government Agencies; New Trump Tariffs. Aired 1-1:30p ET
## 71                                                                                                                                                                                                                                                                                                                                                                                                               Trump Welcomes Japanese Prime Minister To White House; World Leaders Watching Trump's Early Moves Closely; Panama Says State Department Claim About Canal Fees Are "Based on A Falsehood"; Project 2025 Co-Author Starts Job As Trump's Budget Chief; New Time Cover Depicts Musk Sitting Behind President's Desk. Aired 12-12:30p ET
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump White House Stirs New Confusion As It Tries To Clarify Status Of Frozen Federal Funds; RFK Jr. Grilled On Vaccines & Abortion In Confirmation Hearing; Israel : Three Israeli And Five Thai Hostages To Be Released Thursday. Aired 4-5p ET
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump's Baselessly Links Diversity Initiatives to Collision; Rain Could Hamper Recovery Efforts in Icy Potomac River; Divers Battle Mud, Zero Visibility in Recovery Efforts. Aired 6-6:30a ET
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                         Marc Fogel Visits The White House After Release From Russia ; Elon Musk Defends DOGE In The Oval Office; Kash Patel Accused Of Ordering FBI Firings Before Confirmation; U.S. Military Backs Out STEM Recruiting Conference; Sonya Massey's Family Settle For $10 Million. Aired 11p-12a ET
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Delays TikTok Ban as He Looks for Options to Save It; Blue-collar Trump Voters Want Quick Proof Promises Will Be Kept; Trump Shares Letter From Biden Left in Resolute Desk With Fox News. Aired 12:30-1p ET
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Marc Short is Interviewed about Tariffs, RFK Jr. and the FBI; Rep. Johnny Olszewski (D- MD ) is Interviewed about Dismantling the Education Department; Trump Hints of Purchase of TikTok. Aired 6:30-7a ET
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Makes Demands, Threats in First Message to World; Trump on Musk Criticizing A.I. Announcement, He Hates Altman; Two GOP Senators Will Vote Against Pentagon Pick Hegseth. Federal Judge Blocks Trump's Executive Order Targeting 14th Amendment. Aired 10-11p ET
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Won't Call Putin A "Dictator": I Don't Use World "Lightly"; Musk: "Failure To Respond A Second Time" Will Result In Firing; Ex-Official: NASA Never Got Offer From Musk To Help Astronauts. Aired 7-8p ET
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               New Recovery Effort Under Way In Deadly In-Flight Collision; Controversial Trump Picks Face Questions On Past Comments. Aired 4-5p ET
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Interview With Rep. Hakeem Jeffries (D- NY ); Interview With Special Envoy to the Middle East Steve Witkoff. Aired 9-10a ET
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                             White House Orders Freeze On All Federal Grants And Loans; Assistance Pause Could Impact School Breakfast & Lunch Programs; Justice Department Fires Officials Who Investigated Trump; Trump Picks His Criminal Defense Attorneys For Key DOJ Posts. Aired 12-12:30p ET
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump's Justice Department Halts Police Reform Agreements; Trump Signs New Executive Orders in Oval Office. Aired 3:30-4p ET
## 83                                                                                                                                                                                                                                                       Hamas Releases Israeli Hostages, Returns Remains Of Shiri Bibas; Pentagon Announces It Plans To Fire 5-8 Percent Of Civilian Workforce; U.S. Proposes Draft U.N. Resolution On War In Ukraine ; Federal Judge Gives Go-Ahead For Trump To Gut USAID. U.S. Federal Judge Clears the Way for Dismantling of USAID; Associated Press Sues Trump Administration After Being Blocked from White House Briefings; Pentagon Announces Plans to Fire 5-8 Percent of Civilian Workforce. Aired 6-7a ET
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Interview With Connecticut Attorney General William Tong ; Musk and Trump Targeting Department of Education?; Trump's Trade War With China Begins; FBI Employees File Lawsuit Against DOJ. Aired 1-1:30p ET
## 85                                                                                                                                                                                                                                                                                                                                                Zelenskyy Says, Talk With Top Trump Envoy Gives Hope; Sources Say, Hegseth Could Fire Top Generals and Admirals Soon; Gov. Kathy Hochul (D- NY ) Says She Won't Move to Oust Mayor Eric Adams (D- New York City , NY ). Sen. Mitch McConnell Announces He Won't Seek Re-Election; U.S. Senate Confirms Kash Patel For FBI Director; Hawaiian Volcano Spews Lava 400 Feet Into The Air. Aired 6-7p ET
## 86                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Baselessly Appears To Blame FAA "Diversity Push" For Collision; 67 Presumed Dead In Mid-Air Collision Over Potomac River ; Kash Patel, Tulsi Gabbard Face Confirmation Hearings; Sources: FBI Agents Association Officials Urged Patel To Protect Agents Who Investigated Jan. 6 Violent Crime. Aired 12:30-1p ET
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump Pauses Tariffs On Canada And Mexico For 30 Days; Netanyahu In Washington To Meet With President Trump; China Imposes Retaliatory Tariffs On U.S. Imports. Aired 5-5:30a ET
## 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Mayor: Immigration Agents Raided NJ Business Without Warrant; Judge Blocks Trump's "Blatantly Unconstitutional" Executive Order; Trump Wants To Meet With Putin "As Soon As We Can" "Immediately". Aired 7-8p ET
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ICE Says Hundreds of Illegal Immigrants Arrested in Recent Days; Powerful New Chinese AI Tech Shocks Experts, Disrupts Markets. Aired 3-3:30p ET
## 90                                                                                                                                                                                                                                                                                                                                                                                                           Musk Rehires DOGE Aide Who Resigned Over Racist Posts; Trump Admits Musk's DOGE Getting Access to Sensitive Data; Trump Terminates Kennedy Center Board. A Federal Judge Blocks Trump Administration's Plan To Put All USAID Workers On Leave; Homeland Security Secretary Noem Checks Out Operations at Guantanamo Bay . Aired 10-11p ET
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Expected to Reshape Military With New Executive Orders; Trump Expected to Sign Order Banning Transgender Service Members; Trump Admin Launches Immigration Crackdown in Chicago. Aired 2-2:30p ET
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hegseth Arrives for First day as Defense Secretary; White House and Colombia Reach Deal; Immigration Crackdown Intensifying; Trump Fires Inspectors General. Aired 9-9:30a ET
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Justice Department Fires Officials Who Investigated Trump; Trump Bars Transgender Americans from Military Service; Snow and Flood Concerns Move into Great Lakes Region. Aired 6-6:30a ET
## 94                                                                                                                                                                                                 Judge: Mass Firings of Federal Probationary Workers "Likely Unlawful"; RFK Jr. Downplays Measles Outbreak, Doctors Say He's Wrong; Transportation Secretary Sean Duffy Saying FAA Will be Hiring More Air Traffic Controllers; President Trump to Meet with Ukrainian President Volodymyr Zelenskyy; President Trump Touting Potential Deal with Ukraine to Extract Rare Earth Minerals from Country; France and U.K. May Propose Security Guarantees for Ukraine against Russia during negotiations to end Russia - Ukraine war. Aired 8-8:30a ET.
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                At Least Five Tech CEOs To Attend Trump Inauguration; Soon: Trump Caps Political Comeback With Second Inauguration; Trump Promises To Release JFK, RFK And MLK Assassination Files. Aired 5:30-6a ET
## 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CNN's Special Coverage on the Inauguration of Donald Trump as the 47th President of the United States . Aired 3-4a ET
## 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Reshapes America 's Government & Alliances; CNN Poll: 62 Percent Say Trump Has 'Not Gone Far Enough' to Reduce Prices; Arctic Blast Sets New Cold Records Across the Central U.S. Aired 6-6:30a ET
## 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Recent Polls on Trump's Second Term; Rep. Katherine Clark (D- MA ) is interviewed about Deadline Government Workers; Associated Press Sues Trump; Trump's Vision of Energy Independence. Aired 8:30-9a ET
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Immigrant Families Fear Being Separated By Trump Deportations; Trump Signs Four New Executive Orders, Transforming Military; DeepSeek AI Model Sends Shockwaves Through U.S. Markets. Aired 5:30-6a ET
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             New Ultimatum from Trump; GOP'S Careful Pushback on Musk; Sen. Ed Markey (D- MA ) is Interviewed about Dismantling Federal Agencies; Flu Cases Peak for Second Time; Louisiana Police Looking into Death of Reporter. Aired 8:30-9a ET
## 101                                                                                                                                                                                                                                                                                                                                                                Sources Say, Trump Expected To Get Back Classified Documents Taken By FBI; Former USAID Leaders Condemn Trump's Attempts To Dismantle Agency; Trump Admin Tries To Walk Back His Gaza Comments Amid Global Outrage; Police: 100,000 Eggs Stolen From PA Distribution Center As Supply Crunch Sends Prices Soaring; Wolf Blitzer Honored For Excellence In Journalism. Aired 6-7p ET
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Judges Will Decide Fate Of Trump's Most Contentious Moves; Trump, Japanese Prime Minister Meeting At White House; Trump Expects To Talk To Zelenskyy Next Week, Says He Wants To Discuss Security Of Ukraine 's Assets Like Rare Earths. Aired 12:30-1p ET
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump White House Holds First Press Briefing. Aired 1-1:30p ET
## 104                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Admin Defends Agenda As CNN Poll Shows Rising Pessimism; White House: Trump "Very Frustrated" With Zelenskyy Right Now; Senate Confirms Kash Patel To Lead FBI In 51-49 Vote; Trump Economist: DOGE Checks To Americans Wouldn't Drive Inflation; Hamas Releases Remains Of Four Israeli Hostages. Aired 4-5p ET
## 105                                                                                                                                                                                                                                                                                                                                                                                           Pete Hegseth Confirmation Vote Could Happen In Hours; Sen. Tim Kaine, (D- VA ), Is Interviewed About Pete Hegseth Confirmation, RFK Jr.; The Impact Of Trump's First Days Back In Office; Trump Floats The Idea Of Getting Rid Of FEMA; Big Changes In Americans' Views On How Much To Drink; Giant Pandas Debut At D.C. 's National Zoo . Aired 5-6p ET
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump's Approval Rating; Trump Revokes Security for Ex-Aides; Christopher Reeve's Story. Aired 8:30-9a ET
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Rep. Melanie Stansbury (D- NM ) is Interviewed about DOGE; Senators Vote on Hegseth Today; Michael Smerconish is Interviewed about Trump's First Week. Aired 6:30-7a ET
## 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Elon Musk Is Reshaping The Government, But Is It Legal?; Breaking Down Elon Musk's Expanding Role in Trump Administration; Democrats Plot First Major Attack on Trump Agenda; Trump To Become First President to Attend Super Bowl. Aired 8-9a ET
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Migrant Deportation Flights Begin; Rep. Gabe Vasquez (D- NM ) is Interviewed about Birthright Citizenship and Deportations; Trump Visits North Carolina and California ; Zeb Smathers is Interviewed about Flood-Ravaged North Carolina . Aired 9-9:30a ET
## 110                                                                                                                                                                                                                                                                                                                                                                                                                                                              President Biden Issues Preemptive Pardons for Dr. Anthony Fauci and General Mark Milley; Trump-Vance Transition Adviser Jason Millers Says President-Elect Trump Prepared to Sign Executive Orders regarding Immigration and Energy Immediately Upon Taking Office. Aired 8-8:30a ET.
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Makes Unprecedented Shake-up At The Pentagon; CNN Presents " America Asks"; Fans Flock To See Alleged Killer Luigi Mangione In Court; Major Setback In Bid To Free The Menendez Brothers; Laura Coates Interviews Roy Wood Jr. Aired 11p-12a ET
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DOGE Claims Billions in Savings; Trump Reverses Stance toward Ukraine ; McConnell Announces Retirement. Aired 6:30-7a ET
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Musk Moves to Eliminate Key Federal Agency; El Salvador Agrees to House Deported U.S. Criminals; FBI Prepares for Major Trump Purge; Red Flags Raised After CBS Hands Over Harris Transcript; Judge Warns Lively and Baldoni Lawyers. Aired 11p-12a ET
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump to Leave Blair House for Church Service; Sen. Katie Britt (R- AL ) is Interviewed about the Trump Administration. Aired 8:30-9a ET
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                  Executive Order Suspending Refugee Program Could Leave Afghans Who Helped U.S. In Limbo; Trump Signs Executive Orders Cracking Down On Immigration; Trump Begins Second Term With Deluge Of Executive Actions; Tech Leaders, Billionaires Flock To Donald Trump's Inauguration. Aired 12:30-1p ET
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Admin Resists " Russian Aggression" Phrase In G7 Document; Elon Musk's Chainsaw; "Inflation Is Back"; Surgeon: Insurance Is Taking The "Humanity" Out Of Health Care. Aired 7-8p ET
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CNN's Coverage of the Inauguration of President Donald Trump; Trump to Hold Signing Ceremonies; Families of Israeli Hostages in Gaza Seen in the crowd. Aired 5-5:30p ET
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Judge Denies Dem Attempt To Block DOGE From Federal Data Systems; New York Governor Hochul Considers Next Steps In Mayor Adams Case; Rep. Gabe Amo (D- RI ) On Zelenskyy Saying Trump "Lives In This Disinformation Space." Aired 7:30-8a ET
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump Administration Targeting Generals and Admirals?; IRS Layoffs Expected; Senate Set to Approve Kash Patel; Ukraine - U.S. Relationship Falling Apart?. Aired 1-1:30p ET
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Judge Blocks Trump Order To Freeze Trillions In Federal Funding; Caroline Kennedy: RFK Jr. is "A Predator"; German Chancellor: Elon Musk's Right-Wing Push Is "Disgusting". Aired 7-8p ET
## 121                                                                                                                                                                                                                                                                                                                                                                                                           Donald Trump to be the 47th President of the United States ; Second Day of Israel -Hamas Ceasefire Updates; World Leaders Brace for Trump's Second Presidency; Donald Trump's Second Inauguration Just Hours Away; Trump Hails TikTok's Return Hours Ahead of Inauguration; Trump Promises Tough Crackdown On Immigration. Aired 2-3a ET
## 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Says Putin Agreed To Start Talks On Ukraine ; U.S. Inflation Hits 3 Percent For First Time Since June; Trump Speaks With Reporters In The Oval Office. Aired 4-5p ET
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    IRS Fires Thousands Of Workers During Tax Season; Elon Musk Celebrates Federal Job Cuts With A Chainsaw; Europe Considers Next Steps Amid U.S. & Russia Talks; Gov. Hochul Declines To Remove NYC Mayor Adams. Aired 5-5:30a ET
## 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Jump Starts Second Term With Stunning Slew of Executive Orders; Southern States Brace for Another Major Winter Storms; Trump Threatens 25 Percent Tariffs on Mexico and Canada on Feb. 1. Aired 7- 7:30a ET
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        New 40-Acre Brush Fire Erupts Overnight in L.A.; Trump Defends Jan. 6 Pardons in Oval Office Interview; Authorities Search for Motive in Deadly Nashville School Shooting. Aired 7-7:30a ET
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump: Ukraine Will Be Part of Any Peace Negotiations; Trump Appears to Cast Doubt on Whether McConnell is a Polio Survivor; Judge Extends Pause on Trump's Dismantling of USAID. Aired 3:30-4p ET
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Plans About 100 Executive Orders & Actions On Day One; Freed Palestinians Greeted By Huge Crowds In West Bank; Trump Seeks Dialogue With China While Pushing Hardline Stance; Trump Plans about 100 Executive Orders and Actions on Day One; Trump Makes Big Promises But Can He Deliver. Aired 1-2a ET
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Administration And Colombia Reach Agreement On Migrant Flights; Navajo Officials: 15 Indigenous People Questioned Since Wednesday; Super Bowl LIX: Chiefs Vs. Eagles. Aired 5:30-6a ET
## 129                                                                                                                                                                                                                                                                                                                                                  Trump Says He'll Pause Tariffs On Mexico For One Month; Trump Admits Tariffs May Cause "A Little Pain" For Americans; Trump Says He'll Speak Again With Canadian PM This Afternoon; Musk Team Gains Access To System That Writes America 's Checks; Trump, Allies Pulling Levers Of Power That Few Knew Existed; Secretary Of State Rubio Says He Is Acting Director Of USAID. Aired 12-12:30p ET
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 What Trump Wants From CA : Voter ID Laws And Water Flow; Trump Says He Wants States, Not FEMA, To Run Disaster Response; Trump In North Carolina To Tour Hurricane Helene Damage; Today: Senate Vote On Defense Secretary Nominee Pete Hegseth. Aired 12-12:30p ET
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Interview with Polish Foreign Minister Radoslaw Sikorski on Russia - Ukraine War; The Fragility of America 's Justice System. Interview With Law Professor And Author Rachel Barkow; Interview With Author Marc Dunkelman. Aired 10-11a ET
## 132                                                                                                                                                                                                                                                                                                                                                                                                 USDA Trying To Rehire Staff Working On Bird Flu After Firing Them; Senate Votes To Confirm Kash Patel As FBI Director; Waltz: Trump "Frustrated" By Ukraine 's Zelenskyy Not Accepting Deal; Child Dies By Suicide After Alleged Bullying, Deportation Threats; HHS Narrows Definitions Of Words Like "Sex," "Males" & "Females". Aired 2:30-3p ET
## 133                                                                                                                                                                                                                                                                                                                                         Speaker Johnson Announces New January 6 Subcommittee; Sources: White House In Talks For January 6 Convicts To Meet With Trump; Mandatory Evacuation Orders As New Fire Breaks Out Near L.A.; U.S. Military Orders Thousands More Troops To Southern Border; UK Tabloid Settles With Prince Harry, Apologizes For Phone Hacking; Trump Threatens Sanctions On Russia If Fighting Doesn't End. Aired 4-5p ET
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dr. Jonathan Reiner is Interviewed about the Measles Outbreak; Trump Takes First Appeal to Supreme Court ; Mark McKinnon is Interviewed about Trump's Russia / Ukraine Comments. Aired 6:30-7a ET
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Inauguration Of Donald Trump. Aired 7-8p ET
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     New Video Shows Passenger Jet Colliding With Military Chopper; FAA Indefinitely Closes Helicopter Routes Near Crash Site; NTSB Recovers Both Black Boxes From Doomed Jet; Trump Jumps Right To Blame Game Over Plane Crash. Aired 12-12:30p ET
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Federal Buyout Offer Paused; White House Wants Faster Pace of Migrant Arrests; Elon Musk Continues Gaining Access to Federal Government Systems. Aired 1-1:30p ET
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump, Zelenskyy Trade Insults In Escalating War Of Words; Defense Secretary Orders Military To Prepare For Major Budget Cuts; No Ruling Yet On DOJ Push To Drop Corruption Charges Against Adams. Aired 7:30-8a ET
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump: Musk "Won't Do Anything Without Our Approval"; Trump Declares Victory In Stand-Off With Mexico & Canada; Father: All Victims "Deserve To Be Remembered." Aired 9-10p ET
## 140                                                                                                                                                                                                                                                                                                                                                                                                            Vance Scolds European Allies Over Immigration, Free Speech; Vance: "Threat From Within" More Dangerous To Europe Than Russia ; Now: Vance & Zelenskyy Meet At Munich Security Conference; Mixed Message On Ukraine Coming From Trump, Vance, Hegseth; Seventh Prosecutor Resigns Over Order To Drop Eric Adams Case. Aired 12-12:30p ET
## 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     GOP Senators Push Back on Musk Gutting Federal Workforce; Several Agencies Tell Employees Not to Respond to Musk Email; Zelenskyy Speaks Out on Possibility of Deal with U.S. ; Vatican: Pope in Critical Condition with Mild Kidney Failure. Aired 6-6:30a ET
## 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Federal Judge Receives No Answers from Justice Department to Questions about Organizational Structure of Department of Government Efficiency; Republican Congressman Experiences Contentious Town Hall with Constituents after Mentioning Elon Musk. Aired 8-8:30a ET
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                 President Trump Announces Tariffs on Canada, Mexico , and China; Stocks Markets Potentially Down Upon News of U.S. Tariffs on Trading Partners; Workers at U.S. Agency for International Development Receive Email to Not Show Up to Work as Trump Administration Targets Agency. Aired 8-8:30a ET
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DOJ Officials Who Prosecuted Trump Fired; Trump to Address House Republicans in Miami; Sen. Ruben Gallego (D- AZ ) is Interviewed on the Crackdown of Unlawful Immigrants All Across the U.S. ; U.S Tech Stocks Plunge Sparked by New Chinese AI. Aired 5-6:00p ET
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     USAID In Limbo As Musk Says Trump Signed Off On Shutting Down Agency; Rep. Pat Ryan (D- NY ) On China Hits Back At U.S. With Retaliatory Tariffs; Today: NTSB To Release Data From Black Box Of Black Hawk Helicopter That Collided With Jet. Aired 7:30-8a ET
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Freeze On Federal Grants And Loans Takes Effect At 5 P.M. Today; WH: NJ Jones That Caused Hysteria Were "Not The Enemy"; ICE: 1,100-Plus Arrested In Immigration Enforcement On Monday. Aired 2- 2:30p ET
## 147                                                                                                                                                                                                                                                                                                                                                                                              Musk Moves from Villainizing Workers to Fictionalizing Them; Trump Cedes Spotlight to Elon Musk in First Cabinet Meeting; Bezos Commands Washington Post to Focus Columns on His Two Pillars. Supreme Court Justices Poises to Favor Straight Woman in a Job Bias Case; A.I.-Generated Video of Trump's Fantasy Gaza Sparked Outrage. Aired 10-11p ET
## 148                                                                                                                                                                                                                                                                                                                                                  Federal Judge Blocks Trump USAID Leave Plan; Trudeau Says Trump Threat To Annex Canada "Is A Real Thing"; Trump Says Musk will Review "Just About" Every Federal Agency. Politico: Trump Considering Blagojevich For Ambassador Post; Actress Debra Messing On Her Pro- Israel Activism; Federal Judge Temporarily Blocks Trump From Putting At Least 2,200 USAID Workers On Leave. Aired 5-6p ET
## 149                                                                                    Trump Fires Top U.S. General, Calls Gen. Charles Brown A "Fine Gentleman"; Trump Falling Sort; Acting ICE Director Removed Amid Frustration Over Pace Of Arrests; Pentagon Announces It Plans To Fire 5-8 Percent Of Civilian Workforce; NY Times Columnist: Musk Is "Operating As What Cybersecurity Experts Call An Insider Threat"; Mine Workers Tell CNN Musk Claims Are False; Alleged Healthcare CEO Killer Appears In Court, Attracting Dozens Of Supporters, Observers; Los Angeles D.A. Urges Judge To Deny Menendez Brothers' Request For A New Trial; Second Body Said To Be That Of Israeli Hostage Shiri Bibas Handed Over By Hamas. Aired 8-9p ET
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Zelenskyy Is Defiant After Explosive Oval Office Meeting With Trump; Officials Rule Out Key Theory In Gene Hackman's Death; Trump Reveals Private Blame Game Talk With Biden; Laura Coates Interviews Author Ben Arogundade. Aired 11p-12a ET
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Fires Justice Department Officials Who Prosecuted Him; Trump Plots Strategy With House GOP as He Readies New Orders; Chinese A.I. Advancement Sends U.S. Tech Stocks Plunging. Displaced Palestinians Making Emotional Return To Gaza; Survivors Mark 80 Years Since Auschwitz Liberation. Aired 6-7p ET
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Plans To Own, Control, And Develop Gaza; Democrats Blast Elon Musk; CIA Offering Buyouts To Entire Workforce; New York Doctor Indicted In Louisiana For Sending Abortion Pills. Aired 11p-12a ET
## 153                                                                                                                                                                                                                                                  Trump Hosts France's Macron At Crucial Moment For Ukraine ; Interview With Senator Mark Kelly (D- AZ ); MAGA Podcaster Dan Bongino Tapped To Be Next FBI Deputy Director; Former Proud Boys Leader Taunts Officers Who Protected; Political Conference In D.C. Interrupted By Death Threats Against Speakers Critical Of Trump; Colorado Trump Voters On The President's Tumultuous New Term; Clint Hill, Secret Service Agent Who Jumped Onto Limo After JFK Was Shot, Dies At 93. Aired 8-9p ET
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Urgent Investigation After Deadliest U.S. Airliner Crash in 23 Years; Trump Baselessly Blames Diversity Initiatives for Plane Crash; One Black Box Has Been Recovered from Potomac River . Some Victims Of Mid-Air Collision Being Identified. Aired 6-7p ET
## 155                                                                                                                                                                                                                                                                                                                                            Elon Musk Dominates First Trump Cabinet Meeting; Musk: Trump Told Me To Be "More Aggressive" In Federal Cuts; Texas Reports First Measles Death As Cases Spread Rapidly; New Strategy To Combat Bird Flu, Lower Egg Prices; Supreme Court Signals It Will Make It Easier For Americans To File "Reverse" Discrimination Lawsuits; Hamas Expected To Release Bodies Of 4 Israeli Hostages. Aired 4-5p ET
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Oscar-Winning Actor Gene Hackman Found Dead in His Home; Trump to Welcome British P.M. Starmer to White House; Pro- Palestinian Protesters Storm Barnard College Campus. Aired 7-7:30a ET
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               President Trump Calls Zelenskyy A Dictator, Issues A New Warning; Elon Musk's DOGE Slashes Into A Program That Got Lawmakers On Both Sides Of The Aisle Upset; New York City Mayor Eric Adams Speaks Hours After Appearing In Court. Aired 10-11p ET
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump: Judges Shouldn't Say "What You're Supposed To Be Doing"; Trump Pardons Former Illinois Gov. Rod Blagojevich; Trump Doesn't See Vance As His Successor: "It's Too Early." Aired 9-10p ET
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lawmakers Face Pushback From Constituents At Town Halls; Germany 's Conservatives Return To Power As Far Right Surges; Zelenskyy Praises The "Absolute Heroism" Of Ukrainians. Aired 5:30-6a ET
## 160                                                                                                                                                                                                                   Trump Admin Directs Agencies to Prepare for Large-scale Firings; Trump Says U.S. To Sell $5 Million 'Gold Card' That Offers Path to Citizenship; Johnson, Trump Pull Off Last-minute Win as House Passes Budget Plan; Sexually Explicit Messages Found on NSA Chat Rooms; Pope Remains in Critical but Stable Condition; National Parks Litter Turned to Art; Zelenskyy Says Security Guarantees by U.S. Could Be a Step Toward Peace; U.S. Votes Against U.N. Resolution Condemning Russia 's War on Ukraine . Aired 8:30-9a ET
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                               Medical Jet Crashes in Philadelphia, No Confirmed Survivors; Israel -Hamas Ceasefire Leads to Hostage Releases; Deadly Mid-Air Collision Over D.C. , Black Boxes Recovered; Trump Imposes New Tariffs on Canada, Mexico , China; Madison Keys Wins Australian Open, First Major Title. Aired 7-8a ET
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Musk Tightens Grip On Government With Oversight Of More Agencies; Pam Bondi Sworn In As Attorney General; Trump Takes Action To Ban Trans Women From Women's Sports. Aired 9-10p ET
## 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's Freeze On Federal Aid Money Takes Effect At 5PM ET; New Jet Breaks Sound Barrier On Historic Test Flight. Aired 4-5p ET
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Announces Sweeping Tariffs On China, Canada, Mexico ; One- On-One With Former Treasury Secretary Larry Summers. Democrats Pick Minnesota 's Ken Martin as New DNC Chair; Trump Nominees Clean Up Past Comments Before Senate; Can Democrats Retake the House Majority Next November? Aired 8-9a ET
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Laura Coates Interviews Former NYC Mayor Bill De Blasio; Setback After Setback For President Trump In The Courts; CBS News Poll Says President Trump Is Riding High Three Weeks Into His Term. Aired 11p-12a ET
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Musk Takes Center Stage at Trump's First Cabinet Meeting; Israel, Hamas Agree on New Exchange as Fragile Ceasefire Appears Intact; Crowds Line Streets to Mourn Bibas Family Who Were Killed in Gaza. Aired 2-2:30p ET
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Pardons January 6th Rioters; Skye Perryman is Interviewed about a Lawsuit against DOGE; CNN Original Series on Kobe Bryant. Aired 9:30-10a ET
## 168                                                                                                                                                                                                                                                                                                                                                          DOJ Moves To Dismiss Mayor Eric Adams (D- New York City , NY ) Case Amid Protest Resignations; Trump White House Didn't Realize Firings Included Nuke Stockpile Staff; Vice President Vance Railed On European Leaders In Munich; J.D. Vance Meets With Far-Right Party Leader Of Germany ; Associated Press Barred From Oval Office And Travelling With President Trump. Aired 10-11p ET
## 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Will There Be Political Fallout For J6 Pardons; Trump Calls For Full Release Of JFK, RFK, MLK Assassination Files. Four Israeli Female Hostages Returned To Israel As Part Of Ceasefire Deal. Aired 9-10a ET
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  All 67 People Involved In Plane-Helicopter Collision Killed; Trump Baselessly Links Diversity Initiatives To Collision; Figure Skating Community Mourns Members Killed In Crash. Aired 5:30-6a ET
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    White House Holds First Press Briefing Of Trump's Second Term. Aired 1:30-2p ET
## 172                                                                                                                                                                                                                                                                                                                                  White House Rescinds Controversial Federal Aid Freeze Memo; RFK Jr. Says He Is "Not Antivaccine" Despite Past Statements; RFK Jr. Grilled At Department Of Health Confirmation Hearing; Trump To Prepare Guantanamo To House 30,000 Migrants; Defense Secretary Hegseth Pulls Security Detail And Clearance For Trump Critic Gen. Mark Milley; Poor Test Scores Among U.S. Students Raise Concerns. Aired 5-6p ET
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             U.S. Stocks Fall as Trump's Tariff Package is About to Take Effect; American Among Three Hostages Set to be Freed From Gaza Tomorrow. Aired 3:30-4p ET
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Justice Official Resign In Protest Of Order To Drop Adams Case; 14 States Sue Over Elon Musk's Unconstitutional Authority. HHS Secretary RFK Jr. Wants To Be The One Who Reprograms Americans To Eat Differently; Clay Travis Gets Graphic With His Words. Aired 10-11p ET
## 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump to Sign Laken Riley Act Into Law; WH Says Federal Aid Freeze Still in Effect; Fed Leaves Interest Rates Steady, Despite Trump Demands. Aired 2-2:30p ET
## 176                                                                                                                                                                                                                             Trump Wants Dept. Of Education To Be "Closed Immediately"; Trump Speaks With Russia 's Putin & Ukraine 's Zelenskyy; Democrats Bash Musk In First DOGE Subcommittee Hearing; Rep. Jasmine Crockett, (D- TX ), Is Interviewed About DOGE Subcommittee Hearing, Elon Musk; Trump Plan To Slash USAID Could Cost U.S. Farmers Billions. White House Bars Associated Press Over "Gulf Of America"; CNN Speaks With The Attorneys Who Managed Prisoner Swap; U.S. Hit By Most Intense Flu Season In 15 Years. Aired 5-6p ET
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                    Court Rules U.S. Treasury Department Officials Affiliated with Department of Government Efficiency May Access Treasury Department Systems as Read Only; President Trump to Speak at National Prayer Breakfast; NTSB, FAA Investigators to Brief Lawmakers on Midair Collision. Aired 8-8:30a ET
## 178                                                                                                                                                         IDF Says Former Hostages Are Now At Israeli Military Base; Hegseth Confirmed As Defense Secretary After Tie-Breaking Vote; Advocate Groups Ordered To Stop Aiding Refugees Who Have Already Arrived In U.S. ; White House Requesting Help Form State And Local Governments To Enforce Immigration Law; Trump GOP Leaders Threaten Conditions On California Disaster Aid; Southern California Braces For Rainfall Amid Wildfire Recovery; Four Former Israel Hostages Arrive At Hospital; Putin Claims " Ukraine 's Crisis" May Have Been Averted Had Trump Been President. Aired 7-8a E.T.
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Sabrina Singh is Interviewed about the Pentagon Shakeup; W. Kamau Bell is Interviewed about Performing at the Kennedy Center; SAG Awards Balance Jokes with Heaviness. Aired 9:30-10a ET
## 180                                                                                                                                                                                                                                                                                                                                                                                              Chaos, Confusion Erupts After Trump Halts Federal Money; Judge Temporarily Blocks Trump's Plans To Freeze Federal Aid; Trump Officials Issue Quotas To ICE Officers To Up Arrests; Oklahoma Official Supports Trump Agenda On Deportation Of Undocumented Migrants; Armed Man Arrested At The Capitol; RFK Jr. Slammed By Own Cousin. Aired 10-11p ET
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Jeffries On White House Funding Mess: "Round One Goes To Team America "; RFK Jr. Grilled; Migrants To Gitmo? Aired 7-8p ET
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Proposes U.S. Take Over Gaza To Be Riviera; Trump Not Ruling Out Sending Troops To Take Over Gaza; Speechless Democrats On Trump Wanting To Seize Gaza, Insane; CIA Offers Buyouts To Its Entire Workforce; Democrats Versus Elon Musk. Aired 10-11p ET
## 183                                                                                                                                                                                                                                                                                                                                                                                                                      Judge Blocks Trump from Putting Many USAID Workers on Leave Tonight; Trump Says, I Plan to Fire Some January 6 Investigators; Trump Says He is Revoking Biden's Security Clearance. Trump Says He Is Revoking Biden's Security Clearance; Eagles Standing In The Way Of Chiefs' Historic Super Bowl Three-Peat. Aired 6-7p ET
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Administration Puts Dozens Of USAID Senior Officials On Paid Leave; White House Pauses All Federal Grants And Loans; Lawsuit: Electric Sparking Caught On Video Started Eaton Fire. Aired 7:30-8a ET
## 185                                                                                                                                                                                                                                                                                                                                                                                                                                                       Elon Musk Dominates Trump's First Cabinet Meeting; Musk Takes Financial Hit Amid Tesla Protests; Jeff Bezos Faces Backlash Over WAPO Changes; New battle emerges over fate of Medicaid; Supreme Court Takes on "Reverse Discrimination" Case; CNN Presents " America Asks." Aired 11p-12a ET
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Musk Prepares For Cabinet Meeting As Mass Firings Loom; Andrew Cuomo Readies Controversial Comeback; New Revelations In Idaho College Murders Case. Aired 11p-12a ET
## 187                                                                                                                                                                                                                                                                                                                                                                                         Trump Funding Freeze Remains in "Full Force" Despite Rescinding Memo; Kennedy Confirmation Prospects Unclear After Combative Hearing; FBI Director Nominee Kash Patel In The Hot Seat; Defense Secretary Revokes Security Detail And Clearance For Trump Critic General Mark Milley; American Volunteer Fighters Killed And MIA In Ukraine . Aired 8-9p ET
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Defending DOGE: Musk & Trump Questioned On Aggressive Overhaul; Trump Repeats Gaza Plan: "We're Going To Take It"; Marc Fogel Lands In U.S. After Trump Secures Release. Aired 9-10p ET
## 189                                                                                                                                                                                                                                                                                                                                                                                                                   Elon Musk Touts Government Firings by Wielding Chainsaw; Kash Patel Critics Warn of Purge as He Takes Over FBI; Ex-NFL Punter Arrested After Anti-MAGA Protest; Joe Rogan Dethroned as Fans Sound Off; Musk Eyes Major Change to "X" Platform; U.S. -Canada Tensions Spill Onto the Ice for Final Grudge Match. Aired 11p-12a ET
## 190                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Says Musk Head Of DOGE, White House Says He's Not; Trump Dodges On Musk Decisions, Firings And Resignations; Steve Bannon Says, Elon Musk Is Parasitic Illegal Immigrant; MAGA Universe Says SNL Skit Reviled Them; Michigan Judge Sentences Shoplifters To Wash Cars For Free In A Walmart Parking Lot. Aired 10-11p ET
## 191                                                                                                                                                                                                                                                                                          Interview With Former U.K. Ambassador To The U.N. Sir John Sawers; Interview With Former U.S. State Department Official Josh Paul; Interview With The Head Of The Palestinian Mission To The U.K. Husam Zomlot; Interview With "Hard Truths" Director Mike Leigh; Interview With "Hard Truths" Actress Marianne Jean-Baptiste; How Rev. Jerry Falwell Targeted Abortion Rights; Dozens Of Families Still Waiting For Hostages To Return. Aired 11a-12p ET
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Hits Top Trading Partners Canada, Mexico , China With Tariffs; Secretary Duffy: We Are Going To "Surge" Air Traffic Controllers; NBA Trade Stunner: Doncic To Lakers And Davis To Mavericks. Aired 7:30-8a ET
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Rep. Ryan Zinke (R- MT ) Speaks With CNN Following Protests Outside Office; CEO Warns Aluminum Tariffs Could Cost 100,000 American Jobs; Sen. Tim Kaine (D- VA ) On Senate Vote To End President Trump's National Energy Emergency. Aired 7:30-8a ET
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interview With Rep. Laura Gillen (D- NY ); Interview With Rep. Riley Moore (R- WV ); Interview With Sen. Amy Klobuchar (D- MN ); Interview With White House Border Czar Tom Homan. Aired 9-10a ET
## 195                                                                                                                                                                                                                                                                                                                                                                                 Treasury Sued Over Giving Musk's DOGE Access to Payment Data; Interview with Sen. Tammy Duckworth (D- IL ); Deconstruction Project; Senior FBI Leaders Ordered To Retire, Resign Or Be Fired; DOJ Orders FBI To Hand Over Names Of All Officials Who Worked On Jan. 6 Riot Cases By Tomorrow; Recovery Begins Of Plane Wreckage From Potomac River . Aired 8-9p ET
## 196 President Trump's New Tariffs Go Into Effect Tuesday; Canada Announces "Far-Reaching" Retaliatory Tariffs On American Goods; China Says It Will File Complaint With WTO Over Tariffs; Mexican President Announces Retaliatory Tariffs On U.S. ; 7 Dead, Including One On The Ground, After Medevac Jet Crashes In Philadelphia; NTSB Scrambles To Retain Employees After Trump's Resignation Offer; NTSB Data: Pilots Tried To Pull Passenger Jet's Nose Up Within Seconds Of Deadly D.C. Helicopter Collision. Trump Allies Push to Get RFK Jr. and Gabbard Confirmed; Health Information Related to Gender and Equity Removed from CDC Website; Grammy Awards to Benefit Wildfire Victims; Punxsutawney Phil Makes His Prediction. Aired 7-8a ET
## 197                                                                                                                                                                                                                                                                                                                                                                               Millions of Federal Workers Receive Email from Trump Administration with Option to Resign from Their Current Positions; Robert F. Kennedy Jr. to Testify at Senate Confirmation Hearing for His Health and Human Services Secretary Nomination; Advocacy Group Denounces ICE Raid at Philly Car Wash. Interview with Rep. Nydia Velazquez (D- NY ). Aired 8-8:30a ET
## 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CIA Sends Unclassified Email to White House Listing Names of New Hires; DOGE to Keep Limited Access to Treasury Payments System; Chiefs Chasing First-Ever Super Bowl Three-Peat. Aired 7-7:30a ET
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Passenger Jet's Black Boxes Recovered After Midair Tragedy; Trump Tariffs On Canada, Mexico , China Begin Tomorrow; U.S. Stocks Fall After Trump Tariff Announcement. Aired 2-2:30p ET
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Flight Data Appears To Show Helicopter Above Altitude, Off Course; U.S. Air Traffic Control System Under Scrutiny; More Than A Dozen January 6 Prosecutors Fired; More Victims Of Deadly Midair Collision Being Identified. Aired 6-7p ET
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crowds Line Streets To Mourn Bibas Family Who Were Killed In Gaza; Fired Cybersecurity Official: Veterans' Sensitive Data At Risk; Supreme Court Hears Case On Reverse Discrimination; Gabbard: 100-Plus Intel Officers To Be Fired Over Explicit Work Chats. Aired 2:30-3p ET
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Multiple Meetings Over Russia and Ukraine Peace; Anne Applebaum is Interviewed about Government Cuts and Firings; Best Moments from "Saturday Night Live.". Aired 9:30-10a ET
## 203                                                                                                                                                                                                                                                                                    Interview With Former U.S. Ambassador To The Czech Republic Norm Eisen; Interview With Princeton Professor And Autocracy Expert Kim Lane Scheppele; Interview With Forward Thinking Co-Founder And Director Oliver McTernan; North Korean Troops Embrace Near-Suicidal Tactics In Battle; Officials Give Update On Pennsylvania Medevac Jet Crash; 80 Years Since Liberation Of Auschwitz; Broad Play Hilariously Tackles Age Of Disagreement. Aired 11a-12p ET
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Right-Wing Commentator Named FBI Deputy Director; Pope In Critical Condition; Health Agencies Reel From Thousands Of Job Cuts While Critical Research Grants Remain On Hold. Aired 7:30-8a ET
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                            HHS Secretary RFK Jr. Calls Measles Outbreak "Not Usual"; Protesters Flood Republican Town Halls Over Job Cuts; Actor Gene Hackman Found Dead Alongside Wife In New Mexico Home; Supreme court Signals It Will Make It Easier For Americans To File "Reverse" Discrimination Lawsuits. Aired 6:30-7a ET
## 206                                                                                                                                                                                                                                                                                                                                                                           Judge Halts Trump's Plan To Put USAID Workers On Leave; Sen. Chris Coons, (D- DE ), Is Interviewed About Trump's Plan To Put USAID Workers On Leave, Elon Musk, National Debt; Trump Says He's Directed Musk To Review "Just About Everything"; Oscar Turmoil: "Emelia Perez" Star Sparks Backlash. History At Stake: Chiefs Chase Unprecedented Three-Peat. Aired 9-10a
## 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Sen. Warren Grills RFK Jr. On Money From Vaccine Lawsuits: "Kids Might Die, But Robert Kennedy Can Keep Cashing In"; WH Backpedals On Chaotic Funding Freeze Hours After Announcing It; FAA: Passenger Jet Collided In Midair With Black Hawk Helicopter. Aired 9- 10p ET
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Recovery Crews Search Icy Waters For 67, All Presumed Dead; Inside Flight Simulator; Figure Skating Victims. Aired 7-8p ET
## 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NTSB: "Whole of Government Effort" to Investigate Midair Crash; NTSB: Flight Data Recorders Not Yet Recovered; NTSB: "Very Quick, Rapid Impact," No Passenger Slides Deployed. Aired 3-3:30p ET
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   New Video Show Moment Plane & Army Helicopter Collided; Multiple Investigations Into What Caused Collision That Killed 67; Figure Skating Community Mourns Victims Killed in D.C. Tragedy; FireAid Concerts Raise Millions For Fire Victims. Aired 9:30-10 am ET
##     published_date publication_location   publication_4 publication_type_5
## 1       2025-01-22         U.S. Federal CNN Transcripts               News
## 2       2025-01-22         U.S. Federal CNN Transcripts               News
## 3       2025-01-23         U.S. Federal CNN Transcripts               News
## 4       2025-01-22         U.S. Federal CNN Transcripts               News
## 5       2025-01-23         U.S. Federal CNN Transcripts               News
## 6       2025-01-22         U.S. Federal CNN Transcripts               News
## 7       2025-02-22         U.S. Federal CNN Transcripts               News
## 8       2025-01-31         U.S. Federal CNN Transcripts               News
## 9       2025-01-23         U.S. Federal CNN Transcripts               News
## 10      2025-02-01         U.S. Federal CNN Transcripts               News
## 11      2025-01-22         U.S. Federal CNN Transcripts               News
## 12      2025-01-22         U.S. Federal CNN Transcripts               News
## 13      2025-02-21         U.S. Federal CNN Transcripts               News
## 14      2025-02-03         U.S. Federal CNN Transcripts               News
## 15      2025-01-23         U.S. Federal CNN Transcripts               News
## 16      2025-01-23         U.S. Federal CNN Transcripts               News
## 17      2025-02-01         U.S. Federal CNN Transcripts               News
## 18      2025-01-31         U.S. Federal CNN Transcripts               News
## 19      2025-01-20         U.S. Federal CNN Transcripts               News
## 20      2025-01-30         U.S. Federal CNN Transcripts               News
## 21      2025-02-27         U.S. Federal CNN Transcripts               News
## 22      2025-01-22         U.S. Federal CNN Transcripts               News
## 23      2025-01-30         U.S. Federal CNN Transcripts               News
## 24      2025-01-22         U.S. Federal CNN Transcripts               News
## 25      2025-01-30         U.S. Federal CNN Transcripts               News
## 26      2025-01-28         U.S. Federal CNN Transcripts               News
## 27      2025-01-25         U.S. Federal CNN Transcripts               News
## 28      2025-01-31         U.S. Federal CNN Transcripts               News
## 29      2025-01-30         U.S. Federal CNN Transcripts               News
## 30      2025-02-15         U.S. Federal CNN Transcripts               News
## 31      2025-01-25         U.S. Federal CNN Transcripts               News
## 32      2025-01-30         U.S. Federal CNN Transcripts               News
## 33      2025-01-23         U.S. Federal CNN Transcripts               News
## 34      2025-01-30         U.S. Federal CNN Transcripts               News
## 35      2025-01-30         U.S. Federal CNN Transcripts               News
## 36      2025-02-20         U.S. Federal CNN Transcripts               News
## 37      2025-02-12         U.S. Federal CNN Transcripts               News
## 38      2025-01-30         U.S. Federal CNN Transcripts               News
## 39      2025-02-01         U.S. Federal CNN Transcripts               News
## 40      2025-01-30         U.S. Federal CNN Transcripts               News
## 41      2025-02-05         U.S. Federal CNN Transcripts               News
## 42      2025-01-22         U.S. Federal CNN Transcripts               News
## 43      2025-01-31         U.S. Federal CNN Transcripts               News
## 44      2025-02-06         U.S. Federal CNN Transcripts               News
## 45      2025-01-24         U.S. Federal CNN Transcripts               News
## 46      2025-02-01         U.S. Federal CNN Transcripts               News
## 47      2025-02-02         U.S. Federal CNN Transcripts               News
## 48      2025-02-04         U.S. Federal CNN Transcripts               News
## 49      2025-01-31         U.S. Federal CNN Transcripts               News
## 50      2025-01-27         U.S. Federal CNN Transcripts               News
## 51      2025-01-30         U.S. Federal CNN Transcripts               News
## 52      2025-02-20         U.S. Federal CNN Transcripts               News
## 53      2025-02-08         U.S. Federal CNN Transcripts               News
## 54      2025-02-14         U.S. Federal CNN Transcripts               News
## 55      2025-02-06         U.S. Federal CNN Transcripts               News
## 56      2025-02-06         U.S. Federal CNN Transcripts               News
## 57      2025-01-22         U.S. Federal CNN Transcripts               News
## 58      2025-01-31         U.S. Federal CNN Transcripts               News
## 59      2025-01-22         U.S. Federal CNN Transcripts               News
## 60      2025-02-27         U.S. Federal CNN Transcripts               News
## 61      2025-02-05         U.S. Federal CNN Transcripts               News
## 62      2025-02-09         U.S. Federal CNN Transcripts               News
## 63      2025-01-31         U.S. Federal CNN Transcripts               News
## 64      2025-02-06         U.S. Federal CNN Transcripts               News
## 65      2025-02-20         U.S. Federal CNN Transcripts               News
## 66      2025-01-23         U.S. Federal CNN Transcripts               News
## 67      2025-02-20         U.S. Federal CNN Transcripts               News
## 68      2025-02-20         U.S. Federal CNN Transcripts               News
## 69      2025-01-21         U.S. Federal CNN Transcripts               News
## 70      2025-02-13         U.S. Federal CNN Transcripts               News
## 71      2025-02-07         U.S. Federal CNN Transcripts               News
## 72      2025-01-29         U.S. Federal CNN Transcripts               News
## 73      2025-01-31         U.S. Federal CNN Transcripts               News
## 74      2025-02-11         U.S. Federal CNN Transcripts               News
## 75      2025-01-22         U.S. Federal CNN Transcripts               News
## 76      2025-02-04         U.S. Federal CNN Transcripts               News
## 77      2025-01-23         U.S. Federal CNN Transcripts               News
## 78      2025-02-24         U.S. Federal CNN Transcripts               News
## 79      2025-01-30         U.S. Federal CNN Transcripts               News
## 80      2025-02-23         U.S. Federal CNN Transcripts               News
## 81      2025-01-28         U.S. Federal CNN Transcripts               News
## 82      2025-01-23         U.S. Federal CNN Transcripts               News
## 83      2025-02-22         U.S. Federal CNN Transcripts               News
## 84      2025-02-04         U.S. Federal CNN Transcripts               News
## 85      2025-02-20         U.S. Federal CNN Transcripts               News
## 86      2025-01-30         U.S. Federal CNN Transcripts               News
## 87      2025-02-04         U.S. Federal CNN Transcripts               News
## 88      2025-01-23         U.S. Federal CNN Transcripts               News
## 89      2025-01-27         U.S. Federal CNN Transcripts               News
## 90      2025-02-07         U.S. Federal CNN Transcripts               News
## 91      2025-01-27         U.S. Federal CNN Transcripts               News
## 92      2025-01-27         U.S. Federal CNN Transcripts               News
## 93      2025-01-28         U.S. Federal CNN Transcripts               News
## 94      2025-02-28         U.S. Federal CNN Transcripts               News
## 95      2025-01-20         U.S. Federal CNN Transcripts               News
## 96      2025-01-20         U.S. Federal CNN Transcripts               News
## 97      2025-02-21         U.S. Federal CNN Transcripts               News
## 98      2025-02-24         U.S. Federal CNN Transcripts               News
## 99      2025-01-28         U.S. Federal CNN Transcripts               News
## 100     2025-02-11         U.S. Federal CNN Transcripts               News
## 101     2025-02-05         U.S. Federal CNN Transcripts               News
## 102     2025-02-07         U.S. Federal CNN Transcripts               News
## 103     2025-01-28         U.S. Federal CNN Transcripts               News
## 104     2025-02-20         U.S. Federal CNN Transcripts               News
## 105     2025-01-24         U.S. Federal CNN Transcripts               News
## 106     2025-01-24         U.S. Federal CNN Transcripts               News
## 107     2025-01-24         U.S. Federal CNN Transcripts               News
## 108     2025-02-09         U.S. Federal CNN Transcripts               News
## 109     2025-01-24         U.S. Federal CNN Transcripts               News
## 110     2025-01-20         U.S. Federal CNN Transcripts               News
## 111     2025-02-21         U.S. Federal CNN Transcripts               News
## 112     2025-02-21         U.S. Federal CNN Transcripts               News
## 113     2025-02-03         U.S. Federal CNN Transcripts               News
## 114     2025-01-20         U.S. Federal CNN Transcripts               News
## 115     2025-01-21         U.S. Federal CNN Transcripts               News
## 116     2025-02-20         U.S. Federal CNN Transcripts               News
## 117     2025-01-20         U.S. Federal CNN Transcripts               News
## 118     2025-02-19         U.S. Federal CNN Transcripts               News
## 119     2025-02-20         U.S. Federal CNN Transcripts               News
## 120     2025-01-28         U.S. Federal CNN Transcripts               News
## 121     2025-01-20         U.S. Federal CNN Transcripts               News
## 122     2025-02-12         U.S. Federal CNN Transcripts               News
## 123     2025-02-21         U.S. Federal CNN Transcripts               News
## 124     2025-01-21         U.S. Federal CNN Transcripts               News
## 125     2025-01-23         U.S. Federal CNN Transcripts               News
## 126     2025-02-13         U.S. Federal CNN Transcripts               News
## 127     2025-01-20         U.S. Federal CNN Transcripts               News
## 128     2025-01-27         U.S. Federal CNN Transcripts               News
## 129     2025-02-03         U.S. Federal CNN Transcripts               News
## 130     2025-01-24         U.S. Federal CNN Transcripts               News
## 131     2025-02-23         U.S. Federal CNN Transcripts               News
## 132     2025-02-20         U.S. Federal CNN Transcripts               News
## 133     2025-01-22         U.S. Federal CNN Transcripts               News
## 134     2025-02-17         U.S. Federal CNN Transcripts               News
## 135     2025-01-20         U.S. Federal CNN Transcripts               News
## 136     2025-01-31         U.S. Federal CNN Transcripts               News
## 137     2025-02-07         U.S. Federal CNN Transcripts               News
## 138     2025-02-20         U.S. Federal CNN Transcripts               News
## 139     2025-02-03         U.S. Federal CNN Transcripts               News
## 140     2025-02-14         U.S. Federal CNN Transcripts               News
## 141     2025-02-24         U.S. Federal CNN Transcripts               News
## 142     2025-02-25         U.S. Federal CNN Transcripts               News
## 143     2025-02-03         U.S. Federal CNN Transcripts               News
## 144     2025-01-27         U.S. Federal CNN Transcripts               News
## 145     2025-02-04         U.S. Federal CNN Transcripts               News
## 146     2025-01-28         U.S. Federal CNN Transcripts               News
## 147     2025-02-26         U.S. Federal CNN Transcripts               News
## 148     2025-02-07         U.S. Federal CNN Transcripts               News
## 149     2025-02-21         U.S. Federal CNN Transcripts               News
## 150     2025-02-28         U.S. Federal CNN Transcripts               News
## 151     2025-01-27         U.S. Federal CNN Transcripts               News
## 152     2025-02-04         U.S. Federal CNN Transcripts               News
## 153     2025-02-24         U.S. Federal CNN Transcripts               News
## 154     2025-01-30         U.S. Federal CNN Transcripts               News
## 155     2025-02-26         U.S. Federal CNN Transcripts               News
## 156     2025-02-27         U.S. Federal CNN Transcripts               News
## 157     2025-02-19         U.S. Federal CNN Transcripts               News
## 158     2025-02-10         U.S. Federal CNN Transcripts               News
## 159     2025-02-24         U.S. Federal CNN Transcripts               News
## 160     2025-02-26         U.S. Federal CNN Transcripts               News
## 161     2025-02-01         U.S. Federal CNN Transcripts               News
## 162     2025-02-05         U.S. Federal CNN Transcripts               News
## 163     2025-01-28         U.S. Federal CNN Transcripts               News
## 164     2025-02-02         U.S. Federal CNN Transcripts               News
## 165     2025-02-10         U.S. Federal CNN Transcripts               News
## 166     2025-02-26         U.S. Federal CNN Transcripts               News
## 167     2025-01-22         U.S. Federal CNN Transcripts               News
## 168     2025-02-14         U.S. Federal CNN Transcripts               News
## 169     2025-01-25         U.S. Federal CNN Transcripts               News
## 170     2025-01-31         U.S. Federal CNN Transcripts               News
## 171     2025-01-28         U.S. Federal CNN Transcripts               News
## 172     2025-01-29         U.S. Federal CNN Transcripts               News
## 173     2025-01-31         U.S. Federal CNN Transcripts               News
## 174     2025-02-13         U.S. Federal CNN Transcripts               News
## 175     2025-01-29         U.S. Federal CNN Transcripts               News
## 176     2025-02-12         U.S. Federal CNN Transcripts               News
## 177     2025-02-06         U.S. Federal CNN Transcripts               News
## 178     2025-01-25         U.S. Federal CNN Transcripts               News
## 179     2025-02-24         U.S. Federal CNN Transcripts               News
## 180     2025-01-28         U.S. Federal CNN Transcripts               News
## 181     2025-01-29         U.S. Federal CNN Transcripts               News
## 182     2025-02-04         U.S. Federal CNN Transcripts               News
## 183     2025-02-07         U.S. Federal CNN Transcripts               News
## 184     2025-01-28         U.S. Federal CNN Transcripts               News
## 185     2025-02-26         U.S. Federal CNN Transcripts               News
## 186     2025-02-25         U.S. Federal CNN Transcripts               News
## 187     2025-01-29         U.S. Federal CNN Transcripts               News
## 188     2025-02-11         U.S. Federal CNN Transcripts               News
## 189     2025-02-20         U.S. Federal CNN Transcripts               News
## 190     2025-02-18         U.S. Federal CNN Transcripts               News
## 191     2025-01-25         U.S. Federal CNN Transcripts               News
## 192     2025-02-03         U.S. Federal CNN Transcripts               News
## 193     2025-02-26         U.S. Federal CNN Transcripts               News
## 194     2025-02-16         U.S. Federal CNN Transcripts               News
## 195     2025-02-03         U.S. Federal CNN Transcripts               News
## 196     2025-02-02         U.S. Federal CNN Transcripts               News
## 197     2025-01-29         U.S. Federal CNN Transcripts               News
## 198     2025-02-06         U.S. Federal CNN Transcripts               News
## 199     2025-01-31         U.S. Federal CNN Transcripts               News
## 200     2025-01-31         U.S. Federal CNN Transcripts               News
## 201     2025-02-26         U.S. Federal CNN Transcripts               News
## 202     2025-02-17         U.S. Federal CNN Transcripts               News
## 203     2025-02-01         U.S. Federal CNN Transcripts               News
## 204     2025-02-24         U.S. Federal CNN Transcripts               News
## 205     2025-02-27         U.S. Federal CNN Transcripts               News
## 206     2025-02-08         U.S. Federal CNN Transcripts               News
## 207     2025-01-29         U.S. Federal CNN Transcripts               News
## 208     2025-01-30         U.S. Federal CNN Transcripts               News
## 209     2025-01-30         U.S. Federal CNN Transcripts               News
## 210     2025-01-31         U.S. Federal CNN Transcripts               News
##     length             section word_count countries
## 1     3822       NEWS;Domestic       3822      <NA>
## 2     4328  NEWS;International       4328      <NA>
## 3     3827       NEWS;Domestic       3827      <NA>
## 4     4204  NEWS;International       4204      <NA>
## 5     3734       NEWS;Domestic       3734      <NA>
## 6     3879       NEWS;Domestic       3879      <NA>
## 7     5644       NEWS;Domestic       5644      <NA>
## 8     4195  NEWS;International       4195      <NA>
## 9     3762       NEWS;Domestic       3762      <NA>
## 10    6274       NEWS;Domestic       6274      <NA>
## 11    6934       NEWS;Domestic       6934      <NA>
## 12    7489  NEWS;International       7489      <NA>
## 13    7784       NEWS;Domestic       7784      <NA>
## 14    7371  NEWS;International       7371      <NA>
## 15    4480       NEWS;Domestic       4480      <NA>
## 16    3709       NEWS;Domestic       3709      <NA>
## 17    5818       NEWS;Domestic       5818      <NA>
## 18    3366       NEWS;Domestic       3366      <NA>
## 19    3451  NEWS;International       3451      <NA>
## 20    4536       NEWS;Domestic       4536      <NA>
## 21    2975       NEWS;Domestic       2975      <NA>
## 22    7193       NEWS;Domestic       7193      <NA>
## 23    7019      NEWS, DOMESTIC       7019      <NA>
## 24    2993       NEWS;Domestic       2993      <NA>
## 25    4433  NEWS;International       4433      <NA>
## 26    3058  NEWS;International       3058      <NA>
## 27    6142       NEWS;Domestic       6142      <NA>
## 28    6885       NEWS;Domestic       6885      <NA>
## 29    7547       NEWS;Domestic       7547      <NA>
## 30    5647       NEWS;Domestic       5647      <NA>
## 31    6484  NEWS;International       6484      <NA>
## 32    6913       NEWS;Domestic       6913      <NA>
## 33    3842       NEWS;Domestic       3842      <NA>
## 34    2277       NEWS;Domestic       2277      <NA>
## 35    6359       NEWS;Domestic       6359      <NA>
## 36    2785       NEWS;Domestic       2785      <NA>
## 37    8069       NEWS;Domestic       8069      <NA>
## 38    6712       NEWS;Domestic       6712      <NA>
## 39    6616       NEWS;Domestic       6616      <NA>
## 40    3789  NEWS;International       3789      <NA>
## 41    8552       NEWS;Domestic       8552      <NA>
## 42    7879       NEWS;Domestic       7879      <NA>
## 43    8541       NEWS;Domestic       8541      <NA>
## 44    7833  NEWS;International       7833      <NA>
## 45    3451  NEWS;International       3451      <NA>
## 46    6559       NEWS;Domestic       6559      <NA>
## 47    6921  NEWS;International       6921      <NA>
## 48    2957  NEWS;International       2957      <NA>
## 49    2282       NEWS;Domestic       2282      <NA>
## 50    4200  NEWS;International       4200      <NA>
## 51    3508       NEWS;Domestic       3508      <NA>
## 52    7983       NEWS;Domestic       7983      <NA>
## 53    5758       NEWS;Domestic       5758      <NA>
## 54    3542  NEWS;International       3542      <NA>
## 55    3386  NEWS;International       3386      <NA>
## 56    3579       NEWS;Domestic       3579      <NA>
## 57    3714  NEWS;International       3714      <NA>
## 58    7756  NEWS;International       7756      <NA>
## 59    3826  NEWS;International       3826      <NA>
## 60    4586       NEWS;Domestic       4586      <NA>
## 61    7006  NEWS;International       7006      <NA>
## 62    7407  NEWS;International       7407      <NA>
## 63    3856  NEWS;International       3856      <NA>
## 64    4300  NEWS;International       4300      <NA>
## 65    3473       NEWS;Domestic       3473      <NA>
## 66    2885  NEWS;International       2885      <NA>
## 67    3197  NEWS;International       3197      <NA>
## 68   10109       NEWS;Domestic      10109      <NA>
## 69    7801       NEWS;Domestic       7801      <NA>
## 70    3690  NEWS;International       3690      <NA>
## 71    3743       NEWS;Domestic       3743      <NA>
## 72    7122  NEWS;International       7122      <NA>
## 73    3701       NEWS;Domestic       3701      <NA>
## 74    6774       NEWS;Domestic       6774      <NA>
## 75    2898       NEWS;Domestic       2898      <NA>
## 76    4486  NEWS;International       4486      <NA>
## 77    8200       NEWS;Domestic       8200      <NA>
## 78    7742  NEWS;International       7742      <NA>
## 79    6848  NEWS;International       6848      <NA>
## 80    6751  NEWS;International       6751      <NA>
## 81    4224       NEWS;Domestic       4224      <NA>
## 82    4056       NEWS;Domestic       4056      <NA>
## 83    6406  NEWS;International       6406      <NA>
## 84    3633  NEWS;International       3633      <NA>
## 85    6796       NEWS;Domestic       6796      <NA>
## 86    3036                NEWS       3036      <NA>
## 87    3268  NEWS;International       3268      <NA>
## 88    7380  NEWS;International       7380      <NA>
## 89    3669  NEWS;International       3669      <NA>
## 90    7645       NEWS;Domestic       7645      <NA>
## 91    4048  NEWS;International       4048      <NA>
## 92    3824  NEWS;International       3824      <NA>
## 93    3694       NEWS;Domestic       3694      <NA>
## 94    3485       NEWS;Domestic       3485      <NA>
## 95    3233       NEWS;Domestic       3233      <NA>
## 96    6564  NEWS;International       6564      <NA>
## 97    3932       NEWS;Domestic       3932      <NA>
## 98    3528  NEWS;International       3528      <NA>
## 99    3846       NEWS;Domestic       3846      <NA>
## 100   3544  NEWS;International       3544      <NA>
## 101   7008       NEWS;Domestic       7008      <NA>
## 102   3682                NEWS       3682      <NA>
## 103   5138  NEWS;International       5138      <NA>
## 104   6867  NEWS;International       6867      <NA>
## 105   7058       NEWS;Domestic       7058      <NA>
## 106   3928  NEWS;International       3928      <NA>
## 107   4836  NEWS;International       4836      <NA>
## 108   7217       NEWS;Domestic       7217      <NA>
## 109   3833  NEWS;International       3833      <NA>
## 110   5676       NEWS;Domestic       5676      <NA>
## 111   7601       NEWS;Domestic       7601      <NA>
## 112   4091  NEWS;International       4091      <NA>
## 113   7811       NEWS;Domestic       7811      <NA>
## 114   5382  NEWS;International       5382      <NA>
## 115   2500                NEWS       2500      <NA>
## 116   7348  NEWS;International       7348      <NA>
## 117   4338  NEWS;International       4338      <NA>
## 118   4217  NEWS;International       4217      <NA>
## 119   4177  NEWS;International       4177      <NA>
## 120   7810  NEWS;International       7810      <NA>
## 121   6625  NEWS;International       6625      <NA>
## 122   8320  NEWS;International       8320      <NA>
## 123   2875  NEWS;International       2875      <NA>
## 124   3523       NEWS;Domestic       3523      <NA>
## 125   2778       NEWS;Domestic       2778      <NA>
## 126   3892       NEWS;Domestic       3892      <NA>
## 127   7196       NEWS;Domestic       7196      <NA>
## 128   3759  NEWS;International       3759      <NA>
## 129   4003       NEWS;Domestic       4003      <NA>
## 130   3567       NEWS;Domestic       3567      <NA>
## 131   5639  NEWS;International       5639      <NA>
## 132   2337  NEWS;International       2337      <NA>
## 133   7240  NEWS;International       7240      <NA>
## 134   4485  NEWS;International       4485      <NA>
## 135   9264  NEWS;International       9264      <NA>
## 136   4631       NEWS;Domestic       4631      <NA>
## 137   3597  NEWS;International       3597      <NA>
## 138   4403  NEWS;International       4403      <NA>
## 139   7717       NEWS;Domestic       7717      <NA>
## 140   4072       NEWS;Domestic       4072      <NA>
## 141   3343       NEWS;Domestic       3343      <NA>
## 142   3468       NEWS;Domestic       3468      <NA>
## 143   3873       NEWS;Domestic       3873      <NA>
## 144   7118  NEWS;International       7118      <NA>
## 145   4151       NEWS;Domestic       4151      <NA>
## 146   3773  NEWS;International       3773      <NA>
## 147   7662       NEWS;Domestic       7662      <NA>
## 148   6872       NEWS;Domestic       6872      <NA>
## 149   8077      NEWS, DOMESTIC       8077      <NA>
## 150   7419       NEWS;Domestic       7419      <NA>
## 151   6889       NEWS;Domestic       6889      <NA>
## 152   7177       NEWS;Domestic       7177      <NA>
## 153   7933 NEWS, INTERNATIONAL       7933      <NA>
## 154   6501       NEWS;Domestic       6501      <NA>
## 155   6936  NEWS;International       6936      <NA>
## 156   2615       NEWS;Domestic       2615      <NA>
## 157   7342  NEWS;International       7342      <NA>
## 158   7551       NEWS;Domestic       7551      <NA>
## 159   3346  NEWS;International       3346      <NA>
## 160   3797  NEWS;International       3797      <NA>
## 161   5901       NEWS;Domestic       5901      <NA>
## 162   7912       NEWS;Domestic       7912      <NA>
## 163   8744  NEWS;International       8744      <NA>
## 164   6735  NEWS;International       6735      <NA>
## 165   7300  NEWS;International       7300      <NA>
## 166   4296  NEWS;International       4296      <NA>
## 167   2673  NEWS;International       2673      <NA>
## 168   7630       NEWS;Domestic       7630      <NA>
## 169   6912       NEWS;Domestic       6912      <NA>
## 170   3676       NEWS;Domestic       3676      <NA>
## 171   6050       NEWS;National       6050      <NA>
## 172   7389       NEWS;Domestic       7389      <NA>
## 173   2614       NEWS;Domestic       2614      <NA>
## 174   7999       NEWS;Domestic       7999      <NA>
## 175   4530  NEWS;International       4530      <NA>
## 176   6902       NEWS;Domestic       6902      <NA>
## 177   3990       NEWS;Domestic       3990      <NA>
## 178   6335       NEWS;Domestic       6335      <NA>
## 179   3111  NEWS;International       3111      <NA>
## 180   7796       NEWS;Domestic       7796      <NA>
## 181   7651  NEWS;International       7651      <NA>
## 182   8317       NEWS;Domestic       8317      <NA>
## 183   6478       NEWS;Domestic       6478      <NA>
## 184   4565       NEWS;Domestic       4565      <NA>
## 185   7938       NEWS;Domestic       7938      <NA>
## 186   7754       NEWS;Domestic       7754      <NA>
## 187   7844      NEWS, DOMESTIC       7844      <NA>
## 188   8358       NEWS;Domestic       8358      <NA>
## 189   7785       NEWS;Domestic       7785      <NA>
## 190   8274       NEWS;Domestic       8274      <NA>
## 191   6206  NEWS;International       6206      <NA>
## 192   4354       NEWS;Domestic       4354      <NA>
## 193   4489  NEWS;International       4489      <NA>
## 194   6973  NEWS;International       6973      <NA>
## 195   8088      NEWS, DOMESTIC       8088      <NA>
## 196   6433                NEWS       6433      <NA>
## 197   4474       NEWS;Domestic       4474      <NA>
## 198   2891       NEWS;Domestic       2891      <NA>
## 199   3094  NEWS;International       3094      <NA>
## 200   6375       NEWS;Domestic       6375      <NA>
## 201   2529  NEWS;International       2529      <NA>
## 202   2849  NEWS;International       2849      <NA>
## 203   7179       NEWS;Domestic       7179      <NA>
## 204   4170       NEWS;Domestic       4170      <NA>
## 205   4189  NEWS;International       4189      <NA>
## 206   6142       NEWS;Domestic       6142      <NA>
## 207   9110       NEWS;Domestic       9110      <NA>
## 208   7590       NEWS;Domestic       7590      <NA>
## 209   4174  NEWS;International       4174      <NA>
## 210   2901       NEWS;Domestic       2901      <NA>
##                                                                                                                                                                                                           byline
## 1                                                                                                                                                 Dana Bash, Alayna Treene, David Chalian, John King, Rene Marsh
## 2                                                                                                                                                                                      Boris Sanchez, Erica Hill
## 3                                                                                                                                                                                                     Kasie Hunt
## 4                                                                                                                                     Katelyn Polantz, Priscilla Alvarez, Jeff Zeleny, Erica Hill, Boris Sanchez
## 5                                                                                                                                                                               Kasie Hunt, Rene Marsh, Coy Wire
## 6                                                                                                                        Sara Sidner, John Berman, Alayna Treene, Lauren Fox, Alyssa Farah Griffin, Kate Bolduan
## 7                                                                                                                                                                                               Victor Blackwell
## 8                                                                                                                                                         Jeff Zeleny, Rene Marsh, Boris Sanchez, Brianna Keilar
## 9                                                                                                                                           Sara Sidner, John Berman, Kate Bolduan, Alayna Treene, Josh Campbell
## 10                                                                                                                                                                                            Michael Smerconish
## 11                                                                           Jake Tapper, Veronica Miracle, Josh Campbell, Chad Myers, Kaitlan Collins, Rene Marsh; Phil Mattingly, Richard Quest, Josh Campbell
## 12                                                                                                                       Erin Burnett, Veronica Miracle, Natasha Chen, Manu Raju, David Urban, Frederik Pleitgen
## 13                                                                                                                                                                                                  Abby Phillip
## 14                                                                                                                                Erin Burnett, Jeff Zeleny, David Axelrod, Manu Raju, Tom Foreman, Pete Muntean
## 15                                                                                         John Berman, Kate Bolduan, Sara Sidner, Vanessa Yurkevich, David Axelrod, Allison Chinchar, Clare Duffy, David Culver
## 16                                                                                          John Berman, Kate Bolduan, Sara Sidner, David Culver, Alayna Treene, David Chalian, Priscilla Alvarez, Josh Campbell
## 17                                                                                                                                                                                              Victor Blackwell
## 18                                                                                                                           Kate Bolduan, John Berman, Sara Sidner, Rene Marsh, Natasha Bertrand, Alayna Treene
## 19                                                                                                                                                                                                    Kasie Hunt
## 20                                                                                                              Pete Muntean, Pamela Brown, Dana Bash, Kaitlan Collins, Jeff Zeleny, David Chalian, Mary Schiavo
## 21                                                                                                                                                         Kate Bolduan, Sara Sidner, Arlette Saenz, Clare Duffy
## 22                                                                               Wolf Blitzer, Jeff Zeleny, Rene Marsh, Laura Coates, Veronica Miracle, Priscilla Alvarez, Alex Thompson, Brian Todd, Chad Myers
## 23                                                                                                            Anderson Cooper, Van Jones, Randi Kaye, Kayla Tausche, Kaitlan Collins, Pete Muntean, Mary Schiavo
## 24                                                                                                      Sara Sidner, Kate Bolduan, John Berman, Alayna Treene, Evan Perez, Ed Lavandera, Elisa Raffa, Max Foster
## 25                                                                                                                                    Pete Muntean, Natasha Bertrand, Jeff Zeleny, Boris Sanchez, Brianna Keilar
## 26                                                                                                                 Brianna Keilar, Arlette Saenz, Zachary Cohen, Pete Muntean, Sara Fischer, Nathaniel Meyersohn
## 27                                                                                                                                                                            Victor Blackwell, Bianna Golodryga
## 28                                                                                                                                                 Abby Phillip, Miles O'Brien, Danny Freeman, Catherine Rampell
## 29                                                                                                                                                    Kaitlan Collins, Pete Muntean, David Sanger, Danny Freeman
## 30                                                                                                                                                                                              Victor Blackwell
## 31                                                 Amara Walker, Victor Blackwell, Nada Bashir, Bianna Golodryga, Allison Chinchar, Kim Brunhuber, Jeremy Diamond; Manu Raju; Priscilla Alvarez, Cedric Leighton
## 32                                                                                                             Abby Phillip, Anderson Cooper, Ana Navarro, Kara Swisher, Justin Green, Tom Foreman, Mary Schiavo
## 33                                                                                                               Kate Bolduan, Sara Sidner, John Berman, Priscilla Alvarez, Meg Tirrell, Hadas Gold, Harry Enten
## 34                                                                                                                                                                     Boris Sanchez, Brianna Keilar, Paula Reid
## 35                                                                                                                         Jake Tapper, Ed Lavandera, Ashley Allison, Danny Freeman, Brian Todd, Cedric Leighton
## 36                                                                                                                     Boris Sanchez, Brianna Keilar, Mark Preston, Nic Robertson, Jamal Simmons, Coleman Hughes
## 37                                                                                                                                       Abby Phillip; Scott Jennings: Brian Stelter; Ana Navarro; Jamal Simmons
## 38                                                                                                                                                 Laura Coates, Danny Freeman, Miles O'Brien, Christine Brennan
## 39                                                                                                                                                                                                  Abby Phillip
## 40                                                                                                                        Brianna Keilar, Gabe Cohen, Jeff Zeleny, Pete Muntean, Boris Sanchez, Natasha Bertrand
## 41                                                                                                                             Abby Phillip, Alyssa Farah Griffin, Scott Jennings, Ashley Allison, Cari Champion
## 42                                                                                                                         Abby Phillip, John Miller, Ashley Allison, Geoff Duncan, Elie Honig, Veronica Miracle
## 43                                                                                                                                                       Jake Tapper, Pete Muntean, Kaitlan Collins, Peter Goelz
## 44                                                                                                                   Erin Burnett, Jeff Zeleny, Jamal Simmons, Kara Swisher, Kyung Lah, Harry Enten, Will Ripley
## 45                                                                                                                                                          John Berman, Kate Bolduan, Sara Sidner, David Culver
## 46                                                                                                                                                     Laura Coates, Jason Carroll, Mary Schiavo, Scott Jennings
## 47                                                                                                                                                                        Brad Todd, Bakari Sellers, Jake Tapper
## 48                                                                                                                                           Brianna Keilar, Boris Sanchez, Rene Marsh, Jeff Zeleny, Tom Foreman
## 49                                                                                                                                    Boris Sanchez, Brianna Keilar, Eva McKend, Lauren Fox, Nathaniel Meyersohn
## 50                                                                                                                       John Berman, Kate Bolduan, Alayna Treene, Natasha Bertrand, Jeremy Diamond, Meg Tirrell
## 51                                                                                                                                                       Boris Sanchez, Brianna Keilar, Pete Muntean, Eva McKend
## 52                                                                                                                                                                                                  Abby Phillip
## 53                                                                                                                                                                                              Victor Blackwell
## 54                                                                                                                                                           Jim Sciutto, Ron Brownstein, Coy Wire, Andy Scholes
## 55                                                                                                                                                                           Kasie Hunt, Joey Jackson, Nick Watt
## 56                                                                                                                                                                     Dana Bash, Rene Marsh, Laura Barron-Lopez
## 57                                                                                                           John Berman, Kate Bolduan, Sara Sidner, Alayna Treene, Julia Vargas Jones, Ed Lavandera, Evan Perez
## 58                                                                                                                            Jake Tapper, Danny Freeman, Mary Schiavo, Jeff Zeleny, Adam Kinzinger, Daniel Dale
## 59                                                                                                              Boris Sanchez, Erica Hill, Jeff Zeleny, Evan Perez, Elliot Williams, Richard Quest, David Culver
## 60                                                                                                                              Kate Bolduan, Sara Sidner, Kevin Liptak, Eva McKend, Bakari Sellers, Meg Tirrell
## 61                                                                                                                               Jake Tapper, Kayla Tausche, Evan Perez, Clarissa Ward, Rene Marsh, Sanjay Gupta
## 62                                                                                                                                            Scott Jennings, Shermichael Singleton, Kate Bedingfield, Dana Bash
## 63                                                                                                                                                                     Kasie Hunt, Michael Smerconish, Brad Todd
## 64                                                                                                                                         Brianna Keilar, Boris Sanchez, Jeff Zeleny, Rene Marsh, Zachary Cohen
## 65                                                                                                                                                              Dana Bash, David Chalian, Jeff Zeleny, Manu Raju
## 66                                                                                                                                                                                                    Kasie Hunt
## 67                                                                                                                             Brianna Keilar, Boris Sanchez, Victor Blackwell, Oren Liebermann, James Stavridis
## 68                                                                                               Jake Tapper, Kaitlan Collins, Rene Marsh, Jim Schultz, Ed Lavandera, Sanjay Gupta, Oren Liebermann, Cornel West
## 69                                                                                                                                                                 Kaitlan Collins, Anderson Cooper, David Urban
## 70                                                                                                                                             Rene Marsh, Jeff Zeleny, Matt Egan, Boris Sanchez, Brianna Keilar
## 71                                                                                                                                                                         Dana Bash, Jeff Zeleny, David Chalian
## 72                                                                                                                 Jake Tapper, Jeff Zeleny, Manu Raju, Sanjay Gupta, Phil Mattingly, Paula Reid, Jeremy Diamond
## 73                                                                                                                                                                       Kasie Hunt, Brad Todd, Allison Chinchar
## 74                                                                                                                                                    Laura Coates, Jeff Zeleny, Kimberly Dozier, Ashley Allison
## 75                                                                                                                                             Dana Bash, Brian Stelter, John King, David Chalian, Alayna Treene
## 76                                                                                                                                                                     Kasie Hunt, Zolan Kanno-Youngs, Brad Todd
## 77                                                                                                                                                                                    Abby Phillip, Kara Swisher
## 78                                                                                                                            Erin Burnett, Jeff Zeleny, Nick Paton Walsh, Jeff Zeleny, Tom Foreman, Harry Enten
## 79                                                                                                                                    Jake Tapper, Jeff Zeleny, Pete Muntean, Tom Foreman, Paula Reid, Manu Raju
## 80                                                                                                                                          Xochitl Hinojosa, Shermichael Singleton, Adam Kinzinger, Jake Tapper
## 81                                                                                                                                                            Dana Bash, Tom Foreman, Phil Mattingly, Evan Perez
## 82                                                                                                                                                                     Boris Sanchez, Erica Hill, Charles Ramsey
## 83                                                                                                          Victor Blackwell, Michael Moore, Vanessa Yurkevich, Nic Robertson, Oren Liebermann, Nick Paton Walsh
## 84                                                                                                                               Rene Marsh, Matt Egan, Andrew McCabe, Evan Perez, Boris Sanchez, Brianna Keilar
## 85                              Wolf Blitzer, Brian Todd, Josh Campbell, Nick Paton Walsh, Jeff Zeleny, Beth Sanner, David Chalian, Ashley Allison, Oren Liebermann, Gloria Pazmino, Elliot Williams, Norm Eisen
## 86                                                                                                                                                 Dana Bash, Rene Marsh, John Miller, Evan Perez, David Chalian
## 87                                                                                                                                                                      Kasie Hunt, Margaret Talev, Marc Stewart
## 88                                                                                                                  Erin Burnett, Whitney Wild, Alayna Treene, Lulu Garcia- Navarro, Harry Enten, Matthew Chance
## 89                                                                                                                     Brianna Keilar, Boris Sanchez, Jeff Zeleny, Oren Liebermann, Juan Carlos Lopez, Matt Egan
## 90                                                                                                                                                                                                  Abby Phillip
## 91                                                                                                                                                Boris Sanchez, Brianna Keilar, Alayna Treene, Natasha Bertrand
## 92                                                                                                    John Berman, Kate Bolduan, Natasha Bertrand, Priscilla Alvarez, Rosa Flores, Scott Jennings, Maria Cardona
## 93                                                                                                                 Kayla Tausche, Kate Bedingfield, Alex Thompson, Brad Todd, Edward-Isaac Dovere, Derek van Dam
## 94                                                                                                         Omar Jimenez, Sara Sidner, Pete Muntean; Alex Marquardt; Jill Dougherty, Kimberly Dozier, Meg Tirrell
## 95                                                                                                                                                                        Kasie Hunt, John Berman, Audie Cornish
## 96                                                                                                                                                     Erica Hill, Maria Cardona, Ron Brownstein, Paula Hancocks
## 97                                                                                                                                          Kasie Hunt, Brad Todd, Elliot Williams, Alex Thompson, Derek van Dam
## 98                                                                                                             John Berman, Kate Bolduan, Sara Sidner, Julia Vargas Jones, Harry Enten, Brian Stelter, Bill Weir
## 99                                                                                                                                                                       Kayla Tausche, Ron Brownstein, Coy Wire
## 100                                                                                                              John Berman, Kate Bolduan, Sara Sidner, Jeremy Diamond, Annie Grayer, Sanjay Gupta, John Miller
## 101                                          Jim Sciutto, Paula Reid, Laura Coates, Andrew McCabe, Carrie Cordero, Lulu Garcia-Navarro, Jennifer Hansler, Jeff Zeleny, Jeremy Diamond, Maria Cardona, Brian Todd
## 102                                                                                                                                                    Dana Bash, Zolan Kanno-Youngs, David Chalian, Jeff Zeleny
## 103                                                                                                                                                                Brian Stelter, Kaitlan Collins, Boris Sanchez
## 104                                                                                           Jake Tapper, Jeff Zeleny, David Chalian, Kasie Hunt, Nick Paton Walsh, Manu Raju, Vanessa Yurkevich, Nic Robertson
## 105                                                                                               Jake Tapper, Lauren Fox, Kaitlan Collins, Priscilla Alvarez, Veronica Miracle, Jacqueline Howard, David Culver
## 106                                                                                                                                            John Berman, Kate Bolduan, Sara Sidner, Harry Enten, Sanjay Gupta
## 107                                                                                                                             Kasie Hunt, Elliot Williams, Alex Thompson, Kate Bedingfield, Michael Smerconish
## 108                                                                                                                                              Manu Raju, Margaret Talev, Stephen Collinson, Christine Brennan
## 109                                                                                                                       John Berman, Kate Bolduan, Sara Sidner, Sanjay Gupta, Priscilla Alvarez, Alayna Treene
## 110                                                                         Boris Sanchez, Jake Tapper, Kate Andersen Brower, Anderson Cooper, David Axelrod, John King, David Urban, Van Jones, Kaitlan Collins
## 111                                                                                                                                                                      Laura Coates, Van Jones, Scott Jennings
## 112                                                                                                                                        Kasie Hunt, Tom Foreman, Alex Thompson, Brad Todd, Michael Smerconish
## 113                                                                                                                                                Laura Coates, Karen Finney, Laura Barron-Lopez, Brian Stelter
## 114 Jake Tapper, Abby Phillip, Dana Bash, Jamie Gangel, Alayna Treene, Anderson Cooper, Pamela Brown, Alyssa Farah Griffin, Kate Andersen Brower, David Axelrod, Van Jones, David Urban, Kaitlan Collins, MJ Lee
## 115                                                                                                                                                                   Dana Bash, Laura Barron-Lopez, Jeff Zeleny
## 116                                                                                Brianna Keilar, Jeff Zeleny, Nick Paton Walsh, Fareed Zakaria, Van Jones, Lulu Garcia-Navarro, Oren Liebermann, Meena Duerson
## 117                                                                                                                                  Jeff Zeleny, Erin Burnett, Kasie Hunt, Jake Tapper, Dana Bash, Abby Phillip
## 118                                                                                                                        John Berman, Kate Bolduan, Sara Sidner, Scott Jennings, Bakari Sellers, Joan Biskupic
## 119                                                                                                                  Oren Liebermann, Rene Marsh, Andrew McCabe, Nick Paton Walsh, Boris Sanchez, Brianna Keilar
## 120                                                                                                             Erin Burnett, Jeff Zeleny, Lulu Garcia-Navarro, Frederik Pleitgen, Harry Enten, Nick Paton Walsh
## 121                                                                                                                                                    Erica Hill, Ron Brownstein, Maria Cardona, Paula Hancocks
## 122                                                                                                                    Jake Tapper, Jeff Zeleny, Frederik Pleitgen, Beth Sanner, Wesley Clark, Vanessa Yurkevich
## 123                                                                                                                                                                                       Kasie Hunt, Max Foster
## 124                                                                                                             Sara Sidner, Kate Bolduan, Kevin Liptak, Priscilla Alvarez, Ed Lavandera, Elisa Raffa, Matt Egan
## 125                                                                                                            Sara Sidner, Kate Bolduan, John Berman, Josh Campbell, Alayna Treene, Katelyn Polantz, Ryan Young
## 126                                                                                                                                                   Boris Sanchez, Brianna Keilar, Alex Marquardt, Daniel Dale
## 127                                                                                                                         Omar Jimenez, Maria Cardona, Mark Preston, Jeff Zeleny, Paula Hancocks, David Sanger
## 128                                                                                                                                                          Kasie Hunt, Joey Jackson, Juliette Kayyem, Coy Wire
## 129                                                                                                                                                                            Dana Bash, Jeff Zeleny, Manu Raju
## 130                                                                                                                 Pamela Brown, Dana Bash, Jeff Zeleny, Jamie Gangel, Jackie Kucinich, Daniel Dale, Lauren Fox
## 131                                                                                                                                                                                               Fareed Zakaria
## 132                                                                                                                       Brianna Keilar, Manu Raju, Boris Sanchez, Jim Sciutto, Ed Lavandera, Jacqueline Howard
## 133                                                                                          Jake Tapper, Jeff Zeleny, Manu Raju, Josh Campbell, Priscilla Alvarez, Max Foster, Matthew Chance, Nick Paton Walsh
## 134                                                                                                                                                                Manu Raju, Jonathan Reiner, Stephen Collinson
## 135                                                                              Erin Burnett, Jeff Zeleny, Kaitlan Collins, Kristen Soltis Anderson, Shermichael Singleton, Paul Begala, Evan Perez, Elle Reeve
## 136                                                                                                                      Phil Mattingly, Pete Muntean, Peter Goelz, Audie Cornish, Priscilla Alvarez, Lauren Fox
## 137                                                                                                                       Priscilla Alvarez, Jeff Zeleny, Jim Sciutto, Rene Marsh, Boris Sanchez, Brianna Keilar
## 138                                                                                                           John Berman, Kate Bolduan, Sara Sidner, Jim Sciutto, Natasha Bertrand, Pete Muntean, Derek Van Dam
## 139                                                                                                                                                 Kaitlan Collins, Anderson Cooper, Kara Swisher, Abby Phillip
## 140                                                                                                                                                                     Dana Bash, Alex Marquardt, David Chalian
## 141                                                                                                                                          Kayla Tausche, Alex Thompson, Nick Paton Walsh, Barbie Latza Nadeau
## 142                                                                                                 Sara Sidner, John Berman, John King, Katelyn Polantz, Kate Bolduan, Kim Dozier, Jean Casarez, Jill Dougherty
## 143                                                                          Kate Bolduan, John Berman, Elizabeth Wagmeister, Kevin Liptak, Vanessa Yurkevich, Catherine Rampell, Jennifer Hansler, Mary Schiavo
## 144                                                                            Jake Tapper, Kaitlan Collins, Ed Lavandera, Clare Duffy, Marc Stewart, Oren Liebermann, Daniel Dale, Manu Raju, Christine Brennan
## 145                                                                                                John Berman, Kate Bolduan, Sara Sidner, Matt Egan, Jennifer Hansler, Renee Marsh, Gabe Cohen, Kimberly Dozier
## 146                                                                                                  Boris Sanchez, Brianna Keilar, Kaitlan Collins, Jeff Zeleny, Brian Stelter, Jennifer Rodgers, Arlette Saenz
## 147                                                                                                                                                                                 Abby Phillip, Scott Jennings
## 148                                                               Jake Tapper, Beth Sanner, Jeremy Diamond, Elizabeth Wagmeister, Larry Madowo, Andy Scholes, Kyung Lah, Paula Reid, Josh Campbell, Paula Newton
## 149                                                                                                                                       Anderson Cooper, Kaitlan Collins, Rahm Emanuel, Gabe Cohen, Elie Honig
## 150                                                                                                                                                   Laura Coates, David Sanger, Scott Jennings, Adam Kinzinger
## 151                                                                    Wolf Blitzer, Jeremy Diamond, Melissa Bell, Paula Reid, Laura Coates, Lulu Garcia-Navarro, Kristen Soltis Anderson, Manu Raju, Brian Todd
## 152                                                                                                                                                                  Laura Coates, David Sanger, Cedric Leighton
## 153                                                                                                                 Anderson Cooper, Kaitlan Collins, Matthew Chance, Andrew McCabe, Donie O'Sullivan, John King
## 154                                                                                    Jim Sciutto, Anderson Cooper, Pete Muntean, Mary Schiavo, Jeff Zeleny, Rene Marsh, Tom Foreman, Brian Todd, Kayla Tausche
## 155                                                                   Jake Tapper, Jeff Zeleny, Rene Marsh, Kasie Hunt, Jonah Goldberg, Meg Tirrell, Allison Morrow, Paula Reid, Elliot Williams, Jeremy Diamond
## 156                                                                                                                Sara Sidner, Kate Bolduan, Elizabeth Wagmeister, Nick Paton Walsh, Omar Jimenez, Andy Scholes
## 157                                                                                                                                                                         Laura Coates; Brad Todd; Harry Enten
## 158                                                                                                                            Kaitlan Collins, Anderson Cooper, Donie O'Sullivan, Karen Finney, Elliot Williams
## 159                                                                                                                                                                      Kayla Tausche, Melissa Bell, Kim Dozier
## 160                                                                                                                     Sara Sidner, Kate Bolduan, Natasha Bertrand, John Berman, Sanjay Gupta, Nick Paton Walsh
## 161                                                                                    Victor Blackwell, Amara Walker, Jason Carroll, Jeremy Diamond, Jomana Karadsheh, Paula Newton, Mark Stewart, Valeria Leon
## 162                                                                                                                                     Kaitlan Collins, Anderson Cooper, David Culver, Pete Muntean, Elie Honig
## 163                                                                                                                                      Jake Tapper, Jeff Zeleny, Phil Mattingly, Rene Marsh, Priscilla Alvarez
## 164                                                                                                                                                                                       Manu Raju, Jeff Zeleny
## 165                                                                                                                                           Laura Coates, Jennifer Rodgers, John Miller, Shermichael Singleton
## 166                                                                                                                                         Boris Sanchez, Jessica Dean, Jeff Zeleny, Rene Marsh, Jeremy Diamond
## 167                                                                                                                                John Berman, Kate Bolduan, Sara Sidner, Adam Kinzinger, Bill Weir, Jim Acosta
## 168                                                                                                                                                                        Sara Sidner, Elie Honig, Abby Phillip
## 169                                                                                                                                                 Jeremy Diamond, Michael Smerconish, Paul Begala, David Urban
## 170                                                                                                                                                                       Kasie Hunt, Pete Muntean, Andy Scholes
## 171                                                                                                                                                  Brianna Keilar, Boris Sanchez, Daniel Dale, Kaitlan Collins
## 172                                                                          Jake Tapper, Kaitlan Collins, Lauren Fox, Alayna Treene, Patrick Oppmann, David Culver, Natasha Bertrand, Tom Foreman, Pete Muntean
## 173                                                                                                                                    Boris Sanchez, Brianna Keilar, Jeremy Diamond, Jeff Zeleny, Jason Carroll
## 174                                                                                                                                                                  Abby Phillip; Jeffrey Toobin, Cari Champion
## 175                                                                                                                             Boris Sanchez, Jessica Dean, Priscilla Alvarez, Kaitlan Collins, ELLIOT Williams
## 176                                                                                                                                                                   Jake Tapper, Sanjay Gupta, Kaitlan Collins
## 177                                                                                                                             Kate Bolduan, Sara Sidner, John Berman, Alayna Treene, Maria Cardona, Gabe Cohen
## 178                                                                                              Victor Blackwell, Amara Walker, Jeremy Diamond, Nada Bashir, Allison Chinchar, Bianna Golodryga, Matthew Chance
## 179                                                                                                                                                  John Berman, Kate Bolduan, Sara Sidner, Lisa Respers France
## 180                                                                                                                                                                 Abby Phillip, Ashley Allison, Scott Jennings
## 181                                                                                                                                          Erin Burnett, Jeff Zeleny, Astead Herndon, Lauren Fox, David Culver
## 182                                                                                                                                                                 Abby Phillip, Bakari Sellers, Scott Jennings
## 183                                                                         Jim Sciutto, Jeff Zeleny, Andrew McCabe, Andy Scholes, Elliot Williams, David Chalian, Van Jones, Paula Reid, Rene Marsh, Brian Todd
## 184                                                                                                                             John Berman, Kate Bolduan, Alex Marquardt, Manu Raju, Coy Wire, Veronica Miracle
## 185                                                                                                                        Laura Coates, Zolan Kanno-Youngs, Shermichael Singleton, Harry Enten, Elliot Williams
## 186                                                                                                                                                                                                 Laura Coates
## 187                                                                                                                 Anderson Cooper, Kaitlan Collins, Mondaire Jones, Wesley Clark, Randi Kaye, Nick Paton Walsh
## 188                                                                             Kaitlan Collins, Anderson Cooper, Jason Carroll, Jeff Zeleny, Elliot Williams, Shermichael Singleton, Sara Fischer, Abby Phillip
## 189                                                                                                                                                    Laura Coates, Jamal Simmons, Garrett Graff, Brian Stelter
## 190                                                                                                                                                                  Abby Phillip, Cari Champion, Ashley Allison
## 191                                                                                                                                                                            Abby Phillip, Christiane Amanpour
## 192                                                                                        John Berman, Kate Bolduan, Matt Egan, Scott Jennings, Karen Finney, Danny Freeman, Amanda Davis, Elizabeth Wagmeister
## 193                                                                                                                             John Berman, Kate Bolduan, Sara Sidner, Katelyn Polantz, Matt Egan, Marc Stewart
## 194                                                                                                                                                            Kristen Soltis Anderson, Jamal Simmons, Dana Bash
## 195                                                                                                                Anderson Cooper, John Miller, Andrew McCabe, Kaitlan Collins, Van Jones, Alyssa Farah Griffin
## 196                                                                   Victor Blackwell, Amara Walker, Alayna Treene, Lisa Respers France, Allison Chinchar, Matt Egan, Paula Newton, Marc Stewart, Miles O'Brien
## 197                                                                                                      Kate Bolduan, John Berman, Alayna Treene, Sunlen Serfaty, Scott Jennings, Paul Begala, Pricilla Alvarez
## 198                                                                                                            Kate Bolduan, John Berman, Sara Sidner, Zachary Cohen, Andrew McCabe, Alayna Treene, Andy Scholes
## 199                                                                                                                                       Brianna Keilar, Boris Sanchez, Rene Marsh, Natasha Bertrand, Matt Egan
## 200                                                                                         Jim Sciutto, Danny Freeman, Miles O'Brien, Rene Marsh, Evan Perez, Elie Honig, Brian Todd, Jeff Zeleny, Ed Lavandera
## 201                                                                                                                                                    Boris Sanchez, Jessica Dean, Joan Biskupic, Zachary Cohen
## 202                                                                                                                   John Berman, Kate Bolduan, Sara Sidner, Harry Enten, James Stavridis, Elizabeth Wagmeister
## 203                                                                                                                                    Christiane Amanpour, Nick Paton Walsh, Fredricka Whitfield, Danny Freeman
## 204                                                                                                              John Berman, Sara Sidner, Kate Bolduan, Barbie Latza Nadeau, Kara Scannell, Lisa Respers France
## 205                                                                                                                                                              Jessica Dean, Karen Finney, Edward-Isaac Dovere
## 206                                                                                                                                                                                           Michael Smerconish
## 207                                                                                         Kaitlan Collins, Anderson Cooper, Nick Paton Walsh, Scott Jennings, Lulu Garcia-Navarro, Pete Muntean, Miles O'Brien
## 208                                                                                                                        Erin Burnett, Danny Freeman, Pete Muntean, Jason Carroll, Ed Lavandera, Miles O'Brien
## 209                                                                                                                                                       Brianna Keilar, Mary Schiavo, David Soucie, Gabe Cohen
## 210                                                                                                                                  Kate Bolduan, Sara Sidner, John Berman, Alayna Treene, Elizabeth Wagmeister
##     agg_copyright                                                       cite
## 1              NA                                                       <NA>
## 2              NA                            FEDERAL BUREAU OF INVESTIGATION
## 3              NA                                                       <NA>
## 4              NA                                                       <NA>
## 5              NA                                FOX ENTERTAINMENT GROUP INC
## 6              NA                                                       <NA>
## 7              NA NATIONAL ASSOCIATION FOR THE ADVANCEMENT OF COLORED PEOPLE
## 8              NA                                      AMERICAN AIRLINES INC
## 9              NA                                                       <NA>
## 10             NA                                      AMERICAN AIRLINES INC
## 11             NA                                        JPMORGAN CHASE & CO
## 12             NA                          STE DES AUTOROUTES RHONE-ALPES SA
## 13             NA                                      JOINT CHIEFS OF STAFF
## 14             NA                                                       <NA>
## 15             NA                                  WORLD HEALTH ORGANIZATION
## 16             NA                                          NBC UNIVERSAL INC
## 17             NA                                                       <NA>
## 18             NA                                      AMERICAN AIRLINES INC
## 19             NA                                         GRAHAM HOLDINGS CO
## 20             NA                                      AMERICAN AIRLINES INC
## 21             NA                         SUPREME COURT OF THE UNITED STATES
## 22             NA                                                       <NA>
## 23             NA                                      AMERICAN AIRLINES INC
## 24             NA                                         CINCINNATI BENGALS
## 25             NA                                      AMERICAN AIRLINES INC
## 26             NA                                                 INTEL CORP
## 27             NA                                                      HAMAS
## 28             NA                                                       <NA>
## 29             NA                                      AMERICAN AIRLINES INC
## 30             NA                                             STARBUCKS CORP
## 31             NA                                                      HAMAS
## 32             NA                                      AMERICAN AIRLINES INC
## 33             NA                                FOX ENTERTAINMENT GROUP INC
## 34             NA                            FEDERAL BUREAU OF INVESTIGATION
## 35             NA                                      AMERICAN AIRLINES INC
## 36             NA                                                      HAMAS
## 37             NA                                               COMCAST CORP
## 38             NA                                      AMERICAN AIRLINES INC
## 39             NA                                                       <NA>
## 40             NA                                      AMERICAN AIRLINES INC
## 41             NA                                                       <NA>
## 42             NA                                         META PLATFORMS INC
## 43             NA                                      AMERICAN AIRLINES INC
## 44             NA                                        WALL STREET JOURNAL
## 45             NA                                                       <NA>
## 46             NA                                                       <NA>
## 47             NA                              DEMOCRATIC NATIONAL COMMITTEE
## 48             NA                                   US DEPARTMENT OF JUSTICE
## 49             NA                   US DEPARTMENT OF HEALTH & HUMAN SERVICES
## 50             NA                                     US DEPARTMENT OF STATE
## 51             NA                                      AMERICAN AIRLINES INC
## 52             NA                                FOX ENTERTAINMENT GROUP INC
## 53             NA                             NATIONAL LABOR RELATIONS BOARD
## 54             NA                                              NEW YORK JETS
## 55             NA                                                 GOOGLE LLC
## 56             NA                                                       <NA>
## 57             NA                                                       <NA>
## 58             NA                                      AMERICAN AIRLINES INC
## 59             NA                                        JPMORGAN CHASE & CO
## 60             NA                                                       <NA>
## 61             NA                            FEDERAL BUREAU OF INVESTIGATION
## 62             NA                         US DEPARTMENT OF HOMELAND SECURITY
## 63             NA                            FEDERAL BUREAU OF INVESTIGATION
## 64             NA                         US ENVIRONMENTAL PROTECTION AGENCY
## 65             NA                                   STACK INFRASTRUCTURE INC
## 66             NA                                FOX ENTERTAINMENT GROUP INC
## 67             NA                            FEDERAL BUREAU OF INVESTIGATION
## 68             NA                            FEDERAL BUREAU OF INVESTIGATION
## 69             NA                   PLANNED PARENTHOOD FEDERATION OF AMERICA
## 70             NA                                                       <NA>
## 71             NA                                                       <NA>
## 72             NA                                                      HAMAS
## 73             NA                            FEDERAL BUREAU OF INVESTIGATION
## 74             NA                                      TALLGRASS ENERGY CORP
## 75             NA                                FOX ENTERTAINMENT GROUP INC
## 76             NA                                                       <NA>
## 77             NA                                                       <NA>
## 78             NA                                                       <NA>
## 79             NA                                                       <NA>
## 80             NA                                                      HAMAS
## 81             NA                                   US DEPARTMENT OF JUSTICE
## 82             NA                                                       <NA>
## 83             NA                                                      HAMAS
## 84             NA                                           WAFFLE HOUSE INC
## 85             NA                            FEDERAL BUREAU OF INVESTIGATION
## 86             NA                            FEDERAL BUREAU OF INVESTIGATION
## 87             NA                                                      HAMAS
## 88             NA                                        EUROPEAN PARLIAMENT
## 89             NA                                                       <NA>
## 90             NA                         US DEPARTMENT OF HOMELAND SECURITY
## 91             NA                            FEDERAL BUREAU OF INVESTIGATION
## 92             NA                                                       <NA>
## 93             NA                                   US DEPARTMENT OF JUSTICE
## 94             NA               NATIONAL AIR TRAFFIC CONTROLLERS ASSOCIATION
## 95             NA                                                       <NA>
## 96             NA                                                      HAMAS
## 97             NA                        VICE PRESIDENT OF THE UNITED STATES
## 98             NA                                                       <NA>
## 99             NA                                             BOSTON CELTICS
## 100            NA                                                      HAMAS
## 101            NA                            FEDERAL BUREAU OF INVESTIGATION
## 102            NA                               ATLANTA JOURNAL-CONSTITUTION
## 103            NA                                                       <NA>
## 104            NA                                                      HAMAS
## 105            NA                                  WORLD HEALTH ORGANIZATION
## 106            NA                                                       <NA>
## 107            NA                                                       <NA>
## 108            NA                                        WALL STREET JOURNAL
## 109            NA                                                       <NA>
## 110            NA                                                       <NA>
## 111            NA                                           NEW YORK YANKEES
## 112            NA                                                       <NA>
## 113            NA                            FEDERAL BUREAU OF INVESTIGATION
## 114            NA                               UNITED STATES SECRET SERVICE
## 115            NA                                  WORLD HEALTH ORGANIZATION
## 116            NA                                                       <NA>
## 117            NA                                                       <NA>
## 118            NA                                                       <NA>
## 119            NA                            FEDERAL BUREAU OF INVESTIGATION
## 120            NA                                                       <NA>
## 121            NA                                                      HAMAS
## 122            NA                                                       <NA>
## 123            NA                            FEDERAL BUREAU OF INVESTIGATION
## 124            NA                                      OHIO STATE UNIVERSITY
## 125            NA                                                       <NA>
## 126            NA                                                       <NA>
## 127            NA                                                      HAMAS
## 128            NA                                        PHILADELPHIA EAGLES
## 129            NA                                                       <NA>
## 130            NA                                                       <NA>
## 131            NA                                   US DEPARTMENT OF JUSTICE
## 132            NA                            FEDERAL BUREAU OF INVESTIGATION
## 133            NA                                                       <NA>
## 134            NA                               GEORGE WASHINGTON UNIVERSITY
## 135            NA                                                       <NA>
## 136            NA                                      AMERICAN AIRLINES INC
## 137            NA                         US DEPARTMENT OF HOMELAND SECURITY
## 138            NA                                   US DEPARTMENT OF JUSTICE
## 139            NA                            FEDERAL BUREAU OF INVESTIGATION
## 140            NA                                   US DEPARTMENT OF JUSTICE
## 141            NA                            FEDERAL BUREAU OF INVESTIGATION
## 142            NA                                        UNIVERSITY OF IDAHO
## 143            NA                    US AGENCY FOR INTERNATIONAL DEVELOPMENT
## 144            NA                                                       <NA>
## 145            NA                                                 GOOGLE LLC
## 146            NA                              OFFICE OF MANAGEMENT & BUDGET
## 147            NA                                                       <NA>
## 148            NA                    US AGENCY FOR INTERNATIONAL DEVELOPMENT
## 149            NA                                      JOINT CHIEFS OF STAFF
## 150            NA                                FOX ENTERTAINMENT GROUP INC
## 151            NA                                   US DEPARTMENT OF JUSTICE
## 152            NA                            FEDERAL BUREAU OF INVESTIGATION
## 153            NA                            FEDERAL BUREAU OF INVESTIGATION
## 154            NA                                                       <NA>
## 155            NA                                                      HAMAS
## 156            NA                                  MICHIGAN STATE UNIVERSITY
## 157            NA                                                       <NA>
## 158            NA                                   US DEPARTMENT OF JUSTICE
## 159            NA                               ATLANTA JOURNAL-CONSTITUTION
## 160            NA                                                       <NA>
## 161            NA                                                      HAMAS
## 162            NA                            FEDERAL BUREAU OF INVESTIGATION
## 163            NA                                                 GOOGLE LLC
## 164            NA                              DEMOCRATIC NATIONAL COMMITTEE
## 165            NA                                                       <NA>
## 166            NA                                                      HAMAS
## 167            NA                                                       <NA>
## 168            NA                                   US DEPARTMENT OF JUSTICE
## 169            NA                                                      HAMAS
## 170            NA                                      AMERICAN AIRLINES INC
## 171            NA                                   US DEPARTMENT OF JUSTICE
## 172            NA                              OFFICE OF MANAGEMENT & BUDGET
## 173            NA                                                       <NA>
## 174            NA                                                       <NA>
## 175            NA                         US DEPARTMENT OF HOMELAND SECURITY
## 176            NA                                                       <NA>
## 177            NA                              US DEPARTMENT OF THE TREASURY
## 178            NA                                                      HAMAS
## 179            NA              JOHN F KENNEDY CENTER FOR THE PERFORMING ARTS
## 180            NA                                                       <NA>
## 181            NA                                                       <NA>
## 182            NA                                                       <NA>
## 183            NA                                        PHILADELPHIA EAGLES
## 184            NA                                    UNIVERSITY OF TENNESSEE
## 185            NA                                         GRAHAM HOLDINGS CO
## 186            NA                                                       <NA>
## 187            NA                            FEDERAL BUREAU OF INVESTIGATION
## 188            NA                                                      HAMAS
## 189            NA                            FEDERAL BUREAU OF INVESTIGATION
## 190            NA                                        WAL-MART STORES INC
## 191            NA                                     US DEPARTMENT OF STATE
## 192            NA                                         LOS ANGELES LAKERS
## 193            NA                                                       <NA>
## 194            NA                                   US DEPARTMENT OF JUSTICE
## 195            NA                            FEDERAL BUREAU OF INVESTIGATION
## 196            NA                                      AMERICAN AIRLINES INC
## 197            NA                                                       <NA>
## 198            NA                                         KANSAS CITY CHIEFS
## 199            NA                                      AMERICAN AIRLINES INC
## 200            NA                            FEDERAL BUREAU OF INVESTIGATION
## 201            NA                                                 INTEL CORP
## 202            NA                                                   BEST INC
## 203            NA                                                       <NA>
## 204            NA                            FEDERAL BUREAU OF INVESTIGATION
## 205            NA                                            TRADER JOE'S CO
## 206            NA                    US AGENCY FOR INTERNATIONAL DEVELOPMENT
## 207            NA                       NATIONAL TRANSPORTATION SAFETY BOARD
## 208            NA                                                       <NA>
## 209            NA                       NATIONAL TRANSPORTATION SAFETY BOARD
## 210            NA                                      AMERICAN AIRLINES INC
##                                                        company
## 1                                                         <NA>
## 2                              FEDERAL BUREAU OF INVESTIGATION
## 3                                                         <NA>
## 4                                                         <NA>
## 5                                  FOX ENTERTAINMENT GROUP INC
## 6                                                         <NA>
## 7   NATIONAL ASSOCIATION FOR THE ADVANCEMENT OF COLORED PEOPLE
## 8                                        AMERICAN AIRLINES INC
## 9                                                         <NA>
## 10                                       AMERICAN AIRLINES INC
## 11                                         JPMORGAN CHASE & CO
## 12                           STE DES AUTOROUTES RHONE-ALPES SA
## 13                                       JOINT CHIEFS OF STAFF
## 14                                                        <NA>
## 15                                   WORLD HEALTH ORGANIZATION
## 16                                           NBC UNIVERSAL INC
## 17                                                        <NA>
## 18                                       AMERICAN AIRLINES INC
## 19                                          GRAHAM HOLDINGS CO
## 20                                       AMERICAN AIRLINES INC
## 21                          SUPREME COURT OF THE UNITED STATES
## 22                                                        <NA>
## 23                                       AMERICAN AIRLINES INC
## 24                                          CINCINNATI BENGALS
## 25                                       AMERICAN AIRLINES INC
## 26                                                  INTEL CORP
## 27                                                       HAMAS
## 28                                                        <NA>
## 29                                       AMERICAN AIRLINES INC
## 30                                              STARBUCKS CORP
## 31                                                       HAMAS
## 32                                       AMERICAN AIRLINES INC
## 33                                 FOX ENTERTAINMENT GROUP INC
## 34                             FEDERAL BUREAU OF INVESTIGATION
## 35                                       AMERICAN AIRLINES INC
## 36                                                       HAMAS
## 37                                                COMCAST CORP
## 38                                       AMERICAN AIRLINES INC
## 39                                                        <NA>
## 40                                       AMERICAN AIRLINES INC
## 41                                                        <NA>
## 42                                          META PLATFORMS INC
## 43                                       AMERICAN AIRLINES INC
## 44                                         WALL STREET JOURNAL
## 45                                                        <NA>
## 46                                                        <NA>
## 47                               DEMOCRATIC NATIONAL COMMITTEE
## 48                                    US DEPARTMENT OF JUSTICE
## 49                    US DEPARTMENT OF HEALTH & HUMAN SERVICES
## 50                                      US DEPARTMENT OF STATE
## 51                                       AMERICAN AIRLINES INC
## 52                                 FOX ENTERTAINMENT GROUP INC
## 53                              NATIONAL LABOR RELATIONS BOARD
## 54                                               NEW YORK JETS
## 55                                                  GOOGLE LLC
## 56                                                        <NA>
## 57                                                        <NA>
## 58                                       AMERICAN AIRLINES INC
## 59                                         JPMORGAN CHASE & CO
## 60                                                        <NA>
## 61                             FEDERAL BUREAU OF INVESTIGATION
## 62                          US DEPARTMENT OF HOMELAND SECURITY
## 63                             FEDERAL BUREAU OF INVESTIGATION
## 64                          US ENVIRONMENTAL PROTECTION AGENCY
## 65                                    STACK INFRASTRUCTURE INC
## 66                                 FOX ENTERTAINMENT GROUP INC
## 67                             FEDERAL BUREAU OF INVESTIGATION
## 68                             FEDERAL BUREAU OF INVESTIGATION
## 69                    PLANNED PARENTHOOD FEDERATION OF AMERICA
## 70                                                        <NA>
## 71                                                        <NA>
## 72                                                       HAMAS
## 73                             FEDERAL BUREAU OF INVESTIGATION
## 74                                       TALLGRASS ENERGY CORP
## 75                                 FOX ENTERTAINMENT GROUP INC
## 76                                                        <NA>
## 77                                                        <NA>
## 78                                                        <NA>
## 79                                                        <NA>
## 80                                                       HAMAS
## 81                                    US DEPARTMENT OF JUSTICE
## 82                                                        <NA>
## 83                                                       HAMAS
## 84                                            WAFFLE HOUSE INC
## 85                             FEDERAL BUREAU OF INVESTIGATION
## 86                             FEDERAL BUREAU OF INVESTIGATION
## 87                                                       HAMAS
## 88                                         EUROPEAN PARLIAMENT
## 89                                                        <NA>
## 90                          US DEPARTMENT OF HOMELAND SECURITY
## 91                             FEDERAL BUREAU OF INVESTIGATION
## 92                                                        <NA>
## 93                                    US DEPARTMENT OF JUSTICE
## 94                NATIONAL AIR TRAFFIC CONTROLLERS ASSOCIATION
## 95                                                        <NA>
## 96                                                       HAMAS
## 97                         VICE PRESIDENT OF THE UNITED STATES
## 98                                                        <NA>
## 99                                              BOSTON CELTICS
## 100                                                      HAMAS
## 101                            FEDERAL BUREAU OF INVESTIGATION
## 102                               ATLANTA JOURNAL-CONSTITUTION
## 103                                                       <NA>
## 104                                                      HAMAS
## 105                                  WORLD HEALTH ORGANIZATION
## 106                                                       <NA>
## 107                                                       <NA>
## 108                                        WALL STREET JOURNAL
## 109                                                       <NA>
## 110                                                       <NA>
## 111                                           NEW YORK YANKEES
## 112                                                       <NA>
## 113                            FEDERAL BUREAU OF INVESTIGATION
## 114                               UNITED STATES SECRET SERVICE
## 115                                  WORLD HEALTH ORGANIZATION
## 116                                                       <NA>
## 117                                                       <NA>
## 118                                                       <NA>
## 119                            FEDERAL BUREAU OF INVESTIGATION
## 120                                                       <NA>
## 121                                                      HAMAS
## 122                                                       <NA>
## 123                            FEDERAL BUREAU OF INVESTIGATION
## 124                                      OHIO STATE UNIVERSITY
## 125                                                       <NA>
## 126                                                       <NA>
## 127                                                      HAMAS
## 128                                        PHILADELPHIA EAGLES
## 129                                                       <NA>
## 130                                                       <NA>
## 131                                   US DEPARTMENT OF JUSTICE
## 132                            FEDERAL BUREAU OF INVESTIGATION
## 133                                                       <NA>
## 134                               GEORGE WASHINGTON UNIVERSITY
## 135                                                       <NA>
## 136                                      AMERICAN AIRLINES INC
## 137                         US DEPARTMENT OF HOMELAND SECURITY
## 138                                   US DEPARTMENT OF JUSTICE
## 139                            FEDERAL BUREAU OF INVESTIGATION
## 140                                   US DEPARTMENT OF JUSTICE
## 141                            FEDERAL BUREAU OF INVESTIGATION
## 142                                        UNIVERSITY OF IDAHO
## 143                    US AGENCY FOR INTERNATIONAL DEVELOPMENT
## 144                                                       <NA>
## 145                                                 GOOGLE LLC
## 146                              OFFICE OF MANAGEMENT & BUDGET
## 147                                                       <NA>
## 148                    US AGENCY FOR INTERNATIONAL DEVELOPMENT
## 149                                      JOINT CHIEFS OF STAFF
## 150                                FOX ENTERTAINMENT GROUP INC
## 151                                   US DEPARTMENT OF JUSTICE
## 152                            FEDERAL BUREAU OF INVESTIGATION
## 153                            FEDERAL BUREAU OF INVESTIGATION
## 154                                                       <NA>
## 155                                                      HAMAS
## 156                                  MICHIGAN STATE UNIVERSITY
## 157                                                       <NA>
## 158                                   US DEPARTMENT OF JUSTICE
## 159                               ATLANTA JOURNAL-CONSTITUTION
## 160                                                       <NA>
## 161                                                      HAMAS
## 162                            FEDERAL BUREAU OF INVESTIGATION
## 163                                                 GOOGLE LLC
## 164                              DEMOCRATIC NATIONAL COMMITTEE
## 165                                                       <NA>
## 166                                                      HAMAS
## 167                                                       <NA>
## 168                                   US DEPARTMENT OF JUSTICE
## 169                                                      HAMAS
## 170                                      AMERICAN AIRLINES INC
## 171                                   US DEPARTMENT OF JUSTICE
## 172                              OFFICE OF MANAGEMENT & BUDGET
## 173                                                       <NA>
## 174                                                       <NA>
## 175                         US DEPARTMENT OF HOMELAND SECURITY
## 176                                                       <NA>
## 177                              US DEPARTMENT OF THE TREASURY
## 178                                                      HAMAS
## 179              JOHN F KENNEDY CENTER FOR THE PERFORMING ARTS
## 180                                                       <NA>
## 181                                                       <NA>
## 182                                                       <NA>
## 183                                        PHILADELPHIA EAGLES
## 184                                    UNIVERSITY OF TENNESSEE
## 185                                         GRAHAM HOLDINGS CO
## 186                                                       <NA>
## 187                            FEDERAL BUREAU OF INVESTIGATION
## 188                                                      HAMAS
## 189                            FEDERAL BUREAU OF INVESTIGATION
## 190                                        WAL-MART STORES INC
## 191                                     US DEPARTMENT OF STATE
## 192                                         LOS ANGELES LAKERS
## 193                                                       <NA>
## 194                                   US DEPARTMENT OF JUSTICE
## 195                            FEDERAL BUREAU OF INVESTIGATION
## 196                                      AMERICAN AIRLINES INC
## 197                                                       <NA>
## 198                                         KANSAS CITY CHIEFS
## 199                                      AMERICAN AIRLINES INC
## 200                            FEDERAL BUREAU OF INVESTIGATION
## 201                                                 INTEL CORP
## 202                                                   BEST INC
## 203                                                       <NA>
## 204                            FEDERAL BUREAU OF INVESTIGATION
## 205                                            TRADER JOE'S CO
## 206                    US AGENCY FOR INTERNATIONAL DEVELOPMENT
## 207                       NATIONAL TRANSPORTATION SAFETY BOARD
## 208                                                       <NA>
## 209                       NATIONAL TRANSPORTATION SAFETY BOARD
## 210                                      AMERICAN AIRLINES INC
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               headline
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Sources: Trump May Invite Some Jan. 6 Rioters On White House; Trump , Republicans In Congress Defend Jan. 6 Pardons; Trump Dismantles Federal DEI Offices, Puts Staffers On Leave. Aired 12-12:30p ET
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Could Host Jan. 6 Rioters After Pardons; Trump's War On DEI; At Least Two Injured In Nashville School Shooting. Aired 2-2:30p ET
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Orders End Of Federal DEI Programs; Musk Casts Doubt On Trump's $500B AI Project; Trump Rebuffs Security Concerns Over Kids Using TikTok. Aired 6:30-7a ET
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Immigration Crackdown; Trump May Invite January 6 Convicts to White House; Trump Targets DEI. Aired 1-1:30p ET
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            President Trump Tackles Immigration Reform; Federal Employees Told To Report Efforts To Hide DEI Work; New York Jets Hire Aaron Glenn As New Head Coach. Aired 5:30-6a ET
## 6                                                                                                                                                                                                                                                                                                                               President Trump Orders all Federal Diversity, Equity, and Inclusion Staff Placed on Leave; President Trump Criticizes Bishop for Statements During National Prayer Service on Inauguration; New Allegations against Pete Hegseth regarding Treatment of His Second Wife Surface; Pushback on Trump 's January 6 Pardons; Trump Administration Dismantles Federal DEI Offices, Puts Staffers on Leave. Aired 8-8:30a ET
## 7                                                                                                                                                                                                                                                                                                                                                                           Top General Ousted As Trump Admin. Wages "War On Woke"; Legal Challenges Over Anti-DEI Orders Get First Results; Judge Temporarily Blocks Certain Trump Anti-DEI Directives. Target Is Getting Hit From All Sides On DEI; On Set With Starts Of New Soap Opera Centered On Black Family; "Liberated Muse" Takes Stage At Kennedy Center Amid Trump Takeover. Aired 8-9a ET
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Continuing to Blame DEI For Midair Collision; White House Holds Press Briefing; Midair Collision Investigation. Aired 1-1:30p ET
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Talks Jan. 6 Pardons, Immigration, Biden in Oval Office Interview; Trump Targets Federal Workers Who Focus on DEI; Trump's Bid to End Birthright Citizenship Faces Legal Challenges; Fast-Spreading Hughes Fire Racing in Los Angeles County . Aired 9-9:30a ET
## 10                                                                                                                                                                                                                                                                                                                            Impact Of Trump's Unsubstantiated Blame Of DEI For Crash; Trump DOJ Aims To Potentially Fire Thousands Of Jan. 6 Prosecutors; Rep. Byron Donalds, (R- FL ), Is Interviewed About Trump's Firing Of January 6 Prosecutors, Tariffs on Canada, Mexico , China; Tariffs On Canada, Mexico , China Now In Effect. Medevac Jet With Six People On Board Crashes In Philadelphia; Bill Maher: "Trump Is Cool Now." Aired 9-10a
## 11                                                                                                                                                                                                                                                                                                                                                                                          Mandatory Evacuation Orders As New Fire Breaks Out Near L.A.; Trump Closes Federal DEI Offices, Puts Staffers On Leave; Elon Musk Slams Trump 's $500b A.I. Project; JP Morgan Chase CEO On Trump Tariffs: "Get Over It"; Rep. Veronica Escobar (D- TX ), Is Interviewed About White House In Talks For Jan. 6 Convicts To Meet With Trump . Aired 5-6p ET
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Explosive New Fire In L.A. Area Could "Go Nuclear"; January 6 Leader Back At Capitol; Trump's DEI Purge; Trump Threatens Sanctions If Putin Doesn't End War In Ukraine . Aired 7-8p ET
## 13                                                                                                                                                                                                                                                                                                                                                                               Trump Fires Chairman Of The Joint Chiefs Of Staff; Judge Blocks Trump's Order Targeting DEI Programs; Supreme Court Says, Watchdog Fired By Trump Can Stay on Job; Maine Governor Takes A Stand Against Trump's Policy On Transgender Athletes; Actor George Clooney Explains Why Donald Trump Won And Why Joe Biden Clung To Hope That He Could Win. Aired 10-11p ET
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Elon Musk Dismantling Government, White House Calls Him "Special" Employee; Trump Backs Down; E.L.F. Embracing DEI. Aired 7-8p ET
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump To Make First Major Speech To Global Business, Political Leaders; Trump Targets Federal Employees Involved With DEI Practices; President Trump Announces Withdrawal From World Health Organization. Aired 7:30-8a ET
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pushback on Trump's January 6 Pardons; Trump Administration Dismantles Federal DEI Offices, Puts Staffers on Leave. Aired: 8-8:30a ET
## 17                                                                                                                                                                                                                                                                                                                                 Happy Black History Month?; Trump Ramps Up Trend Of Blaming "DEI Hires" For Disasters; The True Intent Behind "DEI" That Its Critics Are Missing. Rep. Gregory Porter (D-IN), Is Interviewed About IN Gov. Leaves Funding For Martin Univ. Out Of Budget Proposal; Debate Over Boycott After Target Dropped Diversity Goals; First Complete Opera By A Black American Premieres After 130 Plus Years. Aired 8-9a ET
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         New Videos Show Moment Helicopter and Plane Collided; Trump Says He Will Meet With Some of the Victims' Family Members; Trump Makes Baseless Claims DEI Hiring May Have Caused Collision. Aired 7- 7:30a ET
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump to Quickly Take Action on Immigration, Energy, DEI Policies; Hamas Releases Three Hostages, Celebrations in Tel Aviv; Trump Says We Have to Save TikTok at Victory Rally. Aired 4:30-5a ET
## 20                                                                                                                                                                                                                                                                                                                                                        With No Evidence, Trump Blame DEI For Deadly Midair Collision; 67 Presumed Dead In Midair Collision Over Potomac River ; Trump Baselessly Blames Democrats & Diversity For Plane Crash; Trump Baselessly Appears To Blame FAA "Diversity Push" For Collision; Plane's Fuselage Found In 3 Sections In Potomac River; American Airlines CEO Says Pilot Were "Experienced". Aired 12-12:30p ET
## 21                                                                                                                                                                                                                                                                                                                                                                                                                   Thousands Of USAID Employees Given Just 15 Minutes To Vacate Workstations; Trump To Meet With British PM Keir Starmer At The White House; Meta Apologizes, Americans With Disabilities Warn Protections Are Vanishing In Trump's DEI Rollback; Fixes Glitch That Caused Violent Video Recommendations On Reels. Aired 9:30-10a ET
## 22                                                                                                                                                                                                                                                                                                                                                   All Federal DEI Staff Now Ordered On Leave After Deadline Passes; Crews Battling Rapidly Growing New Fire In Northern L.A. County; Rep. Mike Johnson (R- LA ) Announces New House Select Subcommittee To Continue Republicans' Investigation Of January 6; Musk Bashes $500 Billion A.I. Project Touted By Trump ; Crews Battling Rapidly Growing New Fire In Northern L.A. County. Aired 6-7p ET
## 23                                                                                                                                                                                                                                                                                                                                           One Black Box Recovered from Potomac After Plane-Chopper Collision; Figure Skaters, Parents, Coaches Among the 67 Killed in Crash; Trump Baselessly Blames DEI Initiatives for Plane-Chopper Collision; 67 Believed Killed In D.C. Plane-Chopper Crash; Trump Baselessly Blames DEI Initiatives For Plane-Chopper Collision; Figure Skaters, Parents, Coaches Among The 67 Killed In Crash. Aired 8-9p ET
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Admin Dismantles Federal DEI Offices, Puts Staffers on Leave; At Least Nine Dead as Once-in-a-Generation Storm Slams South; Prince Harry Settles Legal Claim Against The Sun Publisher. Aired 7- 7:30a ET
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 No Survivors in Midair Collision; President Trump Blames DEI For Midair Collision. Aired 1-1:30p ET
## 26                                                                                                                                                                                                                                                                                                                                               Caroline Kennedy Accuses Cousin RFK Jr Of Being A "Predator" And Urges Senators To Reject His Nomination As HHS Secy; Patel's Personal Battles With Intel Community Shaped His Views Of FBI; WH: NJ Drones That Caused Hysteria Were "Not The Enemy"; Trump Calls China's DeepSeek A "Wake-Up Call" For U.S. Industries; Beauty Company Embraces DEI As Other Brands Ditch Programs. Aired 2:30-3p ET
## 27                                                                                                                                                                                                                                                                                                                                     Minorities Face Burnt Of Trump's First Actions Back In Office; Former White House Diversity Chief Reacts To End Of DEI Programs; Trump Targets DEI, Civil Rights Rules In First Days Of 2nd Term. Newark Mayor Says Business Raided By ICE Agents, Multiple People Detained; Hostages Return To Israel For Treatment After Release By Hamas; CNN Kobe Bryant Documentary Series Premiers Tonight. Aired 8-9a ET
## 28                                                                                                                                                                                                                                                                                                                                                                         FAA Says, Six People On Board Plane That Crashes In Philadelphia; Private Medical Flight Crashes Near Philadelphia Mall; NTSB Says, All Three Bodies Recovered From Black Hawk Helicopter; CNN Follows The Midair Collision Of American Eagle 5342 And Army Helicopter; Trump Makes Baseless Claims That DEI Led To The Crash Near Reagan National Airport. Aired 10-11p ET
## 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Both Black Boxes From Plane Recovered After Deadly Crash; Trump Blames DEI, Without Evidence, For Deadly Crash; Sen. Hassan Questions RFK Jr. On Past Autism Comments. Aired 9-10p ET
## 30                                                                                                                                                                                                                                                                                                                    "Sesame Street" Legend Reacts To Purge Of DEI Initiatives; Venezuelan Trump Supporters Fight To Preserve Policy; States Fight Back With Thousands Of Federal Workers In Limbo; "Sesame Street" Legend Reacts To Pressure On PBS Over DEI; Man Pleads Guilty In Shooting Of U.S. Teen Ralph Yarl; Missouri Sues Starbucks Over Its Diversity Programs; Military Cuts Recruiting Efforts At Black Engineering Event. Aired 8-9a ET
## 31                                                                                                                                                                                                                                                         Freed Women Hostages Handed Over To Israeli Forces; U.S. Freezes Almost All Foreign Aid Effective Immediately; Pete Hegseth Confirmed As U.S. Defense Chief In Tiebreaker Senate vote; White House Says Migrant Deportation Flights With Military Aircraft Have Begun. Buses Arrive Carrying Palestinian Prisoners in West Bank; Federal Agencies in the U.S. Told to Eliminate DEI Positions Within 60 Days; Trump Tours Disaster Areas in California and North California . Aired 6-7a ET
## 32                                                                                                                                                                                                                                                                                                                                                                                                                         40 Bodies Recovered so Far from Crash, Black Box Found; Probe Intensifies in Deadliest U.S. Plane Crash in 24 Years; Trump Baselessly Blames Democrats, DEI for Deadly Plane Crash. Rescuers Scouring For More Debris; Nine Lives Lost From Fairfax County; President Trump Points His Finger to Democrats. Aired 10-11p ET
## 33                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Threatens to Cut Off Funding for Sanctuary Cities; Trump's Immigration Plans Bring Refugee Programs to a Halt; Scientists Sound the Alarm After Trump Administration Halts NIH Meetings; Elon Musk Bashes Trump's $500 Billion A.I. Project; Trump Criticizes FEMA, Questions if Disaster Agency is Needed. Aired 8:30-9a ET
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Officials: No Survivors In Midair Collision; 67 Believed Dead; Recovery Effort Unfolds For 67 Victims Of Passenger Jet-Chopper Crash; Trump Lashes Out At DEI, Dems Amid Crash Recovery Effort; FBI Director Nominee Kash Patel Faces Confirmation Hearing. Aired 1:30-2p ET
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Recovery Effort Under Way In Deadly In-flight Collision; Without Evidence, Trump Blames DEI For Deadly Collision; Source Says One Air Traffic Controller Was Working Two Different Tower Positions At Time Of Collision. Aired 5-6:00p ET
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Approval Dips, Still Above Any Point in His First Term; Hamas Hands Bodies of Four Israeli Hostages to Red Cross; Trump Holds Event Marking Black History Month. Aired 3:30-4p ET
## 37                                                                                                                                                                                                                                                                                                                                                                                                                           U.S. Distances Itself from Ukraine as Trump Invites Putin; Reporter Barred from Oval Over Gulf of America Clash; FCC Opens Probe into Comcast to Root Out DEI Programs. Employee and Union Sources Say Mass Firings Have Begun at Federal Agencies; Pam Bondi Sues New York Over Sanctuary City Policies. Aired 10-11p ET
## 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CNN's Laura Coates Reports About the Tragedy on the Potomac ; Trump Blames DEI for Deadly Crash; CNN Remembers the Lives Lost on Flight 5432. Aired 11p-12a ET
## 39                                                   CNN Saturday Morning Table for Five. President Trump Blames Federal Government Diversity, Equity, and Inclusion Policies for Commercial Plane and Military Helicopter Midair Collision Near Washington D.C. ; Elon Musk's Possible Influence in Trump Administration Examined; Robert F. Kennedy Jr. and Tulsi Gabbard Face Tough Questions at Senate Confirmation Hearings for Their Nominations to Trump Administration; Paramount Settling Lawsuit with Donald Trump over Editing of Televised Interview with Kamala Harris; Senate Minority Leader Chuck Schumer Says Democrats Aroused after Trump Administration's Order of Freezing of Federal Grants and Loans Rescinded. Aired 10-11a ET
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Recovery Effort Unfolds For 67 Victims of Passenger Jet-Chopper Crash; Defense Secretary: "Mistake Was Made" During Routine Army Training Flight; Trump Lashes Out at DEI, Democrats Amid Crash Recovery Effort. Aired 2-2:30p ET
## 41                                                                                                                                                                                                                                                                                                                                                                                                   Musk And Mystery Team Intensify Dismantling Of Government; CIA Sent Names Of Recent Hires in Unclassified Email To White House; Nationwide Protests Against Trump And Musk Government Actions; "NewsNight" Panelists Discuss The Competency Of Trump Picks; Republicans Try To Figure Out Which Side of the Gaza Plan They're On. Aired 10-11p ET
## 42                                                                                                                                                                                                                                                                                                                                                                                                            Tensions High Between Officers, Judges, Rioters Over Pardons; Trump Orders Thousands Of Troops To Southern Border; Trump Already Sued Over Threat To Birthright Citizenship; An Executive Order May Cause Thousands Of Federal Government Workers To Be Displaced; New Wildfire Burns Thousands Of Acres In Los Angeles. Aired 10-11p ET
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                              Recovery And Investigation Underway In Deadly Aircraft Collision Over D.C. ; President Trump Talks Deadly Plane Crash, Tariffs; White House Still Claiming DEI Policies May Have Played Part In D.C. Plane Crash; NTSB Officials Give Update On Deadly D.C. Plane Crash. Aired 5-6p ET
## 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Dealt Double Down Blow Amid Effort To Gut U.S. Government; Musk Deputy Out; "Most Dangerous Nominee?"; Report: Russia Falls For Spoof Report On China's DeepSeek. Aired 7-8p ET
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Coleman Hughes is Interviewed about the Anti-DEI Push; Art delaCruz is Interviewed about Helping Wildfire Recovery Efforts; Pandas Make Public Debut in Washington. Aired 9:30-10a ET
## 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Medevac Plane Crashes in Philadelphia , Injuries on Ground Unclear; 6 On Board Crashed Medevac Jet in Philly, Including Child Patient; Trump Tries to Remake Government With No DEI; Coach Remembers Figure Skater Killed in DC Collision. Aired 12-1 am ET
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Interview With Rep. Yassamin Ansari (D- AZ ); Interview With Sen. Tim Kaine (D- VA ); Interview With U.S. Transportation Secretary Sean Duffy. Aired 9-10a ET
## 48                                                                                                                                                                                                                                                                                                                                                                                  Sources: Trump Admin Moves To Begin Dismantling Dept. Of Education; Sources: Trump Admin. Drafting Executive Order To Start Process Of Eliminating Education Dept.; Trump's Actions Echo Project 2025 Despite His Previous Denials; Trump Signs Executive Orders At White House; Trump Signs Order Withdrawing U.S. From UN Human Rights Council. Aired 3-3:30p ET
## 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                       FAA Indefinitely Closes Helicopter Routes Near Reagan National Airport; Families, Friends Honor The 67 People Killed In DC Tragedy; Confirmation Of Some Of Trump's Controversial Picks In Question; Most U.S. Companies Say Diversity Is Good For Business. Aired 1:30-2p ET
## 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Fires Inspectors General From Over A Dozen Federal Agencies; Trump Suggests Plan For Gaza Is To "Clean Out The Whole Thing"; NIH Told It Can Continue Purchasing Supplies For Studies. Aired 7:30-8a ET
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                               Sen. Tim Kaine (D- VA ) Discusses Plane-Chopper Midair Collion, Trump Lashing Out at DEI, Democrats; Soon: NTSB Press Conference On Deadly Plane Collision; New Details On Victims Aboard Aircraft; NTSB Gives Update On Investigation Into Deadly Midair Collision. Aired 2:30-3p ET
## 52                                                                                                                                                                                                                                                                                                                                                                                                    Trump and MAGA Allies Celebrating Firings Despite Chaos, Loss; Sources Say, 50,000-Plus Pentagon Workers at Risk of Firing; Trump Marks Black History Month Amid His War on Diversity. President Trump Says He Should Not Be Blamed For New Warning Signs About the Economy; V.P. Vance Talks About Masculinity In An Interview. Aired 10-11p ET
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  "Arab Americans For Trump" Changes Name Over Gaza Comments; NLRB Leader Ousted By Trump Speaks Out After Filing Lawsuit; Supervisors Withdraw Sade Robinson Memorial; NFL Removing "End Racism" From End Zones Ahead Of Trump Super Bowl Appearance. Aired 8-9a ET
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Administration Tells Agencies To Carry Out Widespread Layoffs; Vance To WSJ: Sending U.S. Troops To Ukraine Is "On The Table"; Jets Moving On From Rodgers. Aired 5:30-6a ET
## 55                                                                                                                                                                                                                                                                                                                       President Trump's Allies Look To Clarify His Ideas For Gaza; Attorney General Pam Bondi Quickly Aligns DOJ With Trump Agenda; Bird Flu Cases Lead To Higher Egg Prices In U.S. ; Panama Denies U.S. State Department's Claim That U.S. Government Ships Can Use The Panama Canal For Free; FCC Releases Kamala Harris' "60 Minutes" Interview Transcript; Google Removing Hiring Goals Targeting Diversity. Aired 5- 5:30a ET
## 56                                                                                                                                                                                                                                                                                                                                              Tonight: Deadline For Federal Workers To Accept "Buyout" Offer; Musk's Team Expands Its Influence Throughout Government; Ex-Trump WH lawyer: "It's A Naked Power Grab....To Flood The Zone"; Democrats Target "Unelected, Unaccountable Billionaire" Elon Musk; Now: House GOP Leaders Meet With Trump At White House; Trump Plots Out Legislative Strategy With House GOP Leaders. Aired 12-12:30p ET
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Federal DEI Staff Put on Leave; ICE to Use Common Sense with Migrant Arrests; John Sandweg is Interviewed about Deportations; Rare Storm Blankets South; DOJ Sidelines Workers. Aired 9-9:30a ET
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Flight Data Appears To Show Black Hawk Off Course And 100 Feet Above Maximum Allowed Altitude; Trump To Impose Tariffs On Mexico , Canada & China Tomorrow. Aired 4-5p ET
## 59                                                                                                                                                                                                                                                                                                   Major Changes Underway As Trump Works To Reshape Government; Sources: White House In Talks To Host Some Jan. 6 Convicts; DOJ Threatens To Prosecute Officials Who Resist Immigration Orders; JPMorgan Chase CEO On Trump Tariffs: "Get Over It"; PMorgan Chase CEO: Trump Tariff Threat May Be Negotiating Tool; Trump Tariffs Loom Over Chinese Factory In Mexico ; Chinese Firms Weigh Options As Trump Threatens New Tariffs. Aired 3-3:30p ET
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump, U.K. Prime Minister Starmer To Meet At White House For Critical Talks On Ukraine ; RKF Jr. Downplays Texas Outbreak Amid Measles Death; Sen. Chris Coons (D- DE ) Discusses Speaker Johnson Vowing GOP Will Not Cut Medicaid. Aired 7:30-8a ET
## 61                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Signs Order Banning Trans Athletes From Women's Sports; Texas Governor On Trump's Border Crackdown; Fired Agents Sue, Accusing DOJ Of Violating Constitution; Bondi Sworn In As Attorney General Amid DOJ Turmoil; Trump Expected To Get Mar-a-Lago Classified Docs Returned. Aired 5-5:59p ET
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interview With Sen. Cory Booker (D- NJ ); Interview With U.S. Secretary of Homeland Security Kristi Noem. Aired 9-10a ET
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Sen. Peter Welch (D- VT ) is Interviewed about Kash Patel; Trump Links Diversity to Collision; Controversial Cabinet Picks Face Senators. Aired 6:30-7a ET
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Judge Pauses Trump's "Buyout" Offer to Federal Workers; EPA Environmental Justice Workers Could be Put on Leave; Emails Show Mush Associates Sought to Use Critical Treasury Payment System to Shut Down USAID Spending. Aired 2-2:30p ET
## 65                                                                                                                                                                                                                                                                                                   Trump Approval At 47 Percent, Higher Than Any Point In First Term; Americans Weigh In On Trump's First Month In Office; 62 Percent Say Trump Not Doing Enough To Bring Down Prices; Source: DOGE Firings Amount To "Indiscriminate Madness"; McConnell Announces He Won't Run For Reelection; Senate On Track To Confirm Patel As FBI Director This Afternoon; One Month In: Much Of Project 2025 Agenda May Be Still To Come. Aired 12-12:30p ET
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             President Trump Defends Pardoning Violent January 6 Rioters; Evacuation Warning Just Issued As New Fire Erupts In L.A.; Trump Brushes Off Concerns Over China's Access To TikTok Data. Aired 5-5:30a ET
## 67                                                                                                                                                                                                                                                                                                                                                                                                 Soon: Trump Holds Event Marking Black History Month; Sources: Defense Secy. Could Soon Fire Top Generals, Admirals; Sen. Richard Blumenthal (D- CT ) Discusses About Hegseth's Firing of Generals; Sen. Blumenthal Urges Trump Admin. to Reverse Terminations at FAA; Zelensky Calls Meeting with U.S. Envoy Kellogg "Productive". Aired 3-3:30p ET
## 68                                                                                                                                                                                                                                                                            Federal Judge Clears Way For More Mass Firing; Some Once- Hawkish Republicans Soften Stance On Ukraine ; Sen. Markwayne Mullin, (R- OK ), Is Interviewed About Ukraine , Kash Patel; Senate Confirms Kash Patel To Lead FBI In 51-49 Vote; 11-Year-Old Texas Girl Dies By Suicide After Classmate Said ICE Would Deport Her Parents, Family Says; WH Hosts Black History Month Reception Amid Crackdown On DEI; West Texas Measles Outbreak Hits 58 Cases. Aired 5-6p ET
## 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Sen. Bernie Sanders: U.S. Moving Toward Oligarchy; Officer Hodges: Rioters Attacked Me, They Don't Deserve A Pardon; Denver Mayor Says City Will Work With ICE On Deporting Criminals, But Won't Allow Arrests At Schools & Churches. Aired 9-10p ET
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Interview With Rep. Gerry Connolly (D- VA ); Elon Musk Dismantling Government Agencies; New Trump Tariffs. Aired 1-1:30p ET
## 71                                                                                                                                                                                                                                                                                                                                                                                                               Trump Welcomes Japanese Prime Minister To White House; World Leaders Watching Trump's Early Moves Closely; Panama Says State Department Claim About Canal Fees Are "Based on A Falsehood"; Project 2025 Co-Author Starts Job As Trump's Budget Chief; New Time Cover Depicts Musk Sitting Behind President's Desk. Aired 12-12:30p ET
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump White House Stirs New Confusion As It Tries To Clarify Status Of Frozen Federal Funds; RFK Jr. Grilled On Vaccines & Abortion In Confirmation Hearing; Israel : Three Israeli And Five Thai Hostages To Be Released Thursday. Aired 4-5p ET
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump's Baselessly Links Diversity Initiatives to Collision; Rain Could Hamper Recovery Efforts in Icy Potomac River; Divers Battle Mud, Zero Visibility in Recovery Efforts. Aired 6-6:30a ET
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                         Marc Fogel Visits The White House After Release From Russia ; Elon Musk Defends DOGE In The Oval Office; Kash Patel Accused Of Ordering FBI Firings Before Confirmation; U.S. Military Backs Out STEM Recruiting Conference; Sonya Massey's Family Settle For $10 Million. Aired 11p-12a ET
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Delays TikTok Ban as He Looks for Options to Save It; Blue-collar Trump Voters Want Quick Proof Promises Will Be Kept; Trump Shares Letter From Biden Left in Resolute Desk With Fox News. Aired 12:30-1p ET
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Marc Short is Interviewed about Tariffs, RFK Jr. and the FBI; Rep. Johnny Olszewski (D- MD ) is Interviewed about Dismantling the Education Department; Trump Hints of Purchase of TikTok. Aired 6:30-7a ET
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Makes Demands, Threats in First Message to World; Trump on Musk Criticizing A.I. Announcement, He Hates Altman; Two GOP Senators Will Vote Against Pentagon Pick Hegseth. Federal Judge Blocks Trump's Executive Order Targeting 14th Amendment. Aired 10-11p ET
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Won't Call Putin A "Dictator": I Don't Use World "Lightly"; Musk: "Failure To Respond A Second Time" Will Result In Firing; Ex-Official: NASA Never Got Offer From Musk To Help Astronauts. Aired 7-8p ET
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               New Recovery Effort Under Way In Deadly In-Flight Collision; Controversial Trump Picks Face Questions On Past Comments. Aired 4-5p ET
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Interview With Rep. Hakeem Jeffries (D- NY ); Interview With Special Envoy to the Middle East Steve Witkoff. Aired 9-10a ET
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                             White House Orders Freeze On All Federal Grants And Loans; Assistance Pause Could Impact School Breakfast & Lunch Programs; Justice Department Fires Officials Who Investigated Trump; Trump Picks His Criminal Defense Attorneys For Key DOJ Posts. Aired 12-12:30p ET
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump's Justice Department Halts Police Reform Agreements; Trump Signs New Executive Orders in Oval Office. Aired 3:30-4p ET
## 83                                                                                                                                                                                                                                                       Hamas Releases Israeli Hostages, Returns Remains Of Shiri Bibas; Pentagon Announces It Plans To Fire 5-8 Percent Of Civilian Workforce; U.S. Proposes Draft U.N. Resolution On War In Ukraine ; Federal Judge Gives Go-Ahead For Trump To Gut USAID. U.S. Federal Judge Clears the Way for Dismantling of USAID; Associated Press Sues Trump Administration After Being Blocked from White House Briefings; Pentagon Announces Plans to Fire 5-8 Percent of Civilian Workforce. Aired 6-7a ET
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Interview With Connecticut Attorney General William Tong ; Musk and Trump Targeting Department of Education?; Trump's Trade War With China Begins; FBI Employees File Lawsuit Against DOJ. Aired 1-1:30p ET
## 85                                                                                                                                                                                                                                                                                                                                                Zelenskyy Says, Talk With Top Trump Envoy Gives Hope; Sources Say, Hegseth Could Fire Top Generals and Admirals Soon; Gov. Kathy Hochul (D- NY ) Says She Won't Move to Oust Mayor Eric Adams (D- New York City , NY ). Sen. Mitch McConnell Announces He Won't Seek Re-Election; U.S. Senate Confirms Kash Patel For FBI Director; Hawaiian Volcano Spews Lava 400 Feet Into The Air. Aired 6-7p ET
## 86                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Baselessly Appears To Blame FAA "Diversity Push" For Collision; 67 Presumed Dead In Mid-Air Collision Over Potomac River ; Kash Patel, Tulsi Gabbard Face Confirmation Hearings; Sources: FBI Agents Association Officials Urged Patel To Protect Agents Who Investigated Jan. 6 Violent Crime. Aired 12:30-1p ET
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump Pauses Tariffs On Canada And Mexico For 30 Days; Netanyahu In Washington To Meet With President Trump; China Imposes Retaliatory Tariffs On U.S. Imports. Aired 5-5:30a ET
## 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Mayor: Immigration Agents Raided NJ Business Without Warrant; Judge Blocks Trump's "Blatantly Unconstitutional" Executive Order; Trump Wants To Meet With Putin "As Soon As We Can" "Immediately". Aired 7-8p ET
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ICE Says Hundreds of Illegal Immigrants Arrested in Recent Days; Powerful New Chinese AI Tech Shocks Experts, Disrupts Markets. Aired 3-3:30p ET
## 90                                                                                                                                                                                                                                                                                                                                                                                                           Musk Rehires DOGE Aide Who Resigned Over Racist Posts; Trump Admits Musk's DOGE Getting Access to Sensitive Data; Trump Terminates Kennedy Center Board. A Federal Judge Blocks Trump Administration's Plan To Put All USAID Workers On Leave; Homeland Security Secretary Noem Checks Out Operations at Guantanamo Bay . Aired 10-11p ET
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Expected to Reshape Military With New Executive Orders; Trump Expected to Sign Order Banning Transgender Service Members; Trump Admin Launches Immigration Crackdown in Chicago. Aired 2-2:30p ET
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hegseth Arrives for First day as Defense Secretary; White House and Colombia Reach Deal; Immigration Crackdown Intensifying; Trump Fires Inspectors General. Aired 9-9:30a ET
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Justice Department Fires Officials Who Investigated Trump; Trump Bars Transgender Americans from Military Service; Snow and Flood Concerns Move into Great Lakes Region. Aired 6-6:30a ET
## 94                                                                                                                                                                                                 Judge: Mass Firings of Federal Probationary Workers "Likely Unlawful"; RFK Jr. Downplays Measles Outbreak, Doctors Say He's Wrong; Transportation Secretary Sean Duffy Saying FAA Will be Hiring More Air Traffic Controllers; President Trump to Meet with Ukrainian President Volodymyr Zelenskyy; President Trump Touting Potential Deal with Ukraine to Extract Rare Earth Minerals from Country; France and U.K. May Propose Security Guarantees for Ukraine against Russia during negotiations to end Russia - Ukraine war. Aired 8-8:30a ET.
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                At Least Five Tech CEOs To Attend Trump Inauguration; Soon: Trump Caps Political Comeback With Second Inauguration; Trump Promises To Release JFK, RFK And MLK Assassination Files. Aired 5:30-6a ET
## 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CNN's Special Coverage on the Inauguration of Donald Trump as the 47th President of the United States . Aired 3-4a ET
## 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Reshapes America 's Government & Alliances; CNN Poll: 62 Percent Say Trump Has 'Not Gone Far Enough' to Reduce Prices; Arctic Blast Sets New Cold Records Across the Central U.S. Aired 6-6:30a ET
## 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Recent Polls on Trump's Second Term; Rep. Katherine Clark (D- MA ) is interviewed about Deadline Government Workers; Associated Press Sues Trump; Trump's Vision of Energy Independence. Aired 8:30-9a ET
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Immigrant Families Fear Being Separated By Trump Deportations; Trump Signs Four New Executive Orders, Transforming Military; DeepSeek AI Model Sends Shockwaves Through U.S. Markets. Aired 5:30-6a ET
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             New Ultimatum from Trump; GOP'S Careful Pushback on Musk; Sen. Ed Markey (D- MA ) is Interviewed about Dismantling Federal Agencies; Flu Cases Peak for Second Time; Louisiana Police Looking into Death of Reporter. Aired 8:30-9a ET
## 101                                                                                                                                                                                                                                                                                                                                                                Sources Say, Trump Expected To Get Back Classified Documents Taken By FBI; Former USAID Leaders Condemn Trump's Attempts To Dismantle Agency; Trump Admin Tries To Walk Back His Gaza Comments Amid Global Outrage; Police: 100,000 Eggs Stolen From PA Distribution Center As Supply Crunch Sends Prices Soaring; Wolf Blitzer Honored For Excellence In Journalism. Aired 6-7p ET
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Judges Will Decide Fate Of Trump's Most Contentious Moves; Trump, Japanese Prime Minister Meeting At White House; Trump Expects To Talk To Zelenskyy Next Week, Says He Wants To Discuss Security Of Ukraine 's Assets Like Rare Earths. Aired 12:30-1p ET
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump White House Holds First Press Briefing. Aired 1-1:30p ET
## 104                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Admin Defends Agenda As CNN Poll Shows Rising Pessimism; White House: Trump "Very Frustrated" With Zelenskyy Right Now; Senate Confirms Kash Patel To Lead FBI In 51-49 Vote; Trump Economist: DOGE Checks To Americans Wouldn't Drive Inflation; Hamas Releases Remains Of Four Israeli Hostages. Aired 4-5p ET
## 105                                                                                                                                                                                                                                                                                                                                                                                           Pete Hegseth Confirmation Vote Could Happen In Hours; Sen. Tim Kaine, (D- VA ), Is Interviewed About Pete Hegseth Confirmation, RFK Jr.; The Impact Of Trump's First Days Back In Office; Trump Floats The Idea Of Getting Rid Of FEMA; Big Changes In Americans' Views On How Much To Drink; Giant Pandas Debut At D.C. 's National Zoo . Aired 5-6p ET
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump's Approval Rating; Trump Revokes Security for Ex-Aides; Christopher Reeve's Story. Aired 8:30-9a ET
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Rep. Melanie Stansbury (D- NM ) is Interviewed about DOGE; Senators Vote on Hegseth Today; Michael Smerconish is Interviewed about Trump's First Week. Aired 6:30-7a ET
## 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Elon Musk Is Reshaping The Government, But Is It Legal?; Breaking Down Elon Musk's Expanding Role in Trump Administration; Democrats Plot First Major Attack on Trump Agenda; Trump To Become First President to Attend Super Bowl. Aired 8-9a ET
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Migrant Deportation Flights Begin; Rep. Gabe Vasquez (D- NM ) is Interviewed about Birthright Citizenship and Deportations; Trump Visits North Carolina and California ; Zeb Smathers is Interviewed about Flood-Ravaged North Carolina . Aired 9-9:30a ET
## 110                                                                                                                                                                                                                                                                                                                                                                                                                                                              President Biden Issues Preemptive Pardons for Dr. Anthony Fauci and General Mark Milley; Trump-Vance Transition Adviser Jason Millers Says President-Elect Trump Prepared to Sign Executive Orders regarding Immigration and Energy Immediately Upon Taking Office. Aired 8-8:30a ET.
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Makes Unprecedented Shake-up At The Pentagon; CNN Presents " America Asks"; Fans Flock To See Alleged Killer Luigi Mangione In Court; Major Setback In Bid To Free The Menendez Brothers; Laura Coates Interviews Roy Wood Jr. Aired 11p-12a ET
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DOGE Claims Billions in Savings; Trump Reverses Stance toward Ukraine ; McConnell Announces Retirement. Aired 6:30-7a ET
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Musk Moves to Eliminate Key Federal Agency; El Salvador Agrees to House Deported U.S. Criminals; FBI Prepares for Major Trump Purge; Red Flags Raised After CBS Hands Over Harris Transcript; Judge Warns Lively and Baldoni Lawyers. Aired 11p-12a ET
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump to Leave Blair House for Church Service; Sen. Katie Britt (R- AL ) is Interviewed about the Trump Administration. Aired 8:30-9a ET
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                  Executive Order Suspending Refugee Program Could Leave Afghans Who Helped U.S. In Limbo; Trump Signs Executive Orders Cracking Down On Immigration; Trump Begins Second Term With Deluge Of Executive Actions; Tech Leaders, Billionaires Flock To Donald Trump's Inauguration. Aired 12:30-1p ET
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Admin Resists " Russian Aggression" Phrase In G7 Document; Elon Musk's Chainsaw; "Inflation Is Back"; Surgeon: Insurance Is Taking The "Humanity" Out Of Health Care. Aired 7-8p ET
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CNN's Coverage of the Inauguration of President Donald Trump; Trump to Hold Signing Ceremonies; Families of Israeli Hostages in Gaza Seen in the crowd. Aired 5-5:30p ET
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Judge Denies Dem Attempt To Block DOGE From Federal Data Systems; New York Governor Hochul Considers Next Steps In Mayor Adams Case; Rep. Gabe Amo (D- RI ) On Zelenskyy Saying Trump "Lives In This Disinformation Space." Aired 7:30-8a ET
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump Administration Targeting Generals and Admirals?; IRS Layoffs Expected; Senate Set to Approve Kash Patel; Ukraine - U.S. Relationship Falling Apart?. Aired 1-1:30p ET
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Judge Blocks Trump Order To Freeze Trillions In Federal Funding; Caroline Kennedy: RFK Jr. is "A Predator"; German Chancellor: Elon Musk's Right-Wing Push Is "Disgusting". Aired 7-8p ET
## 121                                                                                                                                                                                                                                                                                                                                                                                                           Donald Trump to be the 47th President of the United States ; Second Day of Israel -Hamas Ceasefire Updates; World Leaders Brace for Trump's Second Presidency; Donald Trump's Second Inauguration Just Hours Away; Trump Hails TikTok's Return Hours Ahead of Inauguration; Trump Promises Tough Crackdown On Immigration. Aired 2-3a ET
## 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Says Putin Agreed To Start Talks On Ukraine ; U.S. Inflation Hits 3 Percent For First Time Since June; Trump Speaks With Reporters In The Oval Office. Aired 4-5p ET
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    IRS Fires Thousands Of Workers During Tax Season; Elon Musk Celebrates Federal Job Cuts With A Chainsaw; Europe Considers Next Steps Amid U.S. & Russia Talks; Gov. Hochul Declines To Remove NYC Mayor Adams. Aired 5-5:30a ET
## 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Jump Starts Second Term With Stunning Slew of Executive Orders; Southern States Brace for Another Major Winter Storms; Trump Threatens 25 Percent Tariffs on Mexico and Canada on Feb. 1. Aired 7- 7:30a ET
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        New 40-Acre Brush Fire Erupts Overnight in L.A.; Trump Defends Jan. 6 Pardons in Oval Office Interview; Authorities Search for Motive in Deadly Nashville School Shooting. Aired 7-7:30a ET
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump: Ukraine Will Be Part of Any Peace Negotiations; Trump Appears to Cast Doubt on Whether McConnell is a Polio Survivor; Judge Extends Pause on Trump's Dismantling of USAID. Aired 3:30-4p ET
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Plans About 100 Executive Orders & Actions On Day One; Freed Palestinians Greeted By Huge Crowds In West Bank; Trump Seeks Dialogue With China While Pushing Hardline Stance; Trump Plans about 100 Executive Orders and Actions on Day One; Trump Makes Big Promises But Can He Deliver. Aired 1-2a ET
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Administration And Colombia Reach Agreement On Migrant Flights; Navajo Officials: 15 Indigenous People Questioned Since Wednesday; Super Bowl LIX: Chiefs Vs. Eagles. Aired 5:30-6a ET
## 129                                                                                                                                                                                                                                                                                                                                                  Trump Says He'll Pause Tariffs On Mexico For One Month; Trump Admits Tariffs May Cause "A Little Pain" For Americans; Trump Says He'll Speak Again With Canadian PM This Afternoon; Musk Team Gains Access To System That Writes America 's Checks; Trump, Allies Pulling Levers Of Power That Few Knew Existed; Secretary Of State Rubio Says He Is Acting Director Of USAID. Aired 12-12:30p ET
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 What Trump Wants From CA : Voter ID Laws And Water Flow; Trump Says He Wants States, Not FEMA, To Run Disaster Response; Trump In North Carolina To Tour Hurricane Helene Damage; Today: Senate Vote On Defense Secretary Nominee Pete Hegseth. Aired 12-12:30p ET
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Interview with Polish Foreign Minister Radoslaw Sikorski on Russia - Ukraine War; The Fragility of America 's Justice System. Interview With Law Professor And Author Rachel Barkow; Interview With Author Marc Dunkelman. Aired 10-11a ET
## 132                                                                                                                                                                                                                                                                                                                                                                                                 USDA Trying To Rehire Staff Working On Bird Flu After Firing Them; Senate Votes To Confirm Kash Patel As FBI Director; Waltz: Trump "Frustrated" By Ukraine 's Zelenskyy Not Accepting Deal; Child Dies By Suicide After Alleged Bullying, Deportation Threats; HHS Narrows Definitions Of Words Like "Sex," "Males" & "Females". Aired 2:30-3p ET
## 133                                                                                                                                                                                                                                                                                                                                         Speaker Johnson Announces New January 6 Subcommittee; Sources: White House In Talks For January 6 Convicts To Meet With Trump; Mandatory Evacuation Orders As New Fire Breaks Out Near L.A.; U.S. Military Orders Thousands More Troops To Southern Border; UK Tabloid Settles With Prince Harry, Apologizes For Phone Hacking; Trump Threatens Sanctions On Russia If Fighting Doesn't End. Aired 4-5p ET
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dr. Jonathan Reiner is Interviewed about the Measles Outbreak; Trump Takes First Appeal to Supreme Court ; Mark McKinnon is Interviewed about Trump's Russia / Ukraine Comments. Aired 6:30-7a ET
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Inauguration Of Donald Trump. Aired 7-8p ET
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     New Video Shows Passenger Jet Colliding With Military Chopper; FAA Indefinitely Closes Helicopter Routes Near Crash Site; NTSB Recovers Both Black Boxes From Doomed Jet; Trump Jumps Right To Blame Game Over Plane Crash. Aired 12-12:30p ET
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Federal Buyout Offer Paused; White House Wants Faster Pace of Migrant Arrests; Elon Musk Continues Gaining Access to Federal Government Systems. Aired 1-1:30p ET
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump, Zelenskyy Trade Insults In Escalating War Of Words; Defense Secretary Orders Military To Prepare For Major Budget Cuts; No Ruling Yet On DOJ Push To Drop Corruption Charges Against Adams. Aired 7:30-8a ET
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump: Musk "Won't Do Anything Without Our Approval"; Trump Declares Victory In Stand-Off With Mexico & Canada; Father: All Victims "Deserve To Be Remembered." Aired 9-10p ET
## 140                                                                                                                                                                                                                                                                                                                                                                                                            Vance Scolds European Allies Over Immigration, Free Speech; Vance: "Threat From Within" More Dangerous To Europe Than Russia ; Now: Vance & Zelenskyy Meet At Munich Security Conference; Mixed Message On Ukraine Coming From Trump, Vance, Hegseth; Seventh Prosecutor Resigns Over Order To Drop Eric Adams Case. Aired 12-12:30p ET
## 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     GOP Senators Push Back on Musk Gutting Federal Workforce; Several Agencies Tell Employees Not to Respond to Musk Email; Zelenskyy Speaks Out on Possibility of Deal with U.S. ; Vatican: Pope in Critical Condition with Mild Kidney Failure. Aired 6-6:30a ET
## 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Federal Judge Receives No Answers from Justice Department to Questions about Organizational Structure of Department of Government Efficiency; Republican Congressman Experiences Contentious Town Hall with Constituents after Mentioning Elon Musk. Aired 8-8:30a ET
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                 President Trump Announces Tariffs on Canada, Mexico , and China; Stocks Markets Potentially Down Upon News of U.S. Tariffs on Trading Partners; Workers at U.S. Agency for International Development Receive Email to Not Show Up to Work as Trump Administration Targets Agency. Aired 8-8:30a ET
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DOJ Officials Who Prosecuted Trump Fired; Trump to Address House Republicans in Miami; Sen. Ruben Gallego (D- AZ ) is Interviewed on the Crackdown of Unlawful Immigrants All Across the U.S. ; U.S Tech Stocks Plunge Sparked by New Chinese AI. Aired 5-6:00p ET
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     USAID In Limbo As Musk Says Trump Signed Off On Shutting Down Agency; Rep. Pat Ryan (D- NY ) On China Hits Back At U.S. With Retaliatory Tariffs; Today: NTSB To Release Data From Black Box Of Black Hawk Helicopter That Collided With Jet. Aired 7:30-8a ET
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Freeze On Federal Grants And Loans Takes Effect At 5 P.M. Today; WH: NJ Jones That Caused Hysteria Were "Not The Enemy"; ICE: 1,100-Plus Arrested In Immigration Enforcement On Monday. Aired 2- 2:30p ET
## 147                                                                                                                                                                                                                                                                                                                                                                                              Musk Moves from Villainizing Workers to Fictionalizing Them; Trump Cedes Spotlight to Elon Musk in First Cabinet Meeting; Bezos Commands Washington Post to Focus Columns on His Two Pillars. Supreme Court Justices Poises to Favor Straight Woman in a Job Bias Case; A.I.-Generated Video of Trump's Fantasy Gaza Sparked Outrage. Aired 10-11p ET
## 148                                                                                                                                                                                                                                                                                                                                                  Federal Judge Blocks Trump USAID Leave Plan; Trudeau Says Trump Threat To Annex Canada "Is A Real Thing"; Trump Says Musk will Review "Just About" Every Federal Agency. Politico: Trump Considering Blagojevich For Ambassador Post; Actress Debra Messing On Her Pro- Israel Activism; Federal Judge Temporarily Blocks Trump From Putting At Least 2,200 USAID Workers On Leave. Aired 5-6p ET
## 149                                                                                    Trump Fires Top U.S. General, Calls Gen. Charles Brown A "Fine Gentleman"; Trump Falling Sort; Acting ICE Director Removed Amid Frustration Over Pace Of Arrests; Pentagon Announces It Plans To Fire 5-8 Percent Of Civilian Workforce; NY Times Columnist: Musk Is "Operating As What Cybersecurity Experts Call An Insider Threat"; Mine Workers Tell CNN Musk Claims Are False; Alleged Healthcare CEO Killer Appears In Court, Attracting Dozens Of Supporters, Observers; Los Angeles D.A. Urges Judge To Deny Menendez Brothers' Request For A New Trial; Second Body Said To Be That Of Israeli Hostage Shiri Bibas Handed Over By Hamas. Aired 8-9p ET
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Zelenskyy Is Defiant After Explosive Oval Office Meeting With Trump; Officials Rule Out Key Theory In Gene Hackman's Death; Trump Reveals Private Blame Game Talk With Biden; Laura Coates Interviews Author Ben Arogundade. Aired 11p-12a ET
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Fires Justice Department Officials Who Prosecuted Him; Trump Plots Strategy With House GOP as He Readies New Orders; Chinese A.I. Advancement Sends U.S. Tech Stocks Plunging. Displaced Palestinians Making Emotional Return To Gaza; Survivors Mark 80 Years Since Auschwitz Liberation. Aired 6-7p ET
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Plans To Own, Control, And Develop Gaza; Democrats Blast Elon Musk; CIA Offering Buyouts To Entire Workforce; New York Doctor Indicted In Louisiana For Sending Abortion Pills. Aired 11p-12a ET
## 153                                                                                                                                                                                                                                                  Trump Hosts France's Macron At Crucial Moment For Ukraine ; Interview With Senator Mark Kelly (D- AZ ); MAGA Podcaster Dan Bongino Tapped To Be Next FBI Deputy Director; Former Proud Boys Leader Taunts Officers Who Protected; Political Conference In D.C. Interrupted By Death Threats Against Speakers Critical Of Trump; Colorado Trump Voters On The President's Tumultuous New Term; Clint Hill, Secret Service Agent Who Jumped Onto Limo After JFK Was Shot, Dies At 93. Aired 8-9p ET
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Urgent Investigation After Deadliest U.S. Airliner Crash in 23 Years; Trump Baselessly Blames Diversity Initiatives for Plane Crash; One Black Box Has Been Recovered from Potomac River . Some Victims Of Mid-Air Collision Being Identified. Aired 6-7p ET
## 155                                                                                                                                                                                                                                                                                                                                            Elon Musk Dominates First Trump Cabinet Meeting; Musk: Trump Told Me To Be "More Aggressive" In Federal Cuts; Texas Reports First Measles Death As Cases Spread Rapidly; New Strategy To Combat Bird Flu, Lower Egg Prices; Supreme Court Signals It Will Make It Easier For Americans To File "Reverse" Discrimination Lawsuits; Hamas Expected To Release Bodies Of 4 Israeli Hostages. Aired 4-5p ET
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Oscar-Winning Actor Gene Hackman Found Dead in His Home; Trump to Welcome British P.M. Starmer to White House; Pro- Palestinian Protesters Storm Barnard College Campus. Aired 7-7:30a ET
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               President Trump Calls Zelenskyy A Dictator, Issues A New Warning; Elon Musk's DOGE Slashes Into A Program That Got Lawmakers On Both Sides Of The Aisle Upset; New York City Mayor Eric Adams Speaks Hours After Appearing In Court. Aired 10-11p ET
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump: Judges Shouldn't Say "What You're Supposed To Be Doing"; Trump Pardons Former Illinois Gov. Rod Blagojevich; Trump Doesn't See Vance As His Successor: "It's Too Early." Aired 9-10p ET
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lawmakers Face Pushback From Constituents At Town Halls; Germany 's Conservatives Return To Power As Far Right Surges; Zelenskyy Praises The "Absolute Heroism" Of Ukrainians. Aired 5:30-6a ET
## 160                                                                                                                                                                                                                   Trump Admin Directs Agencies to Prepare for Large-scale Firings; Trump Says U.S. To Sell $5 Million 'Gold Card' That Offers Path to Citizenship; Johnson, Trump Pull Off Last-minute Win as House Passes Budget Plan; Sexually Explicit Messages Found on NSA Chat Rooms; Pope Remains in Critical but Stable Condition; National Parks Litter Turned to Art; Zelenskyy Says Security Guarantees by U.S. Could Be a Step Toward Peace; U.S. Votes Against U.N. Resolution Condemning Russia 's War on Ukraine . Aired 8:30-9a ET
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                               Medical Jet Crashes in Philadelphia, No Confirmed Survivors; Israel -Hamas Ceasefire Leads to Hostage Releases; Deadly Mid-Air Collision Over D.C. , Black Boxes Recovered; Trump Imposes New Tariffs on Canada, Mexico , China; Madison Keys Wins Australian Open, First Major Title. Aired 7-8a ET
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Musk Tightens Grip On Government With Oversight Of More Agencies; Pam Bondi Sworn In As Attorney General; Trump Takes Action To Ban Trans Women From Women's Sports. Aired 9-10p ET
## 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump's Freeze On Federal Aid Money Takes Effect At 5PM ET; New Jet Breaks Sound Barrier On Historic Test Flight. Aired 4-5p ET
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Announces Sweeping Tariffs On China, Canada, Mexico ; One- On-One With Former Treasury Secretary Larry Summers. Democrats Pick Minnesota 's Ken Martin as New DNC Chair; Trump Nominees Clean Up Past Comments Before Senate; Can Democrats Retake the House Majority Next November? Aired 8-9a ET
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Laura Coates Interviews Former NYC Mayor Bill De Blasio; Setback After Setback For President Trump In The Courts; CBS News Poll Says President Trump Is Riding High Three Weeks Into His Term. Aired 11p-12a ET
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Musk Takes Center Stage at Trump's First Cabinet Meeting; Israel, Hamas Agree on New Exchange as Fragile Ceasefire Appears Intact; Crowds Line Streets to Mourn Bibas Family Who Were Killed in Gaza. Aired 2-2:30p ET
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Pardons January 6th Rioters; Skye Perryman is Interviewed about a Lawsuit against DOGE; CNN Original Series on Kobe Bryant. Aired 9:30-10a ET
## 168                                                                                                                                                                                                                                                                                                                                                          DOJ Moves To Dismiss Mayor Eric Adams (D- New York City , NY ) Case Amid Protest Resignations; Trump White House Didn't Realize Firings Included Nuke Stockpile Staff; Vice President Vance Railed On European Leaders In Munich; J.D. Vance Meets With Far-Right Party Leader Of Germany ; Associated Press Barred From Oval Office And Travelling With President Trump. Aired 10-11p ET
## 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Will There Be Political Fallout For J6 Pardons; Trump Calls For Full Release Of JFK, RFK, MLK Assassination Files. Four Israeli Female Hostages Returned To Israel As Part Of Ceasefire Deal. Aired 9-10a ET
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  All 67 People Involved In Plane-Helicopter Collision Killed; Trump Baselessly Links Diversity Initiatives To Collision; Figure Skating Community Mourns Members Killed In Crash. Aired 5:30-6a ET
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    White House Holds First Press Briefing Of Trump's Second Term. Aired 1:30-2p ET
## 172                                                                                                                                                                                                                                                                                                                                  White House Rescinds Controversial Federal Aid Freeze Memo; RFK Jr. Says He Is "Not Antivaccine" Despite Past Statements; RFK Jr. Grilled At Department Of Health Confirmation Hearing; Trump To Prepare Guantanamo To House 30,000 Migrants; Defense Secretary Hegseth Pulls Security Detail And Clearance For Trump Critic Gen. Mark Milley; Poor Test Scores Among U.S. Students Raise Concerns. Aired 5-6p ET
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             U.S. Stocks Fall as Trump's Tariff Package is About to Take Effect; American Among Three Hostages Set to be Freed From Gaza Tomorrow. Aired 3:30-4p ET
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Justice Official Resign In Protest Of Order To Drop Adams Case; 14 States Sue Over Elon Musk's Unconstitutional Authority. HHS Secretary RFK Jr. Wants To Be The One Who Reprograms Americans To Eat Differently; Clay Travis Gets Graphic With His Words. Aired 10-11p ET
## 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump to Sign Laken Riley Act Into Law; WH Says Federal Aid Freeze Still in Effect; Fed Leaves Interest Rates Steady, Despite Trump Demands. Aired 2-2:30p ET
## 176                                                                                                                                                                                                                             Trump Wants Dept. Of Education To Be "Closed Immediately"; Trump Speaks With Russia 's Putin & Ukraine 's Zelenskyy; Democrats Bash Musk In First DOGE Subcommittee Hearing; Rep. Jasmine Crockett, (D- TX ), Is Interviewed About DOGE Subcommittee Hearing, Elon Musk; Trump Plan To Slash USAID Could Cost U.S. Farmers Billions. White House Bars Associated Press Over "Gulf Of America"; CNN Speaks With The Attorneys Who Managed Prisoner Swap; U.S. Hit By Most Intense Flu Season In 15 Years. Aired 5-6p ET
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                    Court Rules U.S. Treasury Department Officials Affiliated with Department of Government Efficiency May Access Treasury Department Systems as Read Only; President Trump to Speak at National Prayer Breakfast; NTSB, FAA Investigators to Brief Lawmakers on Midair Collision. Aired 8-8:30a ET
## 178                                                                                                                                                         IDF Says Former Hostages Are Now At Israeli Military Base; Hegseth Confirmed As Defense Secretary After Tie-Breaking Vote; Advocate Groups Ordered To Stop Aiding Refugees Who Have Already Arrived In U.S. ; White House Requesting Help Form State And Local Governments To Enforce Immigration Law; Trump GOP Leaders Threaten Conditions On California Disaster Aid; Southern California Braces For Rainfall Amid Wildfire Recovery; Four Former Israel Hostages Arrive At Hospital; Putin Claims " Ukraine 's Crisis" May Have Been Averted Had Trump Been President. Aired 7-8a E.T.
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Sabrina Singh is Interviewed about the Pentagon Shakeup; W. Kamau Bell is Interviewed about Performing at the Kennedy Center; SAG Awards Balance Jokes with Heaviness. Aired 9:30-10a ET
## 180                                                                                                                                                                                                                                                                                                                                                                                              Chaos, Confusion Erupts After Trump Halts Federal Money; Judge Temporarily Blocks Trump's Plans To Freeze Federal Aid; Trump Officials Issue Quotas To ICE Officers To Up Arrests; Oklahoma Official Supports Trump Agenda On Deportation Of Undocumented Migrants; Armed Man Arrested At The Capitol; RFK Jr. Slammed By Own Cousin. Aired 10-11p ET
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Jeffries On White House Funding Mess: "Round One Goes To Team America "; RFK Jr. Grilled; Migrants To Gitmo? Aired 7-8p ET
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Proposes U.S. Take Over Gaza To Be Riviera; Trump Not Ruling Out Sending Troops To Take Over Gaza; Speechless Democrats On Trump Wanting To Seize Gaza, Insane; CIA Offers Buyouts To Its Entire Workforce; Democrats Versus Elon Musk. Aired 10-11p ET
## 183                                                                                                                                                                                                                                                                                                                                                                                                                      Judge Blocks Trump from Putting Many USAID Workers on Leave Tonight; Trump Says, I Plan to Fire Some January 6 Investigators; Trump Says He is Revoking Biden's Security Clearance. Trump Says He Is Revoking Biden's Security Clearance; Eagles Standing In The Way Of Chiefs' Historic Super Bowl Three-Peat. Aired 6-7p ET
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump Administration Puts Dozens Of USAID Senior Officials On Paid Leave; White House Pauses All Federal Grants And Loans; Lawsuit: Electric Sparking Caught On Video Started Eaton Fire. Aired 7:30-8a ET
## 185                                                                                                                                                                                                                                                                                                                                                                                                                                                       Elon Musk Dominates Trump's First Cabinet Meeting; Musk Takes Financial Hit Amid Tesla Protests; Jeff Bezos Faces Backlash Over WAPO Changes; New battle emerges over fate of Medicaid; Supreme Court Takes on "Reverse Discrimination" Case; CNN Presents " America Asks." Aired 11p-12a ET
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Musk Prepares For Cabinet Meeting As Mass Firings Loom; Andrew Cuomo Readies Controversial Comeback; New Revelations In Idaho College Murders Case. Aired 11p-12a ET
## 187                                                                                                                                                                                                                                                                                                                                                                                         Trump Funding Freeze Remains in "Full Force" Despite Rescinding Memo; Kennedy Confirmation Prospects Unclear After Combative Hearing; FBI Director Nominee Kash Patel In The Hot Seat; Defense Secretary Revokes Security Detail And Clearance For Trump Critic General Mark Milley; American Volunteer Fighters Killed And MIA In Ukraine . Aired 8-9p ET
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Defending DOGE: Musk & Trump Questioned On Aggressive Overhaul; Trump Repeats Gaza Plan: "We're Going To Take It"; Marc Fogel Lands In U.S. After Trump Secures Release. Aired 9-10p ET
## 189                                                                                                                                                                                                                                                                                                                                                                                                                   Elon Musk Touts Government Firings by Wielding Chainsaw; Kash Patel Critics Warn of Purge as He Takes Over FBI; Ex-NFL Punter Arrested After Anti-MAGA Protest; Joe Rogan Dethroned as Fans Sound Off; Musk Eyes Major Change to "X" Platform; U.S. -Canada Tensions Spill Onto the Ice for Final Grudge Match. Aired 11p-12a ET
## 190                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Says Musk Head Of DOGE, White House Says He's Not; Trump Dodges On Musk Decisions, Firings And Resignations; Steve Bannon Says, Elon Musk Is Parasitic Illegal Immigrant; MAGA Universe Says SNL Skit Reviled Them; Michigan Judge Sentences Shoplifters To Wash Cars For Free In A Walmart Parking Lot. Aired 10-11p ET
## 191                                                                                                                                                                                                                                                                                          Interview With Former U.K. Ambassador To The U.N. Sir John Sawers; Interview With Former U.S. State Department Official Josh Paul; Interview With The Head Of The Palestinian Mission To The U.K. Husam Zomlot; Interview With "Hard Truths" Director Mike Leigh; Interview With "Hard Truths" Actress Marianne Jean-Baptiste; How Rev. Jerry Falwell Targeted Abortion Rights; Dozens Of Families Still Waiting For Hostages To Return. Aired 11a-12p ET
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Hits Top Trading Partners Canada, Mexico , China With Tariffs; Secretary Duffy: We Are Going To "Surge" Air Traffic Controllers; NBA Trade Stunner: Doncic To Lakers And Davis To Mavericks. Aired 7:30-8a ET
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Rep. Ryan Zinke (R- MT ) Speaks With CNN Following Protests Outside Office; CEO Warns Aluminum Tariffs Could Cost 100,000 American Jobs; Sen. Tim Kaine (D- VA ) On Senate Vote To End President Trump's National Energy Emergency. Aired 7:30-8a ET
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interview With Rep. Laura Gillen (D- NY ); Interview With Rep. Riley Moore (R- WV ); Interview With Sen. Amy Klobuchar (D- MN ); Interview With White House Border Czar Tom Homan. Aired 9-10a ET
## 195                                                                                                                                                                                                                                                                                                                                                                                 Treasury Sued Over Giving Musk's DOGE Access to Payment Data; Interview with Sen. Tammy Duckworth (D- IL ); Deconstruction Project; Senior FBI Leaders Ordered To Retire, Resign Or Be Fired; DOJ Orders FBI To Hand Over Names Of All Officials Who Worked On Jan. 6 Riot Cases By Tomorrow; Recovery Begins Of Plane Wreckage From Potomac River . Aired 8-9p ET
## 196 President Trump's New Tariffs Go Into Effect Tuesday; Canada Announces "Far-Reaching" Retaliatory Tariffs On American Goods; China Says It Will File Complaint With WTO Over Tariffs; Mexican President Announces Retaliatory Tariffs On U.S. ; 7 Dead, Including One On The Ground, After Medevac Jet Crashes In Philadelphia; NTSB Scrambles To Retain Employees After Trump's Resignation Offer; NTSB Data: Pilots Tried To Pull Passenger Jet's Nose Up Within Seconds Of Deadly D.C. Helicopter Collision. Trump Allies Push to Get RFK Jr. and Gabbard Confirmed; Health Information Related to Gender and Equity Removed from CDC Website; Grammy Awards to Benefit Wildfire Victims; Punxsutawney Phil Makes His Prediction. Aired 7-8a ET
## 197                                                                                                                                                                                                                                                                                                                                                                               Millions of Federal Workers Receive Email from Trump Administration with Option to Resign from Their Current Positions; Robert F. Kennedy Jr. to Testify at Senate Confirmation Hearing for His Health and Human Services Secretary Nomination; Advocacy Group Denounces ICE Raid at Philly Car Wash. Interview with Rep. Nydia Velazquez (D- NY ). Aired 8-8:30a ET
## 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CIA Sends Unclassified Email to White House Listing Names of New Hires; DOGE to Keep Limited Access to Treasury Payments System; Chiefs Chasing First-Ever Super Bowl Three-Peat. Aired 7-7:30a ET
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Passenger Jet's Black Boxes Recovered After Midair Tragedy; Trump Tariffs On Canada, Mexico , China Begin Tomorrow; U.S. Stocks Fall After Trump Tariff Announcement. Aired 2-2:30p ET
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Flight Data Appears To Show Helicopter Above Altitude, Off Course; U.S. Air Traffic Control System Under Scrutiny; More Than A Dozen January 6 Prosecutors Fired; More Victims Of Deadly Midair Collision Being Identified. Aired 6-7p ET
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Crowds Line Streets To Mourn Bibas Family Who Were Killed In Gaza; Fired Cybersecurity Official: Veterans' Sensitive Data At Risk; Supreme Court Hears Case On Reverse Discrimination; Gabbard: 100-Plus Intel Officers To Be Fired Over Explicit Work Chats. Aired 2:30-3p ET
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Multiple Meetings Over Russia and Ukraine Peace; Anne Applebaum is Interviewed about Government Cuts and Firings; Best Moments from "Saturday Night Live.". Aired 9:30-10a ET
## 203                                                                                                                                                                                                                                                                                    Interview With Former U.S. Ambassador To The Czech Republic Norm Eisen; Interview With Princeton Professor And Autocracy Expert Kim Lane Scheppele; Interview With Forward Thinking Co-Founder And Director Oliver McTernan; North Korean Troops Embrace Near-Suicidal Tactics In Battle; Officials Give Update On Pennsylvania Medevac Jet Crash; 80 Years Since Liberation Of Auschwitz; Broad Play Hilariously Tackles Age Of Disagreement. Aired 11a-12p ET
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Right-Wing Commentator Named FBI Deputy Director; Pope In Critical Condition; Health Agencies Reel From Thousands Of Job Cuts While Critical Research Grants Remain On Hold. Aired 7:30-8a ET
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                            HHS Secretary RFK Jr. Calls Measles Outbreak "Not Usual"; Protesters Flood Republican Town Halls Over Job Cuts; Actor Gene Hackman Found Dead Alongside Wife In New Mexico Home; Supreme court Signals It Will Make It Easier For Americans To File "Reverse" Discrimination Lawsuits. Aired 6:30-7a ET
## 206                                                                                                                                                                                                                                                                                                                                                                           Judge Halts Trump's Plan To Put USAID Workers On Leave; Sen. Chris Coons, (D- DE ), Is Interviewed About Trump's Plan To Put USAID Workers On Leave, Elon Musk, National Debt; Trump Says He's Directed Musk To Review "Just About Everything"; Oscar Turmoil: "Emelia Perez" Star Sparks Backlash. History At Stake: Chiefs Chase Unprecedented Three-Peat. Aired 9-10a
## 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Sen. Warren Grills RFK Jr. On Money From Vaccine Lawsuits: "Kids Might Die, But Robert Kennedy Can Keep Cashing In"; WH Backpedals On Chaotic Funding Freeze Hours After Announcing It; FAA: Passenger Jet Collided In Midair With Black Hawk Helicopter. Aired 9- 10p ET
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Recovery Crews Search Icy Waters For 67, All Presumed Dead; Inside Flight Simulator; Figure Skating Victims. Aired 7-8p ET
## 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NTSB: "Whole of Government Effort" to Investigate Midair Crash; NTSB: Flight Data Recorders Not Yet Recovered; NTSB: "Very Quick, Rapid Impact," No Passenger Slides Deployed. Aired 3-3:30p ET
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   New Video Show Moment Plane & Army Helicopter Collided; Multiple Investigations Into What Caused Collision That Killed 67; Figure Skating Community Mourns Victims Killed in D.C. Tragedy; FireAid Concerts Raise Millions For Fire Victims. Aired 9:30-10 am ET
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      hlead
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Sources: Trump May Invite Some Jan. 6 Rioters On White House; Trump , Republicans In Congress Defend Jan. 6 Pardons; Trump Dismantles Federal DEI Offices, Puts Staffers On Leave. Aired 12-12:30p ET Sources: Trump may invite some Jan. 6 rioters on White House; Trump, Republicans in Congress defend Jan. 6 pardons; Trump dismantles federal DEI offices, puts staffers on leave; Trump plans to eliminate jobs related to diversity and equity [12:00:00] DANA BASH, CNN HOST: Today on Inside Politics, get out of jail free. Sources tell CNN, President Trump is considering a White House visit for his supporters who stormed the Capitol and tried to derail the peaceful transfer of power on January 6, four years ago. We have the breaking details this hour. Plus, seismic shifts. The new president is moving feverishly to remake the federal government in his image. His latest power move revoking decades of diversity programs across the federal government and possibly firing the men and women who ran them. And quote, my party left me. The New York City mayor is slamming his fellow Democrats while cozying up to President Trump and his MAGA allies. Eric Adams was indicted for corruption. So, is this all part of winning a pardon?
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump Could Host Jan. 6 Rioters After Pardons; Trump's War On DEI; At Least Two Injured In Nashville School Shooting. Aired 2-2:30p ET Hundreds of Donald Trump supporters, including those convicted of assaulting police officers during the January 6, 2021, attack on the U.S. Capitol , were released from prison on Tuesday after the new president pardoned over 1,500 individuals, a move that drew widespread criticism from police groups, lawmakers, and a majority of Americans, though some supporters celebrated the decision, with reports suggesting Trump could host January 6 rioters following their pardons. The Trump administration on Wednesday escalated its campaign against diversity, equity, and inclusion (DEI) programs by urging government employees to report any hidden DEI initiatives within their departments, issuing a 10-day deadline for compliance, following a series of executive orders dismantling DEI programs, which drew widespread criticism from civil rights advocates, who warned the actions would reverse decades of progress in addressing systemic inequities and undermine efforts to promote equal opportunities in federal hiring and contracts. (COMMERCIAL BREAK) [14:00:44] BORIS SANCHEZ, CNN HOST: From the Big House to the White House. Sources telling CNN that President Trump is considering a White House visit for some of those who stormed the Capitol four years ago on January 6th. Plus, the Trump administration showing the door to government DEI staffers shutting down programs and initiatives and making good on a controversial campaign promise. ERICA HILL, CNN HOST: At a school shooting in Nashville. At least two students are wounded after that shooting which began in the cafeteria. We are following these major developing stories for you and many more all coming in right here to CNN News Central. SANCHEZ: We are grateful that you're sharing part of your afternoon with us I'm Boris Sanchez alongside Erica Hill in for Brianna Keilar today in Washington. Great to have you.
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Orders End Of Federal DEI Programs; Musk Casts Doubt On Trump's $500B AI Project; Trump Rebuffs Security Concerns Over Kids Using TikTok. Aired 6:30-7a ET A new escalation in President Trump's efforts to roll back diversity, equity and inclusion initiatives in the federal government. Elon Musk becoming a vocal critic of the president's new deal on AI investment, questioning whether it's valid. President Donald Trump continues to embrace TikTok. [06:30:30] KASIE HUNT, CNN HOST: All right. Welcome back. A new escalation in President Trump's efforts to roll back diversity, equity and inclusion initiatives in the federal government. (BEGIN VIDEO CLIP) DONALD TRUMP, PRESIDENT OF THE UNITED STATES : Our country is going to be based on merit again. (END VIDEO CLIP) HUNT: After ordering an end to all DEI initiatives across federal agencies, the administration is now warning workers, they have 10 days to report colleagues who are trying to conceal DEI programs.
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Immigration Crackdown; Trump May Invite January 6 Convicts to White House; Trump Targets DEI. Aired 1-1:30p ET All federal DEI staff are expected to be placed on paid leave by 5:00 p.m. today. Sources tell CNN that Trump administration officials have discussed inviting some pardoned January 6 convicts to the White House for a potential visit and meeting with the president. Thousands more active-duty troops are being ordered to the southern border just two days after President Trump mandated that the U.S. military step up its presence there. [13:00:15] ERICA HILL, CNN HOST: Donald Trump's war on DEI is on, the president slashing jobs that promoted diversity, equity, and inclusion in the federal government, as its crackdown on immigration ramps up, with a threat for any state or local official who refuses to get on board. BORIS SANCHEZ, CNN HOST: Plus: from prison to the White House. January 6 convicts could soon be hosted at the executive mansion, our latest reporting. And an unprecedented deep freeze, towns along the Gulf Coast paralyzed by a winter storm. And record-breaking snow in the Sunshine State?
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          President Trump Tackles Immigration Reform; Federal Employees Told To Report Efforts To Hide DEI Work; New York Jets Hire Aaron Glenn As New Head Coach. Aired 5:30-6a ET Today a federal judge in Seattle will hear arguments challenging President Donald Trump 's executive order looking to end birthright citizenship in the U.S. -- one of multiple lawsuits already brought forward by two dozen Democratic-led states and cities attempting to stop President Trump from enacting one of his signature immigration policies. Federal workers are being told you should report any work being done that looks like DEI in disguise or face "adverse consequences." After interviewing 16 different people for the team's head coaching vacancy, the New York Jets have made their hire -- Aaron Glenn, defensive coordinator for the Detroit Lions for the last four seasons and a former Jets defensive back. (COMMERCIAL) [05:30:45] KASIE HUNT, CNN ANCHOR: All right, it is 5:30 a.m. here on the East Coast. A live look at the Gateway Arch in St. Louis , Missouri on this Thursday morning. Good morning, everyone. I'm Kasie Hunt. It's wonderful to have you with us. This morning a federal judge in Seattle will hear arguments challenging President Donald Trump 's executive order looking to end birthright citizenship in the U.S. It is one of multiple lawsuits already brought forward by two dozen Democratic-led states and cities attempting to stop President Trump from enacting one of his signature immigration policies. It's a constitutional question that could end up before the U.S. Supreme Court . Among some of the other immigration changes the president has made sending thousands of additional active duty U.S. troops to the southern border.
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          President Trump Orders all Federal Diversity, Equity, and Inclusion Staff Placed on Leave; President Trump Criticizes Bishop for Statements During National Prayer Service on Inauguration; New Allegations against Pete Hegseth regarding Treatment of His Second Wife Surface; Pushback on Trump 's January 6 Pardons; Trump Administration Dismantles Federal DEI Offices, Puts Staffers on Leave. Aired 8-8:30a ET President Trump Orders all Federal Diversity, Equity, and Inclusion Staff Placed on Leave; President Trump Criticizes Bishop for Statements During National Prayer Service on Inauguration; New Allegations against Pete Hegseth regarding Treatment of His Second Wife Surface. This morning bipartisan pushback against Donald Trump pardoning January 6th defendants. This morning, there are new details in President Trump 's effort to gut the federal government of Diversity, Equity, and Inclusion programs. [08:00:00] JOHN E. HERBST, FORMER U.S. AMBASSADOR TO UKRAINE : -- includes giving up some territory, at least de facto, and at least a moratorium for 20 years on possibly creating membership in NATO. And they require compromise from Putin. And that includes Trump 's talked about arming Ukraine heavily once a deal is made to deter future Russian aggression, and he's talked about having a demilitarized zone between Russian and Ukrainian troops to be filled by European soldiers. Those two aspects require Putin to give up his aim of taking effective political control of Ukraine . The Russians have said they're willing to talk, they're willing to negotiate, but they've said they have not changed their objectives, and they haven't. Putin is going to try to pre-negotiate with Trump before sitting down to real negotiations the conditions he does not like. But Trump can't agree with that, because if he does, he's essentially giving Ukraine to Putin. And he doesn't want to do that. That would make Trump look like a very weak negotiator.
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Top General Ousted As Trump Admin. Wages "War On Woke"; Legal Challenges Over Anti-DEI Orders Get First Results; Judge Temporarily Blocks Certain Trump Anti-DEI Directives. Target Is Getting Hit From All Sides On DEI; On Set With Starts Of New Soap Opera Centered On Black Family; "Liberated Muse" Takes Stage At Kennedy Center Amid Trump Takeover. Aired 8-9a ET Target is facing backlash for its DEI pullback from customers, the heirs to one of its founders and civil rights activists. "Beyond the Gates," the first soap opera to debut in over 25 years and the first hour-long soap to center around a Black family. Various organizations filed a lawsuit against the Trump Administration on Wednesday in response to Executive Orders targeting DEI. The USDA has suspended the 1890 Scholars Program, which funds students at historically Black land-grant universities, HBCUs. Tanisha Hartwell- Paris, wife of Iraq veteran detained by ICE says husband was told he would not be deported. A parade celebrating Frederick Douglass is canceled after Maryland National Guard drops out following Trump administration anti-DEI orders. [08:00:47] VICTOR BLACKWELL, CNN ANCHOR: Well, first of all, nothing says Happy Black History Month like firing only the second black person to serve as the top general of the United States because you're over that whole diversity thing. Joint Chiefs Chairman Charles Q. Brown was fired on the same day he visited the southern border. Apparently, that was not enough to counter a crusade by Defense Secretary Pete Hegseth to rid the military of so-called WOKE leaders. In the announcement, President Trump did call General Brown an outstanding leader. So that's something. That tracks though, since Brown was first promoted to chief of the Air Force by Trump. But that was first term. Well, now DEI is being used as a cudgel to end everything from careers to federal funding. There is some pushback in the courts.
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Continuing to Blame DEI For Midair Collision; White House Holds Press Briefing; Midair Collision Investigation. Aired 1-1:30p ET Investigators try to piece together how an American Airlines jet and a military Black Hawk helicopter collided over the Potomac River . President Trump's claim that the midair collision over D.C. was caused by DEI policy is examined. The White House press secretary holds a press briefing. [13:00:57] BORIS SANCHEZ, CNN HOST: The FAA shutting down helicopter routes near Reagan National Airport indefinitely, as investigators try to pin down the cause of this midair collision. What we know about the Black Hawk's route and the victims being remembered. Meantime, President Donald Trump facing backlash over his response to the tragedy, first blaming it on DEI and Democrats without any evidence, and then criticized for his response to questions about whether he will visit the actual site. BRIANNA KEILAR, CNN HOST: And resign, retire, or get fired. New concerns growing about possible retaliation against senior FBI officials. We're following these major developing stories and many more all coming in right here to CNN NEWS CENTRAL.
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Talks Jan. 6 Pardons, Immigration, Biden in Oval Office Interview; Trump Targets Federal Workers Who Focus on DEI; Trump's Bid to End Birthright Citizenship Faces Legal Challenges; Fast-Spreading Hughes Fire Racing in Los Angeles County . Aired 9-9:30a ET President Donald Trump littered a Wednesday interview on Fox News with many of the same false claims he made earlier in his first three days back in the White House. Speaking with Fox News host and ardent supporter Sean Hannity in the Oval Office, Trump delivered familiar inaccurate assertions related to the 2020 and 2024 elections, immigration and the Capitol riot of January 6, 2021 -- plus a highly dubious new declaration that the assaults of police officers that day, some of them vicious, were "very minor incidents." Also Trump has suggested that it was a mistake for the former president, Joe Biden, to not pardon himself before leaving office. President Trump is targeting federal employees who focus on diversity, equity and inclusion and career policy staffers as he follows through on campaign promises to exert more control over the federal bureaucracy. A federal judge said Thursday that President Donald Trump's executive order ending birthright citizenship was "blatantly unconstitutional" and issued a temporary restraining order to block it. Firefighters are tackling a new brush fire -- dubbed the Sepulveda Fire -- near Interstate 405 and Sepulveda Blvd in Los Angeles. The fire sparked hours after fire crews started to achieve some containment on the Hughes Fire, which spread rapidly Wednesday afternoon in a Los Angeles County suburb. SARA SIDNER, CNN ANCHOR: Peak is going to cost you a bit more if you want to try to scale it. Nepal admits it will increase the permit fee to climb Mount Everest to 15,000 bucks during its busy season. Mountain climbing generates huge amounts of money for that country's economy. This is the first price hike in nearly a decade. [09:00:19] A new hour of CNN News Central starts right now.
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Impact Of Trump's Unsubstantiated Blame Of DEI For Crash; Trump DOJ Aims To Potentially Fire Thousands Of Jan. 6 Prosecutors; Rep. Byron Donalds, (R- FL ), Is Interviewed About Trump's Firing Of January 6 Prosecutors, Tariffs on Canada, Mexico , China; Tariffs On Canada, Mexico , China Now In Effect. Medevac Jet With Six People On Board Crashes In Philadelphia; Bill Maher: "Trump Is Cool Now." Aired 9-10a A trans member of the National Guard is speaking out after a wave of claims on social media falsely pointed to her as the pilot of the Black Hawk helicopter that collided with a passenger jet in Washington, Wednesday, killing 67 people. Jo Ellis, a UH60 Black Hawk helicopter pilot for the Virginia Army National Guard, posted on Facebook Friday to dispel the rumors that had echoed President Donald Trump's unsubstantiated blaming of diversity initiatives for the fatal accident. President Trump's Department of Justice looking to potentially fire thousands of law enforcement officers who at any time worked on the January 6th or other Trump related investigations. Last night, more than a dozen January 6th prosecutors were already fired. President Donald Trump is now going to impose tariffs on Canada, Mexico and China. Medevac jet with six people on board crashes in Philadelphia. "The Wall Street Journal" noted, "Instead of taking a knee to call for social justice, NFL players are doing the Trump dance in the end zone at football games." (COMMERCIAL BREAK) [09:00:31] MICHAEL SMERCONISH, CNN ANCHOR: Air tragedy strikes again, this time very close to home. I'm Michael Smerconish here in Philadelphia. A medical jet carrying six people crashed into a Philly neighborhood, causing a massive explosion that affected nearby homes and vehicles. The small plane was carrying a pediatric patient and her mother, along with four crew members, a pilot, copilot, doctor and medic. At this time, authorities cannot confirm any survivors from the crash. We're awaiting a news conference, perhaps this hour from here in Philadelphia. As we get updates, we'll bring them to you. This all coming after the tragic Black Hawk and American Airlines collision that killed 67 people near Reagan National Airport on Wednesday night. A chilling collision above the Potomac upended after the consoler in chief pivoted and began playing the blame game and speculating while providing no evidence that diversity and hiring policies of prior administrations somehow caused this tragedy.
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Mandatory Evacuation Orders As New Fire Breaks Out Near L.A.; Trump Closes Federal DEI Offices, Puts Staffers On Leave; Elon Musk Slams Trump 's $500b A.I. Project; JP Morgan Chase CEO On Trump Tariffs: "Get Over It"; Rep. Veronica Escobar (D- TX ), Is Interviewed About White House In Talks For Jan. 6 Convicts To Meet With Trump . Aired 5-6p ET Thousands of Southern California residents were under evacuation orders Wednesday as fire crews battled the out-of-control Hughes Fire near the town of Castaic , a suburb in the foothills and mountains of northern Los Angeles County . Employees in any federal diversity, equity, inclusion and accessibility offices will be placed on paid administrative leave "effective immediately," according to a post from White House press secretary Karoline Leavitt. Slashing jobs in federal DEI positions is one move in a series of actions taken by the new administration, after Donald Trump promised to wage a war against such programs and take on the practice on day one. Elon Musk unleashed a shocking attack on a multi-billion venture that the President touted at the White House on his first full day in office, setting up a battle of billionaires in Trump 's orbit, the blast from Trump's new head of the Department of Government Efficiency came as Trump brought OpenAI cofounder Sam Altman to the White House along with Oracle CEO Larry Ellison and the head of SoftBank to tout massive A.I. investments in the U.S. that they said would total $500 billion. [17:00:00] JAKE TAPPER, CNN HOST: These DEI offices were given a deadline of 5:00 p.m. Eastern by President Trump after he signed an executive order banning DEI programs in the federal government, calling them, quote, "forced, illegal and immoral discrimination programs," unquote. Plus, yesterday on this show, we brought you news of Trump 's $500 billion AI announcement, which the president says will create up to 100,000 new jobs in the U.S. But now Elon Musk, the first buddy, is casting serious doubt on whether that's actually possible. Musk's latest comments plus what we're learning about Trump 's other major economic plans for tariffs and what products you could theoretically immediately start paying more for. Leading this hour, however, mandatory evacuations now underway as a new fire is quickly growing near Los Angeles. The Hughes fire. It's the first new wildfire since the deadly outbreak earlier this month and it is spreading at the rate of a football field burned every two to three seconds. Our teams are spread out covering this breaking news. Let's start with CNN's Veronica Miracle, who just arrived on the scene of the Hughes fire, which has already spread to 5,000 acres in just two hours, according to Cal Fire.
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Explosive New Fire In L.A. Area Could "Go Nuclear"; January 6 Leader Back At Capitol; Trump's DEI Purge; Trump Threatens Sanctions If Putin Doesn't End War In Ukraine . Aired 7-8p ET New fire now burning out of control in southern California , thousands evacuated, major highways closed. The founder of the Oath Keepers who tried to overturn the election back on Capitol Hill tonight; a victory lap after being freed by Trump. Federal employees who worked in DEI departments are out of their jobs as of 5:00 p.m. tonight. President Trump is striking a more critical tone with Putin; Russian state media is now fighting back. [19:00:34] ERIN BURNETT, CNN HOST: OUTFRONT next: The breaking news, inferno. This hour, a new fire now burning out of control in southern California . Thousands evacuated. Major highways closed. Look at that ridge of fire. Winds now picking up. Flames are pushing closer and closer to homes. Live on the ground from devastated Los Angeles facing again a massive fire. And no regrets. The founder of the Oath Keepers, who tried to overturn the election back on Capitol Hill tonight. A victory lap after being freed by Trump. Moments ago telling CNN he would do it all over again.
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Fires Chairman Of The Joint Chiefs Of Staff; Judge Blocks Trump's Order Targeting DEI Programs; Supreme Court Says, Watchdog Fired By Trump Can Stay on Job; Maine Governor Takes A Stand Against Trump's Policy On Transgender Athletes; Actor George Clooney Explains Why Donald Trump Won And Why Joe Biden Clung To Hope That He Could Win. Aired 10-11p ET Trump fires top U.S. general after Hegseth called him woke. Trump fires top U.S. general in Pentagon purge. Trump fires Joint Chiefs chairman and other leaders in shakeup. Cracks emerge in Trump's GOP armor as chaos and cuts intensify. Republicans facing angry voters over prices, firings. Markets suffer worst day of year over inflation fears. President Trump tells Maine governor to comply with his policies or federal funding will not be provided. It was not made clear that the former president was hiding his incapacities. [22:00:00] (BEGIN VIDEO CLIP) ABBY PHILLIP, CNN HOST (voice over): Tonight, were Donald Trump's eyes bigger than America 's appetite for change? Polls warned the president that voters think he's doing much too much as the courts tell Trump no. Plus, snafu, the president fires the chairman of the Joint Chiefs months after his Pentagon chief -- PETE HEGSETH, SECRETARY OF DEFENSE: Yes, you got to fire the chairman of the Joint Chiefs.
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Elon Musk Dismantling Government, White House Calls Him "Special" Employee; Trump Backs Down; E.L.F. Embracing DEI. Aired 7-8p ET Democrats are going to war with Elon Musk as he is trying to dismantle the federal government. President is Trump backing down twice in a day, now putting a hold on his tariffs on Mexico and Canada. So what changed? The CEO of a popular cosmetics company is going to come out, to talk about why he believes in diversity, why he is not caving to Trump like so many other companies have. [19:00:36] ERIN BURNETT, CNN HOST: OUTFRONT next: The breaking news, cease your purge. Democrats going to war with Elon Musk as he is trying to dismantle the federal government. Tonight, exclusive new details on the young men Musk has reportedly recruited to help him. Plus, Trump backing down twice in a day, now putting a hold on his tariffs on Mexico and Canada. So what changed? Were these always empty threats or not? And, embracing DEI. The CEO of a popular cosmetics company is going to come out, put his face to it to talk about why he believes in diversity, why he is not caving to Trump like so many other companies have.
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trump To Make First Major Speech To Global Business, Political Leaders; Trump Targets Federal Employees Involved With DEI Practices; President Trump Announces Withdrawal From World Health Organization. Aired 7:30-8a ET President Donald Trump is expected to address the World Economic Forum virtually later this morning, delivering his first major speech to global leaders and political leaders since returning to the White House. President Donald Trump is targeting federal employees who focus on diversity, equity and inclusion and career policy staffers as he follows through on campaign promises to exert more control over the federal bureaucracy. President Donald Trump announced Monday he is withdrawing the U.S. from the World Health Organization, in a significant move that drew criticism from public health experts on his first day back in the White House. (COMMERCIAL BREAK) [07:30:10] SARA SIDNER, CNN ANCHOR: Happening today, President Trump is going to Davos virtually though. He's expected to address the World Economic Forum later this morning delivering his first major speech to global leaders and political leaders since returning to the White House. His appearance at the conference comes as he threatens to unleash a wave of higher taxes on imports from America 's second-biggest trading partner, China. CNN's Vanessa Yurkevich is joining me now. He says he going to consider this 10 percent across-the-board tariff on all Chinese goods as early as February. We've also heard him say he's going to put tariffs on Mexico and Canada -- VANESSA YURKEVICH, CNN BUSINESS AND POLITICS CORRESPONDENT: Um-hum.
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pushback on Trump's January 6 Pardons; Trump Administration Dismantles Federal DEI Offices, Puts Staffers on Leave. Aired: 8-8:30a ET This morning bipartisan pushback against Donald Trump pardoning January 6th defendants. This morning, there are new details in President Trump's effort to gut the federal government of Diversity, Equity, and Inclusion programs. [08:00:00] DAVID CULVER, CNN CORRESPONDENT: So here what you make in an hour, as he puts it, is an entire day's work in Mexico . This is his third year on the Visa work program. He said the money that he makes here, he is able to support his family in Mexico as well, and help his mom and dad and brother and sister. And he said, that's what you need to do to survive. You can see all the workers now are gathering from all the different buildings, most of them all work at different sites, but they come together to eat and then sleep. And then they will be back at it on the fields in about 10, 11 hours from now. (END VIDEO TAPE)
## 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Happy Black History Month?; Trump Ramps Up Trend Of Blaming "DEI Hires" For Disasters; The True Intent Behind "DEI" That Its Critics Are Missing. Rep. Gregory Porter (D-IN), Is Interviewed About IN Gov. Leaves Funding For Martin Univ. Out Of Budget Proposal; Debate Over Boycott After Target Dropped Diversity Goals; First Complete Opera By A Black American Premieres After 130 Plus Years. Aired 8-9a ET There is no money in Gov. Mike Braun's state budget proposal for Martin University, a private university in Indianapolis and Indiana 's only predominantly Black institution, State Rep. Gregory Porter, said, "These are just racist moves by this administration, so it's not fair. We are part of this society and we should not continue to have the rug pulled from under us." Activists are calling for a nationwide boycott of Target stores following the company's decision to roll back its diversity, equity and inclusion initiatives. A monumental moment in music history is unfolding this season as a long- lost American masterpiece takes the stage for the first time in 138 years. A reporter asked White House Press Secretary Leavitt how President Donald Trump's administration was planning to celebrate Black History Month. President Donald Trump signed action to end radical and wasteful government DEI programs. Without evidence, Trump blamed air traffic controllers, helicopter pilots, and Democratic policies at federal agencies. President Trump's executive orders have impacted DEI programs, leading to the cancellation of a conference for HBCUs. [08:00:] VICTOR BLACKWELL, CNN ANCHOR: First of all, are we still doing Black History Month? I mean, I know the calendar says February, right? But in 2025, come on now. This is a legitimate question. (BEGIN VIDEOTAPE) UNIDENTIFIED FEMALE: Does the President plan to have a proclamation about Black History Month in his first term? Each of the four years of his term, he did so and called on those in government to have programming activities and celebrations. Is he going to do that this year? KAROLINE LEAVITT, WHITE HOUSE PRESS SECRETARY: Yes. The President looks forward to signing a proclamation celebrating Black History Month. I actually spoke with our great staff secretary. It's in the works of being approved, and it's going to be ready for the President's signature to signify the beginning of that tomorrow.
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    New Videos Show Moment Helicopter and Plane Collided; Trump Says He Will Meet With Some of the Victims' Family Members; Trump Makes Baseless Claims DEI Hiring May Have Caused Collision. Aired 7- 7:30a ET Multiple investigations into what caused collision that killed 67. Remembering 67 people killed in D.C. plane-helicopter collision. New York Times reports, helicopter may have been flying outside approved flight path. NTSB examining flight recorders recovered from American Airlines jet. New York Times reports, internal FAA report says air traffic control staffing during collision not normal for the time of day and volume of traffic. New York Times reports, helicopter may have been flying outside approved flight path. Sister of first officer says, he loved what he did. Father says my heart just stated like exploding out of my chest. Trump on if he'll visit crash site, you want me to go swimming? Trump baselessly blames Obama, Biden, Democrats for collision [07:00:00] KATE BOLDUAN, CNN ANCHOR: We have new details and new video with a new vantage point of the deadly collision between that Army helicopter and that American Eagle passenger jet. Also, The New York Times has new reporting from sources saying that Black Hawk's final location indicates it was not on an approved flight path. SARA SIDNER, CNN ANCHOR: A Harvard educated civil rights attorney with a bright future, a highly experienced pilot who adored his family and a service member remembered as one of the finest, just three of the 67 people whose lives were cut short. We remember the victims this morning. JOHN BERMAN, CNN ANCHOR: All right. New signs this morning that key Republican senators might be shaky on some of President Trump's cabinet picks. The revealing moments at the hearings where they might have lost some ground.
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump to Quickly Take Action on Immigration, Energy, DEI Policies; Hamas Releases Three Hostages, Celebrations in Tel Aviv; Trump Says We Have to Save TikTok at Victory Rally. Aired 4:30-5a ET Donald Trump to quickly take action on immigration, energy and DEI policies. Donald Trump says we have to save TikTok. [04:30:00] SABRINA RODRIGUEZ, NATIONAL POLITICAL REPORTER, THE WASHINGTON POST: But I think where the slippery slope for him is if a week from now what we are talking about is the part is that he did on January 6 and we're not talking about the executive orders or the first moves he's made on the economy and that he's made on immigration, that is a problem for Donald Trump and I think that will be a problem that that he will have to face with the public in those first days.
## 20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       With No Evidence, Trump Blame DEI For Deadly Midair Collision; 67 Presumed Dead In Midair Collision Over Potomac River ; Trump Baselessly Blames Democrats & Diversity For Plane Crash; Trump Baselessly Appears To Blame FAA "Diversity Push" For Collision; Plane's Fuselage Found In 3 Sections In Potomac River; American Airlines CEO Says Pilot Were "Experienced". Aired 12-12:30p ET With no evidence, Trump blame DEI for deadly midair collision; 67 presumed dead in midair collision over Potomac River; Trump baselessly blames Democrats & Diversity for plane crash; Trump baselessly appears to blame FAA "Diversity Push" for collision; Plane's fuselage found in 3 sections in Potomac River; American Airlines CEO says pilot were "Experienced" [12:00:00] PETE MUNTEAN, CNN AVIATION CORRESPONDENT: Sean Duffy is the transportation secretary. He spoke articulately. I will point out that I did not hear from NTSB Chair Jennifer Homendy, who was in the press room. That is really significant, especially during something like this. It is a huge tragedy, and I do not use that word lightly. PAMELA BROWN, CNN ANCHOR, NEWSROOM: It is a huge tragedy. We still don't have the answers. As our Kaitlan Collins asked him, President Trump, are you getting ahead of this investigation because we don't have those answers. And when he was pressed further about how he can blame DEI when he also can say in the same sentence. He doesn't know if it's the air traffic controllers fault raising questions about the helicopter pilot. He said, it's just common sense. But again, what we need to remember here are there are 67 families who are mourning because of this midair collision, who are looking for answers, who don't want politics. They want answers, and they are mourning the loss of their loved ones, and that is what we need to remember in this moment.
## 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thousands Of USAID Employees Given Just 15 Minutes To Vacate Workstations; Trump To Meet With British PM Keir Starmer At The White House; Meta Apologizes, Americans With Disabilities Warn Protections Are Vanishing In Trump's DEI Rollback; Fixes Glitch That Caused Violent Video Recommendations On Reels. Aired 9:30-10a ET U.S. Supreme Court Chief Justice John Roberts on Wednesday paused a federal judge's order requiring President Donald Trump's administration to pay foreign aid funds to contractors and grant recipients. Thousands of USAID workers who've been fired or placed on leave are being given a brief window to clear out their workspaces. The meeting comes as Trump has touted a potential deal to end the war between Russia and Ukraine . People with disabilities say President Trump's DEI purge is eroding health care, education and legal protections they've only won in recent decades. Meta is apologizing for a technical error after some users said they saw violent, graphic videos in their Instagram Reels feed. [09:30:00] SARA SIDNER, CNN ANCHOR: You can see the signs being held there. They were given 15 minutes within a designated one hour window to pack their things and get out. This is happening hours after the Supreme Court gave the Trump administration a temporary victory and granted an emergency request to pause $2 billion in court ordered payments to foreign aid contractors. CNN's Arlette Saenz is live in Washington D.C. outside of USAID headquarters. What are you hearing as people have to go in and get their belongings in 15 minutes time? ARLETTE SAENZ, CNN WHITE HOUSE CORRESPONDENT: Well, Sara, it's really been an emotional moment for many of the staffers who are coming here today to collect their belongings at USAID. We have seen several federal workers who were either fired or placed on administrative leave coming to collect their belongings.
## 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              All Federal DEI Staff Now Ordered On Leave After Deadline Passes; Crews Battling Rapidly Growing New Fire In Northern L.A. County; Rep. Mike Johnson (R- LA ) Announces New House Select Subcommittee To Continue Republicans' Investigation Of January 6; Musk Bashes $500 Billion A.I. Project Touted By Trump ; Crews Battling Rapidly Growing New Fire In Northern L.A. County. Aired 6-7p ET Trump takes first step toward closing federal diversity, equity and inclusion offices as staffers placed on paid leave. Now, 19,000 under new evacuation orders as L.A. fire explodes. New evacuation orders for L.A. County as first significant fire breaks out since fatal blazes. Thousands of U.S. troops ordered to border with Mexico . DOJ memo threatens officials who resist immigration crackdown. Just two days into the second Trump term, there's already a public rift between the president and Elon Musk. The latest on the new explosive wildfire in southern California , and if weather conditions right now will make it even worse. [18:00:00] WOLF BLITZER, CNN HOST: Happening now, breaking news, President Trump begins the process of wiping out diversity, equity, and inclusion programs across the federal government. All DEI staffers now ordered on administrative leave after the deadline passed just a little while ago. Also tonight, as more January 6 rioters go free, sources now say the Trump White House is in talks to host some of the pardoned convicts. This, as House Republicans are forming a new panel to reinvestigate the attack on the U.S. Capitol . I'll get reaction from former January 6th House select committee member Jamie Raskin. Plus, a very dangerous new outbreak in the Southern California wildfire disaster, residents are now under mandatory evacuation orders in northern Los Angeles County as crews battle the rapidly growing blaze. Welcome to our viewers here in the United States and around the world. I'm Wolf Blitzer. You're in The Situation Room.
## 23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              One Black Box Recovered from Potomac After Plane-Chopper Collision; Figure Skaters, Parents, Coaches Among the 67 Killed in Crash; Trump Baselessly Blames DEI Initiatives for Plane-Chopper Collision; 67 Believed Killed In D.C. Plane-Chopper Crash; Trump Baselessly Blames DEI Initiatives For Plane-Chopper Collision; Figure Skaters, Parents, Coaches Among The 67 Killed In Crash. Aired 8-9p ET A midair collision between an Army helicopter and a jetliner killed all 67 people aboard the two aircraft, officials said Thursday, as they scrutinized the actions of the military pilot in the country's deadliest aviation disaster in almost a quarter century. More than 40 people have been pulled from the icy waters of that river after last night's collision of that American Airlines flight and a U.S. Army Blackhawk helicopter. Donald Trump used the plane crash in Washington, D.C. to attack his political enemies, claiming Democrats were responsible for declining standards in air traffic control and that the disaster "could have been" caused by diversity, equity and inclusion, DEI, policies at the Federal Aviation Administration. Trump turned what might have been a sombre a press conference into a baseless rant against DEI, despite no evidence of a link with the crash at Ronald Reagan Washington National airport, which involved an American Airlines jet and a U.S. military helicopter. A crash between an American Airlines jet and an Army helicopter has killed teen figure skaters returning from a national meet with their mothers and coaches, as well as a group of union steamfitters from the Washington, D.C. area. A short time ago, we learned that one of the flight recorders aboard the American Airlines plane, known as a black box, has been recovered. According to US figure skating, athletes and coaches and family members returning home from a development camp in Wichita , Kansas , were aboard. Collins: He took a moment of silence for the victims and then almost immediately began blaming these diversity initiatives. MILES O'BRIEN, CNN AVIATION ANALYST: -- people to allow that statement to come into play. So, it's unfortunate in the context of a terrible tragedy relative to the tragedy these families face. I guess it's not as big a deal but it is a gut punch to those of us who are disabled and aviators. ERIN BURNETT, CNN HOST: Yes, and incredibly you're able to that personally. Miles, I appreciate talking to you and thank you very much. O'BRIEN: You're welcome, Erin.
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Admin Dismantles Federal DEI Offices, Puts Staffers on Leave; At Least Nine Dead as Once-in-a-Generation Storm Slams South; Prince Harry Settles Legal Claim Against The Sun Publisher. Aired 7- 7:30a ET White House orders all federal DEI staff be put on leave. White House dismantles federal DEI offices, legal challenges likely. Trump slams bishop who made plea for immigrants, LGBTQ community during national prayer service. Bishop who asked Trump to have mercy on immigrants, LGBTQ community, I wanted to speak on their behalf. Bishop asked Trump to have mercy on behalf of scared communities. Trump's DOJ removes senior career officials in major shake-up. DOJ sidelines top prosecutors, adds acting U.S. attorneys in D.C. and New York . Trump taps hardline conservative activist as acting U.S. attorney in D.C. Ed Martin was a Stop the Steal organizer, represented Jan. 6 rioters. New Orleans, Mobile and Pensacola see all-time record snowiest days. Unprecedented winter storm paralyzes Gulf Coast with heavy snow, ice. Rare winter storm blankets south, brings deadly conditions. Houston Police Department says, stay off the roads. Prince Harry's lawyer says, the time for accountability has arrived [07:00:00] JOHN BERMAN, CNN ANCHOR: Breaking overnight, taking aim at diversity, equity, and inclusion. The Trump administration announces sweeping layoffs to take effect today. KATE BOLDUAN, CNN ANCHOR: A once in a generation storm shattering snow records across the south and along the Gulf Coast. Just look at those pictures. Tens of millions of people remain under winter weather alerts still this morning. SARA SIDNER, CNN ANCHOR: And a potential big break in the investigation into high-profile home burglaries. Authorities making arrests that might be tied to the break in at the home of Cincinnati Bengals Quarterback Joe Burrow. I'm Sara Sidner with Kate Bolduan and John Berman. This is CNN News Central.
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  No Survivors in Midair Collision; President Trump Blames DEI For Midair Collision. Aired 1-1:30p ET An Army Black Hawk helicopter collides with an American Airlines passenger plane. President Trump blames DEI policies for a midair collision in D.C. on Wednesday. [13:00:38] ANNOUNCER: This is CNN breaking news. BRIANNA KEILAR, CNN HOST: Hello. I'm Brianna Keilar with Boris Sanchez in Washington. I am at Reagan National Airport. We are following the breaking news on the tragic mid-air collision between an American Airlines regional jet and a military Black Hawk helicopter over the Potomac River . All 64 people on board the passenger jet and the three service members who are on the chopper are believed to be dead. So far, at least 28 bodies have been pulled from the icy waters, and federal investigators are now examining the crash and are expected to hold a news conference here in the next hour, which we will be bringing to you. CNN has obtained video of the moment that the collision happened. And we want to warn you that it may be difficult to watch. You can actually see the helicopter, which was on a training mission, approaching from the left, and then a big flash of light when the two aircraft collide.
## 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Caroline Kennedy Accuses Cousin RFK Jr Of Being A "Predator" And Urges Senators To Reject His Nomination As HHS Secy; Patel's Personal Battles With Intel Community Shaped His Views Of FBI; WH: NJ Drones That Caused Hysteria Were "Not The Enemy"; Trump Calls China's DeepSeek A "Wake-Up Call" For U.S. Industries; Beauty Company Embraces DEI As Other Brands Ditch Programs. Aired 2:30-3p ET Caroline Kennedy has released a new video, warning Senators that her cousin, Robert F. Kennedy Jr, is a "predator," and it comes ahead of RFK Jr's confirmation hearings to be President Trump's Department of Health and Human Services secretary. Kash Patel is President Trump's pick to lead the FBI, but Patel's battles with the FBI, which he's poised to run, have defined his rise to political prominence. At the White House briefing, the Trump administration revealed the mysterious drones spotted over New Jersey and the Tri- State area in December were authorized by the FAA and were for research and various other reasons. Financial markets appear to be leveling off today after Chinese A.I. startup, DeepSeek, sent shockwaves through Wall Street and the tech world on Monday, with the A.I. model able to compete with U.S. A. I. systems at just a fraction of the cost. The surprise announcement by China of its stunning develop of its DeepSeek A.I. system got Donald Trump's attention, but he views it as a positive and calls it a "wake-up call" for American industry. Big brands like Amazon, Target, Walmart and McDonalds have recently changed or ended their DEI programs altogether, but e.l.f. Beauty, a popular cosmetics brand with Gen Z and Millennials, is embracing and vocally touting its diversity efforts. [14:30:00] ARLETTE SAENZ, CNN WHITE HOUSE CORRESPONDENT: The video is likely not just potentially an effort to try to get Republicans to vote no. But also make sure that Democrats stand united in opposition to Kennedy when he eventually comes up for a vote in the Senate. Now this video is coming on the eve of the first confirmation hearing for Kennedy. He will appear before the Senate Finance Committee tomorrow. And then a second hearing on Thursday before the committee that deals with health issues. And Kennedy is one of President Trump's most-vulnerable nominees at this time, at a moment when every vote will count up here on Capitol Hill, Republicans and Democrats alike if Trump is hoping to get him across the finish line.
## 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Minorities Face Burnt Of Trump's First Actions Back In Office; Former White House Diversity Chief Reacts To End Of DEI Programs; Trump Targets DEI, Civil Rights Rules In First Days Of 2nd Term. Newark Mayor Says Business Raided By ICE Agents, Multiple People Detained; Hostages Return To Israel For Treatment After Release By Hamas; CNN Kobe Bryant Documentary Series Premiers Tonight. Aired 8-9a ET Scenes of immigration authorities detaining migrants Thursday have rattled some residents in cities like Newark, Boston and New York City . Jury selection has begun for a former Georgia prosecutor accused of interfering with the investigation into the murder of an unarmed Black man. The women will receive a wide range of therapies, designed to address both their physical and emotional needs. President Trump issued an executive order terminating "illegal DEI and DEIA mandates, policies, programs, preferences, and activities in the Federal Government, under whatever name they appear. The executive order signals that private businesses and organizations could be investigated over their diversity policies. Agents believed to be from ICE who approached Chicago elementary school were actually from the Secret Service. (COMMERCIAL BREAK) [08:00:13] VICTOR BLACKWELL, CNN ANCHOR: First of all, it's been five days. Five days of the new Trump administration and already it's everything, everywhere, all at once. And that flood-the-zone approach is partly what frustrates the President's detractors. His supporters love it. The news is a lot right now. And I get it. It's hard to keep up with all the changes of the new Trump administration. But it's also hard to miss that so many of the changes directly impact minority groups in this country. To start with civil rights efforts at the Justice Department. All civil rights cases and investigations are now on hold. No new court files unless senior Trump officials approve. Same goes for police reform agreements with cities like Louisville and Minneapolis. Those are frozen.
## 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FAA Says, Six People On Board Plane That Crashes In Philadelphia; Private Medical Flight Crashes Near Philadelphia Mall; NTSB Says, All Three Bodies Recovered From Black Hawk Helicopter; CNN Follows The Midair Collision Of American Eagle 5342 And Army Helicopter; Trump Makes Baseless Claims That DEI Led To The Crash Near Reagan National Airport. Aired 10-11p ET Plane crashes in Philadelphia, explosion like a fireball. Medevac jet crashes near Philly mall, we've lost an aircraft. Mayor says, dwellings and vehicles also impacted by jet crash. FAA says, six people on board plane that crashes in Philadelphia. Flight data shows Black Hawk appears to veer off standard route. NTSB says, all three black boxes recovered from deadly crash. 41 bodies recovered as teams continue to search icy waters. The army helicopter appears to have been in the wrong place at the wrong time above 200 feet. President Trump said that the midair collision was caused by bad rules, regulations and other things by the Biden administration. [22:00:00] ABBY PHILLIP, CNN HOST: Good evening, I'm Abby Phillip, and we begin with breaking news tonight. Another plane has crashed in another American city, and this time it is Philadelphia. I want to reset what we know at this hour. We are told a twin engine medevac jet took off from a local airport en route to Missouri . That plane reached 1,600 feet after takeoff before plunging, 11,000 feet per minute. Six people were on board, including a child patient. Here is another look at the crash as it happened. You saw there the jet plummeting almost like a missile out of the sky before an explosion. It landed in a busy section of the city near a mall. It's unknown whether there are any casualties on the ground. Here, though, is how one witness described the scene.
## 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Both Black Boxes From Plane Recovered After Deadly Crash; Trump Blames DEI, Without Evidence, For Deadly Crash; Sen. Hassan Questions RFK Jr. On Past Autism Comments. Aired 9-10p ET Both black boxes from the plane recovered after the deadly crash. President Trump blames DEI, without evidence, for the deadly crash. Sen. Maggie Hassan (D- NH ) questions Robert F. Kennedy Jr., on past autism comments [20:59:00] KAITLAN COLLINS, CNN CHIEF WHITE HOUSE CORRESPONDENT, CNN HOST, THE SOURCE WITH KAITLAN COLLINS: And good evening. I'm Kaitlan Collins. And tonight, THE SOURCE is live on the scene, near the deadliest commercial airliner crash, in the United States , in 24 years. No one survived when an American Airlines flight, and a Black Hawk Army helicopter, collided here, almost exactly 24 hours ago. The aftermath has been nothing short of devastating, for the families of the 67 people, who were on board that plane, or inside that helicopter. So far, somewhere around 40 bodies have been pulled from the icy waters of the Potomac River . And sources familiar with the recovery efforts believe about 14 are still missing in the water, tonight. Four, I am told, are said to be accounted for, but they are pinned inside that plane still.
## 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    "Sesame Street" Legend Reacts To Purge Of DEI Initiatives; Venezuelan Trump Supporters Fight To Preserve Policy; States Fight Back With Thousands Of Federal Workers In Limbo; "Sesame Street" Legend Reacts To Pressure On PBS Over DEI; Man Pleads Guilty In Shooting Of U.S. Teen Ralph Yarl; Missouri Sues Starbucks Over Its Diversity Programs; Military Cuts Recruiting Efforts At Black Engineering Event. Aired 8-9a ET Missouri sued Starbucks this week, alleging the chain's push to hire and promote more people of color and women violated anti- discrimination laws and slowed down coffee orders. Andrew Lester pleaded guilty to second-degree assault charges against Ralph Yarl in a 10-minute Missouri court hearing. Sen. Lisa Murkowski introduced a bill Thursday that would keep the name Denali on North America's highest peak. The U.S. Army Recruiting Command announced that they will no longer recruit potential service members at the Black Engineer of the Year Awards. The Interior Department is firing more than 2,200 employees after a directive from the Office of Personnel Management. Former Biden Cabinet, Deb Haaland is running for governor in New Mexico . Some Venezuelan migrants with TPS could lose their ability to live and work in the U.S. PBS says it's shutting its diversity office to comply with President Trump's executive order. [08:00:00] VICTOR BLACKWELL, CNN ANCHOR: And their mission statement that I found online, we'll share that with you. Sesame street legend Maria, actress Sonia Manzano will be here to react. Also, I speak with a lawmaker in a city with a large Venezuelan population who Trump supported or supported Trump, I should say, for president. Now they're asking the president to reconsider a recent decision impacting thousands of migrants. AMARA WALKER, CNN ANCHOR: A lot going on. We'll be watching. BLACKWELL: Thank you very much. Let's start the show.
## 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Freed Women Hostages Handed Over To Israeli Forces; U.S. Freezes Almost All Foreign Aid Effective Immediately; Pete Hegseth Confirmed As U.S. Defense Chief In Tiebreaker Senate vote; White House Says Migrant Deportation Flights With Military Aircraft Have Begun. Buses Arrive Carrying Palestinian Prisoners in West Bank; Federal Agencies in the U.S. Told to Eliminate DEI Positions Within 60 Days; Trump Tours Disaster Areas in California and North California . Aired 6-7a ET Buses arrive carrying Palestinian prisoners in West Bank. Federal agencies in the U.S. told to eliminate DEI positions within 60 days. Trump tours disaster areas in California and North California . The four Israeli women hostages freed by Hamas as part of a Saturday swap are now in the custody of Israeli forces in Gaza. The U.S. State Department has frozen nearly all foreign assistance worldwide effective immediately days after President Donald Trump issued a sweeping executive order Monday to put a hold on such assistance for 90 days. The Senate confirmed Pete Hegseth as the nation's defense secretary in a dramatic late-night vote. The Trump administration has started flying immigrants who entered the U.S. illegally out of the country using military aircraft. [06:00:00] LTC. PETER LERNER, FORMER IDF INTERNATIONAL SPOKESPERSON: We did not ask for this war, but we have the tools and we are determined to bring back the hostages. And there are two ways to do that, basically, either through the negotiations or through military operations. We're at a stage today where negotiations are developing the return of hostages, not all according to the agreement, as I talked about just a few minutes ago. KIM BRUNHUBER, CNN ANCHOR: Right. LERNER: But we expect we will have to --
## 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               40 Bodies Recovered so Far from Crash, Black Box Found; Probe Intensifies in Deadliest U.S. Plane Crash in 24 Years; Trump Baselessly Blames Democrats, DEI for Deadly Plane Crash. Rescuers Scouring For More Debris; Nine Lives Lost From Fairfax County; President Trump Points His Finger to Democrats. Aired 10-11p ET Search and rescue teams are facing a strenuous task of finding more survivors, if not evidence that could lead to the possible answers as to what led to the crash in D.C. 's busiest airspace; Three students and six parents from Fairfax County were among the casualties from the collision between American Airlines and Black Hawk Wednesday evening; President Trump kicks his blame game by lashing at Democrats over the accident that killed many people. No survivors in D.C. plane crash, 67 believed killed. Source says, 14 victims still missing, others pinned inside plane. Another jet aborted landing day before crash due to chopper. Air traffic controller was working two positions at time of crash. NTSB says, crash was quick, rapid impact, 40 bodies recovered. Ex-NTSB official says, Black Hawk's altitude was nearly 200 feet off. Black boxes from plane recovered from Potomac River . Three students, six parents from school system killed in crash. [22:00:00] ABBY PHILLIP, CNN ANCHOR: Good evening, I'm Abby Philip in New York , and this is CNN's special live coverage of the nation's deadliest plane crash in nearly a quarter century. Tonight, wind, ice, and jet fuel and debris all hampering the search for the remains of the passengers aboard that American Airlines flight that collided with a military helicopter. Here is what we know at this hour. There are no survivors and the NTSB says 40 bodies so far have been recovered from the wreckage. One of the black boxes from that plane has now been found and recovered. The cause, though, is still a mystery. Whether it was human error or mechanical, a source tells us one air traffic controller was working two different tower positions at the time of the collision. The Army also says the instructor pilot on the Black Hawk had thousands of hours of experience, while the co-pilot had half that. As investigators dig for answers, the grief now is just unspeakable for so many communities affected by this crash. We are learning about young students aboard the U.S. figure skaters, two of them considered the future of the sport, along with their mothers. More on their lives coming up in this hour.
## 33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Threatens to Cut Off Funding for Sanctuary Cities; Trump's Immigration Plans Bring Refugee Programs to a Halt; Scientists Sound the Alarm After Trump Administration Halts NIH Meetings; Elon Musk Bashes Trump's $500 Billion A.I. Project; Trump Criticizes FEMA, Questions if Disaster Agency is Needed. Aired 8:30-9a ET President Donald Trump says he 'might have to' cut off funding for sanctuary cities amid immigration crackdown. Refugees who were slated to travel to the United States after a years- long and often cumbersome process have had their flights canceled, according to a State Department memo to resettlement partners obtained by CNN. The memo comes on the heels of President Donald Trump's executive order suspending refugee admissions and marks another example of the swift impact his actions are already having. The move stands to affect thousands of refugees who had flights already scheduled. The Trump administration has put a freeze on many federal health agency communications with the public through at least the end of the month. Shortly after President Donald Trump announced a new massive AI infrastructure investment from the White House, "First Buddy" Elon Musk tried to tear it down. "They don't actually have the money," Musk wrote on his social media platform X. "SoftBank has well under $10B secured. I have that on good authority." Trump on Wednesday criticized the Federal Emergency Management Agency and suggested he wants to have a discussion soon on its future, continuing his attack on the federal disaster response agency, which he and other GOP leaders have accused of being biased against Republicans. (BEGIN VIDEO CLIP) DONALD TRUMP (R), U.S. PRESIDENT: You know, California is a big example. SEAN HANNITY, FOX NEWS ANCHOR: Would you cut off their money? TRUMP: I might have to do that. Sometimes that's the only thing you can do. (END VIDEO CLIP) PRISCILLA ALVAREZ, CNN WHITE HOUSE REPORTER: Now, he made a similar threat during his first term, this could be detrimental to cities and states particularly in moments of natural disaster, see, California as an example of that as they have fought these fires. But this effort is already underway perhaps in other ways which is to say the Justice Department sending out a memo yesterday saying that they would threaten, or rather, the plans to crack down on immigration if state and local officials do not help in those plans, if they get in the way of those plans, they threaten to prosecute those state and local officials.
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Officials: No Survivors In Midair Collision; 67 Believed Dead; Recovery Effort Unfolds For 67 Victims Of Passenger Jet-Chopper Crash; Trump Lashes Out At DEI, Dems Amid Crash Recovery Effort; FBI Director Nominee Kash Patel Faces Confirmation Hearing. Aired 1:30-2p ET Officials say there are no survivors of the passenger plan and Army helicopter midair collision and that the 67 people onboard are believed dead. At Reagan National Airport, there is a recovery operation going on for the 67 victims Of the American Airlines passenger jet and a chopper crash at Reagan National Airport. This morning, President Trump blamed the passenger plane and helicopter accident, without citing any evidence, on diversity initiatives and lashed out at Democrats amid the recovery efforts. During his confirmation hearing today, FBI director nominee, Kash Patel, vowed to Senators there would be "no politicization at the bureau," but Democratic Senators confronted him with some of his own words, including his list of "corrupt actors from the Deep State" detailed in his book. [13:30:00] BORIS SANCHEZ, CNN HOST: We are anticipating a press briefing from the NTSB in the next hour or so. Plenty more news to come on this and other things also on CNN NEWS CENTRAL. This is an unbearable mission now facing the teams trying to recover bodies from the scene of the disaster. We're going to find out more in just moments. (COMMERCIAL BREAK) BRIANNA KEILAR, CNN HOST: Welcome back. I'm Brianna Keilar at Reagan National Airport, where there is a recovery operation going on right next to the runway the planes have just resumed taking off of. It -- it's really an eerie scene that this airport is operational.
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Recovery Effort Under Way In Deadly In-flight Collision; Without Evidence, Trump Blames DEI For Deadly Collision; Source Says One Air Traffic Controller Was Working Two Different Tower Positions At Time Of Collision. Aired 5-6:00p ET Sixty-seven people are presumed dead after a passenger plane on approach to Reagan National Airport near Washington, D.C. , collided Wednesday night with a U.S. Army helicopter midair, sending both aircraft into the Potomac River below, officials said. As of Thursday morning, 27 bodies had been recovered from the plane and one from the helicopter, according to Fire and EMS Chief John A. Donnelly. More had been recovered by the afternoon, a law enforcement source told CNN. There were 64 people on board the plane - which was flying from Wichita , Kansas and three soldiers in the Army helicopter, according to D.C. Mayor Muriel Bowser. Without evidence, President Donald Trump blames DEI hiring policies for the deadly collision. Source say that one air traffic controller was working two different tower positions at time of collision. [17:00:12] UNIDENTIFIED MALE: This is CNN Breaking News. JAKE TAPPER, CNN HOST: And welcome back to The Lead. I am Jake Tapper. We're going to start this hour with breaking news in what is the deadliest in flight collision in the United States . More than 23 years we're live at Ronald Reagan national airport just outside D.C. where this horrific tragedy took place. Not too far behind me is of course, the freezing Potomac River, which is now the crash investigation site after last night's incident between an American Airlines plane flying from Wichita , Kansas , and a U.S. Army Black Hawk helicopter. They collided last night. Not one of the 64 people on board the airplane nor the three U.S. soldiers on the helicopter survived. The focus right now is on from emergency officials find the victims and recover their bodies, their remains. So far, at least 28 remains, 28 bodies have been found as crews continue to search through the twisted metal in the frigid waters of the Potomac River behind me. Today, National Transportation Safety Board officials said they have not yet recovered the flight data recorders, noting that the investigation is going to, of course, take time.
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Approval Dips, Still Above Any Point in His First Term; Hamas Hands Bodies of Four Israeli Hostages to Red Cross; Trump Holds Event Marking Black History Month. Aired 3:30-4p ET President Donald Trump's approval dips but still above any point in his first term. Hamas hands bodies of four Israeli hostages to Red Cross. [15:30:00] BRIANNA KEILAR, CNN HOST: One month into President Trump's second term, and we have brand new CNN polling on what Americans think about his performance in office so far, and spoiler alert, the nation's still divided. BORIS SANCHEZ, CNN HOST: Shocking. The new poll shows a majority of Americans are worried about Trump's push to expand power though. CNN senior political analyst Mark Preston is here to help us break down the numbers. Mark, 52 percent say Trump has gone too far in using his presidential power. His approval rating is at 47 percent overall. What do these numbers tell you about this line from Trump and Republicans that he's carrying out the agenda that he was elected to? MARK PRESTON, CNN POLITICAL ANALYST: Well, a couple things. One is, we should state, he did win the election, there's no doubt about that, but he talked about this incredible mandate that was given to him by the American people. He did win the popular vote, and he did win the electoral vote college, however, he won it by very slim margins, and now we're starting to see a little bit of a slip.
## 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          U.S. Distances Itself from Ukraine as Trump Invites Putin; Reporter Barred from Oval Over Gulf of America Clash; FCC Opens Probe into Comcast to Root Out DEI Programs. Employee and Union Sources Say Mass Firings Have Begun at Federal Agencies; Pam Bondi Sues New York Over Sanctuary City Policies. Aired 10-11p ET Probationary employees are being fired at the Department of Education and the Small Business Administration and federal employees across the government are placed on administrative leave. Pope Francis is upset about the Trump administration's immigration policies. Trump says Putin will visit U.S. despite ongoing Ukraine war. Trump says, Putin call is start of Ukraine peace negotiations. Trump dodges whether Ukraine is equal voice in peace talks. Trump White House bars A.P. reporter for second day. A.P. says White House barred reporter over not using Gulf of America [22:00:00] (BEGIN VIDEO CLIP) ABBY PHILLIP, CNN ANCHOR (voice over): Tonight, while Donald Trump continues throwing people out of the country, an American foe gets welcomed in. DONALD TRUMP, U.S. PRESIDENT: In fact, we expect he'll come here and I'll go there. PHILLIP: Plus, inflation suddenly runs hot. And the man in charge declares it wasn't me. Also, do as we say or be left in the wake.
## 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CNN's Laura Coates Reports About the Tragedy on the Potomac ; Trump Blames DEI for Deadly Crash; CNN Remembers the Lives Lost on Flight 5432. Aired 11p-12a ET There are no survivors in plane-chopper crash and 67 are presumed dead, urgent investigation will be done after the deadliest U.S. airliner crash in 24 years, air traffic control audio details the moments before the deadly impact, and pilots reported near-misses with helicopters in DCA for three years. Without evidence, President Trump blames Democrats, DEI for deadly collision. CNN remembers figure skaters, coaches, students, and parents who are among the crash victims [23:00:00] MISHA MITROFANOV, TEAM USA PAIRS SKATER: We lost parents. They were like parents to the rink. Their students were like their kids. They devoted their lives to this sport. They absolutely loved this sport. And to lose them is like losing your parents. That's the best way to put it. They were unbelievable skaters, unbelievable coaches. And nothing but excellency was expected from them, and that's what they gave. ABBY PHILLIP, CNN ANCHOR AND SENIOR POLITICAL CORRESPONDENT: And you can watch more of our interview on the "NewsNight" page at cnn.com. Thank you very much for watching "NewsNight." CNN's coverage continues with Laura Coates right now.
## 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CNN Saturday Morning Table for Five. President Trump Blames Federal Government Diversity, Equity, and Inclusion Policies for Commercial Plane and Military Helicopter Midair Collision Near Washington D.C. ; Elon Musk's Possible Influence in Trump Administration Examined; Robert F. Kennedy Jr. and Tulsi Gabbard Face Tough Questions at Senate Confirmation Hearings for Their Nominations to Trump Administration; Paramount Settling Lawsuit with Donald Trump over Editing of Televised Interview with Kamala Harris; Senate Minority Leader Chuck Schumer Says Democrats Aroused after Trump Administration's Order of Freezing of Federal Grants and Loans Rescinded. Aired 10-11a ET President Trump blames federal government diversity, equity, and inclusion policies for the commercial plane and military helicopter midair collision near Washington D.C. Elon Musk's possible influence in the Trump administration is examined. Robert F. Kennedy Jr. and Tulsi Gabbard face tough questions at the Senate confirmation hearings for their nominations to the Trump administration. Paramount is settling a lawsuit with Donald Trump over the editing of a televised interview with Kamala Harris. Senate Minority Leader Chuck Schumer says Democrats are aroused after the Trump administration's order of the freezing of federal grants and loans is rescinded. (COMMERCIAL BREAK) (BEGIN VIDEO TAPE) [10:00:28] ABBY PHILLIP, CNN ANCHOR, INSIDE POLITICS SUNDAY: This morning, the crisis president. DONALD TRUMP, (R) U.S. PRESIDENT: The put a big push to put diversity into the FAA's Program. PHILLIP: Before investigations even begin, Donald Trump jumps to baseless conclusions with baseless claims and baseless blame. And his cabinet plays along. SEAN DUFFY, TRANSPORTATION SECRETARY: The president's leadership has been remarkable.
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Recovery Effort Unfolds For 67 Victims of Passenger Jet-Chopper Crash; Defense Secretary: "Mistake Was Made" During Routine Army Training Flight; Trump Lashes Out at DEI, Democrats Amid Crash Recovery Effort. Aired 2-2:30p ET Donald Trump used the Washington DC plane crash to attack his political enemies, claiming without evidence that Democrats' DEI policies had weakened air traffic control and "could have been" responsible for the disaster, turning a somber press conference into a baseless rant while gaining support from Transportation Secretary Sean Duffy, Defense Secretary Pete Hegseth, and Vice President JD Vance, who all echoed calls for hiring "the best and brightest," as Trump further asserted that Biden had scrapped "very powerful tests" for air traffic control, insisted standards were higher under his presidency, and defended his claims by saying, "It just could have been," adding, "Because I have common sense, OK, and unfortunately, a lot of people don't." Authorities are working around the clock to recover the 67 victims of the passenger jet and military helicopter crash over the Potomac River , notifying families as the investigation unfolds and revealing heartbreaking details, including the loss of 16-year-old figure skater Spencer Lane and two Russian world champion skaters, prompting grief across the U.S. figure skating community, while officials have also identified American Airlines crew member Ian Epstein and three soldiers aboard the helicopter among the deceased. Defense Secretary Pete Hegseth confirmed that the Black Hawk helicopter involved in Wednesday's collision over the Potomac River was on a routine training mission out of Davison Army Airfield in Virginia when a mistake occurred, prompting a Pentagon investigation into what happened, as he explained that the aircraft was conducting annual retraining night flights for a Continuity of Government mission, emphasizing the inherent risks of military operations, while the U.S. Army issued a statement Thursday confirming an ongoing investigation, with Army CID and top-tier aviation experts working to determine the cause, including a possible elevation issue mentioned by President Trump, as efforts continue to prevent such tragedies, and the names of the three fallen service members remain undisclosed. (COMMERCIAL BREAK) [14:00:49] BRIANNA KEILAR, CNN HOST: I am Brianna Keilar here at Reagan National Airport with Boris Sanchez in Washington. And we are tracking the latest breaking developments on the deadly midair collision between an American Airlines regional jet and an Army Black Hawk helicopter over the Potomac River. 67 people are presumed dead, all 64 on board that American Airlines passenger jet and the three service members who are on the chopper. One of the American Airlines pilots has been confirmed as a victim. His name is Samuel Lilley, who he was the 28-year-old first officer on the flight. And we've also learned that more bodies have been recovered from the icy waters today. CNN has obtained video of the moment that the collision happened. We do want to warn you, it is difficult to watch. You can see in it the helicopter which was on a training mission approaching from the left and then a big flash of light when it collides with the aircraft.
## 41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Musk And Mystery Team Intensify Dismantling Of Government; CIA Sent Names Of Recent Hires in Unclassified Email To White House; Nationwide Protests Against Trump And Musk Government Actions; "NewsNight" Panelists Discuss The Competency Of Trump Picks; Republicans Try To Figure Out Which Side of the Gaza Plan They're On. Aired 10-11p ET White House suggests Musk will police himself on conflicts of interest. Musk now targets health agencies, gets access to systems. DOJ lawyer hedges answers in court about Musk's actions. Republicans villainizing USAID after years of praising agency. Democrats defending some institutions that aren't popular. Democrats promise all-night session to oppose Trump nominee. ESPN host Ryan Clark questions Trump picks to work for his administration. House Speaker Mike Johnson says they have to back Israel 100 percent. [22:00:00] (BEGIN VIDEO CLIP) ABBY PHILLIP, CNN HOST (voice over): Tonight, judge, jury, and executioner. The White House says Elon Musk will police himself as he slices and dices his way through the federal bureaucracy. Plus, protests without a plan. Democrats run back the resistance playbook. But is there a better strategy for battling Trump? Also, expansion pact, Donald Trump revises the meaning of America first. And not sticking to sports, an ESPN host goes off on Donald Trump and the president's attacks on DEI.
## 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Tensions High Between Officers, Judges, Rioters Over Pardons; Trump Orders Thousands Of Troops To Southern Border; Trump Already Sued Over Threat To Birthright Citizenship; An Executive Order May Cause Thousands Of Federal Government Workers To Be Displaced; New Wildfire Burns Thousands Of Acres In Los Angeles. Aired 10-11p ET Sources, Trump considers inviting rioters to White House. Judge says, ending January 6th cases can't whitewash the blood. Federal judge rips pardons, calls January 6th rioters losers. Experts warn Trump's January 6th pardons may fuel extremism. Freed Oath Keepers founder visits GOP lawmakers on Capitol Hill. Ex- D.C. cop to freed Oath Keepers founder, go f*** yourself. DOJ threatens to prosecute local officials who resist raids. Trump admin tells legal providers to stop helping immigrants, An executive order causes well-trained folks to be on an administrative leave effective today. Another major wildfire in Los Angeles occurs, forcing evacuations and triggering fears about lost homes and lost lives. [22:00:00] (BEGIN VIDEO CLIP) ABBY PHILLIP, CNN HOST (voice over): Tonight, a White House reception for men and women who attacked democracy. The president considers rolling out the welcome mat for the January 6th criminals he pardoned. Plus, deployed to the border, Donald Trump gives troops marching orders while promising to punish officials who stand in the way of his immigration crackdown. Also, the West Wing pulls the plug on the diversity wing. The MAGA war on DEI hits government workers tonight. Live at the table, Geoff Duncan, Ashley Allison, Abel Maldonado, and Joe Borelli.
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Recovery And Investigation Underway In Deadly Aircraft Collision Over D.C. ; President Trump Talks Deadly Plane Crash, Tariffs; White House Still Claiming DEI Policies May Have Played Part In D.C. Plane Crash; NTSB Officials Give Update On Deadly D.C. Plane Crash. Aired 5-6p ET Investigators are seeking clues into this week's deadly midair collision this week, the deadliest aviation disaster in the U.S. almost a quarter century. President Donald Trump said Friday he would place 25 percent tariffs on imports from Canada and Mexico and 10 percent tariffs on goods from China effective Saturday. The White House on Friday continued to push President Trump's claim that DEI programs may have played a role in Wednesday's deadly midair collision between an American Airlines plane and an Army helicopter. [17:00:00] JAKE TAPPER, CNN HOST: Officials this afternoon said efforts to remove the pieces of the plane from the water should start no later than tomorrow. CNN's Pete Muntean has all of the latest details. (BEGIN VIDEOTAPE) PETE MUNTEAN, CNN AVIATION CORRESPONDENT (voice-over): It is the best view yet of the worst aviation disaster in decades. The Army Black Hawk helicopter flying down the Potomac River and directly into American Airlines Flight 5342. BRAD BOWMAN, FORMER COMMANDER, 12TH AVIATION BATTALION: That's 67 people losing their lives right there. I mean, that's hard to watch. This isn't a video game. MUNTEAN (voice-over): Brad Bowman was a company commander in the very same black Black Hawk unit and flew this flight path often.
## 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Dealt Double Down Blow Amid Effort To Gut U.S. Government; Musk Deputy Out; "Most Dangerous Nominee?"; Report: Russia Falls For Spoof Report On China's DeepSeek. Aired 7-8p ET President Trump blocked by the courts tonight; judges tonight hitting pause on Trump's buyout offer to 2 million federal workers. One of Musk's DOGE deputies is out, abruptly resigning after being confronted with his racist posts, according to "The Wall Street Journal". The Senate voting this hour on the man some are calling Trump's most dangerous nominee and author of Project 2025 now about to be in charge of all the money, the budget chief. Russian state TV stating as fact that China's DeepSeek A.I. chatbot, which has upended the A.I. world, is actually a Soviet roots. [19:00:33] ERIN BURNETT, CNN HOST: OUTFRONT next: Breaking news, Trump blocked by the courts tonight. Judges tonight hitting pause on Trump's buyout offer to 2 million federal workers. Trump facing major reality and legality checks on his agenda. Also breaking, one of Musk's DOGE deputies is out, abruptly resigning after being confronted with his racist posts, according to "The Wall Street Journal". Kara Swisher and Katie Drummond, two reporters known for covering Musk's extensively, are OUTFRONT tonight, together with their latest breaking reporting. And the Senate voting this hour on the man some are calling Trump's most dangerous nominee and author of Project 2025 now about to be in charge of all the money, the budget chief.
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Coleman Hughes is Interviewed about the Anti-DEI Push; Art delaCruz is Interviewed about Helping Wildfire Recovery Efforts; Pandas Make Public Debut in Washington. Aired 9:30-10a ET Coleman Hughes is interviewed about the battle over DEI; Art delaCruz is interviewed about being the CEO of the nonprofit group Team Rubicon, who is helping with wildfire recovery efforts. The Smithsonian welcomes two pandas in an exclusive public debut. (COMMERCIAL BREAK) [09:30:13] KATE BOLDUAN, CNN ANCHOR: All right, we're going to show you live pictures. This is from Joint Base Andrews. You see the president and the first lady leaving Marine One, heading towards Air Force One, where they'll be heading off to Asheville, North Carolina , and then, of course, southern California . Leaving the White House just before this, President Trump spoke to reporters. Let's play it.
## 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Medevac Plane Crashes in Philadelphia , Injuries on Ground Unclear; 6 On Board Crashed Medevac Jet in Philly, Including Child Patient; Trump Tries to Remake Government With No DEI; Coach Remembers Figure Skater Killed in DC Collision. Aired 12-1 am ET Seven people are dead, including one in a car on the ground, after a twin-engine medevac jet carrying a child patient and her mother crashed in a neighborhood in northeast Philadelphia Friday night. The six people on the plane were Mexican nationals. President Donald Trump signs an executive order limiting diversity, equity, and inclusion accessibility in federal contracting. 67 lives lost when the passenger jet and Black Hawk helicopter collided over Washington, D.C. More than a dozen figure skaters, their relatives and coaches, they were on board American Airlines Flight 5342 among them 13-year-old Jinna Han and her mother, Jin. Jinna was a member of the skating club of Boston. She'd been skating since she was just four years old, and her coaches say she was dedicated, disciplined, and a ray of sunshine. (COMMERCIAL BREAK) [00:01:17] LAURA COATES, CNN ANCHOR: Well, it's midnight on the East Coast. I'm Laura Coates and we are following breaking news in Philadelphia . Another aviation tragedy is playing out. A medevac jet crashed less than a minute after taking off from Northeast Philadelphia Airport . Ring doorbell camera footage shows what appears to be the final moments of the aircraft just after 6 p.m. Eastern. The plane in a nose dive before slamming into the ground. Within the last hour, the operator of the medevac confirmed six people were on board. Its mission, to help ferry a girl who had a medical procedure back home to Mexico . She'd been treated and the medevac company says that she was cleared to fly home. (BEGIN VIDEO CLIP)
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interview With Rep. Yassamin Ansari (D- AZ ); Interview With Sen. Tim Kaine (D- VA ); Interview With U.S. Transportation Secretary Sean Duffy. Aired 9-10a ET Senator Tim Kaine speaks out. U.S. Transportation Secretary Sean Duffy discusses the two air disasters this week. Congresswoman Yassamin Ansari and former Congresswoman Jaime Herrera Beutler discuss the hot political topics of the week. [09:00:39] (BEGIN VIDEOTAPE) JAKE TAPPER, CNN HOST (voice-over): Collision in the sky. Investigators come close to finding out what caused that deadly crash over the Potomac River . TODD INMAN, NTSB BOARD MEMBER: We need to improve safety. TAPPER: While President Trump vows big changes. DONALD TRUMP, PRESIDENT OF THE UNITED STATES : We didn't have our best. TAPPER: How safe are the skies?
## 48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sources: Trump Admin Moves To Begin Dismantling Dept. Of Education; Sources: Trump Admin. Drafting Executive Order To Start Process Of Eliminating Education Dept.; Trump's Actions Echo Project 2025 Despite His Previous Denials; Trump Signs Executive Orders At White House; Trump Signs Order Withdrawing U.S. From UN Human Rights Council. Aired 3-3:30p ET President Trump plans to dismantle the Department of Education. New CNN investigation finds that some of President Donald Trump's executive actions closely align with Project 2025, despite the President saying previously that he knew nothing about it. (COMMERCIAL BREAK) [15:01:54] BRIANNA KEILAR, CNN HOST: We have some new reporting that President Trump plans to dismantle the Department of Education. We'll show you what moves are already being made in the department and the potential impact that they could have on schools across the nation. Plus, Beijing punching back after President Trump imposes tariffs on Chinese imports. China hitting U.S. energy exports and blacklisting two American companies in particular. BORIS SANCHEZ, CNN HOST: And FBI employees fighting back, filing a class action lawsuit against the Department of Justice over possible efforts to purge the workforce. But some of that controversial information that DOJ was requesting may have already been turned over.
## 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               FAA Indefinitely Closes Helicopter Routes Near Reagan National Airport; Families, Friends Honor The 67 People Killed In DC Tragedy; Confirmation Of Some Of Trump's Controversial Picks In Question; Most U.S. Companies Say Diversity Is Good For Business. Aired 1:30-2p ET The FAA has indefinitely closed the helicopter route near Reagan National Airport following the collision between a Blackhawk helicopter and a passenger jet over the Potomac . New details about some of the victims of the devastating passenger jet and helicopter crash over the Potomac, including the servicemembers aboard the Blackhawk helicopter. Clashes between Senators and some of the most- controversial Trump nominees during their confirmation hearings yesterday, and Tulsi Gabbard, Kash Patel and Robert Kennedy Jr all faced hours of grilling, and two gave answers that could put their nominations at risk. As President Trump cracks down on DEI at the federal level, most companies remain committed to finding the value in recruiting employees from different races, genders, classes, religions and other backgrounds, saying it's good for business. [13:30:00] SHAWN PRUCHNICKI, FORMER ACCIDENT INVESTIGATOR: -- a routine basis. So there's nothing abnormal about the regional jet swinging around to use runway 33. Something that the NTSB, of course, is going to look into is the altitude of the helicopter. There may be a good reason why they we're higher than normal. We don't know what was going on in the cockpit of the helicopter. And we're going to need to listen to that CER to find out why that might have been. BORIS SANCHEZ, CNN HOST: Earlier today, a pilot speaking to CNN's Pam Brown said that he wished that the Blackhawk pilot could have had stronger communication with the air traffic controller.
## 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Fires Inspectors General From Over A Dozen Federal Agencies; Trump Suggests Plan For Gaza Is To "Clean Out The Whole Thing"; NIH Told It Can Continue Purchasing Supplies For Studies. Aired 7:30-8a ET President Donald Trump fired the inspectors general from more than a dozen federal agencies in a Friday night purge, according to a Trump administration official, paving the way for him to install his own picks for the independent watchdog roles. President Donald Trump indicated Saturday that he had spoken with the king of Jordan about potentially building housing and moving more than one million Palestinians from Gaza to neighboring countries, a remarkable proposal from a sitting U.S. president. After purchasing for research supplies at the National Institutes was put on hold last week by the Trump administration -- including supplies for their ongoing studies such as test tubes and feed for lab animals -- employees have now been told they can continue working with some current vendors. (COMMERCIAL BREAK) [07:31:27] JOHN BERMAN, CNN ANCHOR: This morning lawmakers from both parties want answers after President Trump fired inspectors general from more than a dozen federal agencies paving the way for him to put in his own people. Now, this appears to be a blatant disregard for the law, which requires the White House to give Congress 30 days' notice and provide "substantive rationale" for terminating any inspector general -- they didn't. CNN White House reporter Alayna Treene joins us now with the latest on this. What's the White House saying about the law, Alayna? ALAYNA TREENE, CNN WHITE HOUSE REPORTER: Well, right now they're kind of sidestepping questions on that. But I do just want to walk you through how this all happened.
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Sen. Tim Kaine (D- VA ) Discusses Plane-Chopper Midair Collion, Trump Lashing Out at DEI, Democrats; Soon: NTSB Press Conference On Deadly Plane Collision; New Details On Victims Aboard Aircraft; NTSB Gives Update On Investigation Into Deadly Midair Collision. Aired 2:30-3p ET Sen. Tim Kaine (D- VA ) discusses the passenger plane-chopper midair collision at Reagan National Airport, and President Trump lashing out about DEI, blaming it for the plane crash. Soon, a news conference from The National Transportation Safety Board will soon hold a news conference, updating the latest details the deadly midair passenger jet-chopper collision. CNN is learning more about the people aboard the aircraft involved in the midair collision, including the crew aboard the American Airlines plane. The National Transportation Safety Board holds a new conference on the passenger plane-helicopter midair collision, giving an update on the latest details of the investigation. (COMMERCIAL BREAK) [14:32:25] BORIS SANCHEZ, CNN HOST: We are tracking the latest breaking developments on the deadly midair collision between an American Airlines regional jet and an Army Black Hawk helicopter over the Potomac River . Senator Tim Kaine, from Virginia , says he's long worried about the congestion at and around Reagan National Airport. In fact, the Senator, last year, opposed a bill that Congress passed adding even more flights, warning that it would increase the chance of a significant incident. Senator Tim Kaine of Virginia joins us now live.
## 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump and MAGA Allies Celebrating Firings Despite Chaos, Loss; Sources Say, 50,000-Plus Pentagon Workers at Risk of Firing; Trump Marks Black History Month Amid His War on Diversity. President Trump Says He Should Not Be Blamed For New Warning Signs About the Economy; V.P. Vance Talks About Masculinity In An Interview. Aired 10-11p ET Markets were falling today after Walmart warned that inflation and tariffs could slow down sales for the year. V.P. Vance sends a message to young men for them not to think they are bad when they tell jokes, have beer with friends or when they are being competitive. MAGA allies begin criticizing firings when they hit backyards. Elon Musk celebrates firings by waving chainsaw. Thousands of IRS workers fired in emotional scenes across U.S. Trump marks Black History Month despite agencies erasing it [22:00:00] (BEGIN VIDEO CLIP) ABBY PHILLIP, CNN ANCHOR (voice over): Tonight, the right cheers on DOGE. JESSE WATTERS, FOX NEWS HOST: DOGE is a blessing from the heavens above. PHILLIP: Until Doge comes for them. WATTERS: We just need to be a little bit less callous. PHILLIP: Plus, red flashing lights on the fate of the economy. UNIDENTIFIED FEMALE: The Dow is down more than 600 points.
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                "Arab Americans For Trump" Changes Name Over Gaza Comments; NLRB Leader Ousted By Trump Speaks Out After Filing Lawsuit; Supervisors Withdraw Sade Robinson Memorial; NFL Removing "End Racism" From End Zones Ahead Of Trump Super Bowl Appearance. Aired 8-9a ET The president shocked the world earlier this week when he said the U.S. would take over Gaza. He is suggesting that more than 2 million Palestinians should be moved out of Gaza. His comments this week upset much of the Arab world. Israel 's Prime Minister Benjamin Netanyahu is showing support. The president's comments on Gaza add fuel to a volatile conflict and they contribute to an emotional moment for Arab Americans, especially those who voted for Trump over Joe Biden and Kamala Harris because of the war. The group Arab Americans for Trump changed their name to Arab Americans for Peace because of President Donald Trump's comments on Gaza. As President Trump attempts to reshape federal agencies, one leader removed from her post is fighting back now with a lawsuit. Gwynne Wilcox is the first sitting member of the National Labor Relations Board removed in its 90-year history. [08:00:00] VICTOR BLACKWELL, CNN HOST: To help the mother of a murdered teen raise money to set up a memorial at a park. But then racist e-mails started coming in. Sade Robinson's mother joins us on what the impact has been. AMARA WALKER, CNN ANCHOR: All right, interesting show. We'll be watching. BLACKWELL: Thanks.
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Administration Tells Agencies To Carry Out Widespread Layoffs; Vance To WSJ: Sending U.S. Troops To Ukraine Is "On The Table"; Jets Moving On From Rodgers. Aired 5:30-6a ET Scores of federal workers' jobs are on the chopping block as the Trump administration instructs federal agencies to move forward with layoffs -- with probationary workers who have been employed for less than a year or two taking the brunt of this hit. Vice President J.D. Vance told The Wall Street Journal that sending U.S. troops to Ukraine is a possibility if Moscow fails to negotiate in good faith to end the war in Ukraine , but added he thinks there will be a deal that "will shock a lot of people." The New York Jets officially announced on Thursday that they will be "moving forward without" quarterback Aaron Rodgers. (COMMERCIAL) [05:32:00] JIM SCIUTTO, CNN ANCHOR: Just after 5:30 a.m. on the East Coast. A live look there at the Capitol Hill. Good morning, everyone. I'm Jim Sciutto in this week for Kasie Hunt. It's great to have you with us. Scores of federal workers' jobs on the chopping block as the Trump administration instructs federal agencies to move forward with layoffs. Probationary workers who have been employed for less than a year or two taking the brunt of this hit. Officials targeting their positions because they have fewer job protections than other federal employees and are not able to appeal the decision. According to recent data there are more than 200,000 employees who fall into that category. Come of the agencies hit hardest this week, the Department of Education, the Consumer Financial Protection Bureau, the Department of Veterans Affairs, the Small Business Administration, and the Department of Energy.
## 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  President Trump's Allies Look To Clarify His Ideas For Gaza; Attorney General Pam Bondi Quickly Aligns DOJ With Trump Agenda; Bird Flu Cases Lead To Higher Egg Prices In U.S. ; Panama Denies U.S. State Department's Claim That U.S. Government Ships Can Use The Panama Canal For Free; FCC Releases Kamala Harris' "60 Minutes" Interview Transcript; Google Removing Hiring Goals Targeting Diversity. Aired 5- 5:30a ET As the world is now trying to work through President Trump's proposal for the U.S. to take over the Gaza Strip, his administration now rushing to clarify what he meant by those comments. New Attorney General Pam Bondi issued a flurry of directives targeting diversity efforts at both the Justice Department and within the private sector. Dairy cows in Nevada have tested positive for the latest strain of the bird flu; bird flu is already being blamed for the egg shortage in the U.S. Panama denies claims made by the U.S. State Department that U.S. government ships can go through the Panama Canal for free. The FCC released the full transcript of Kamala Harris's "60 Minutes" interview that aired in October. Google, the latest corporation to remove hiring goals tied to promoting diversity; it says they're evaluating other initiatives. [05:00:35] KASIE HUNT, CNN ANCHOR: It's Thursday, February 6th. Right now on CNN THIS MORNING: (BEGIN VIDEO CLIP) KAROLINE LEAVITT, WHITE HOUSE PRESS SECRETARY: Let me just take a step back here, because this is an out of the box idea. (END VIDEO CLIP) HUNT: Damage control. The president's team tries to walk back what he said, in his own words about a Gaza takeover.
## 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Tonight: Deadline For Federal Workers To Accept "Buyout" Offer; Musk's Team Expands Its Influence Throughout Government; Ex-Trump WH lawyer: "It's A Naked Power Grab....To Flood The Zone"; Democrats Target "Unelected, Unaccountable Billionaire" Elon Musk; Now: House GOP Leaders Meet With Trump At White House; Trump Plots Out Legislative Strategy With House GOP Leaders. Aired 12-12:30p ET Tonight: deadline for federal workers to accept "Buyout" offer; Musk's team expands its influence throughout government; Ex-Trump WH lawyer: "It's A Naked Power Grab....To Flood The Zone"; Democrats target "Unelected, Unaccountable Billionaire" Elon Musk; Now: House GOP leaders meet with Trump at White House; Trump plots out legislative strategy with House GOP leaders [12:00:00] (COMMERCIAL BREAK) DANA BASH, CNN HOST: Today and Inside Politics, dismantling Washington. That's Elon Musk's goal, as he now is trying carrots and sticks to push federal workers to quit. We've got new reporting on how Musk and his allies are inserting themselves into, what seems like every facet of the U.S. government. Plus, it's been easy to forget, but there is still a United States Congress and Republicans who do control it have massive legislation that they do want to get passed. So right now, House Republican leaders are at the White House to meet with the president and hash out their plan to cut taxes and spend more money at the border. And the White House's go to Supreme Court justice. We have new reporting on this as well. Clarence Thomas is the one swearing in so many Trump cabinet officials. Why? And is he actually trying to draw an exceptional amount of attention from the president? If so, it seems to be working.
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Federal DEI Staff Put on Leave; ICE to Use Common Sense with Migrant Arrests; John Sandweg is Interviewed about Deportations; Rare Storm Blankets South; DOJ Sidelines Workers. Aired 9-9:30a ET The White House has ordered that all federal DEI staff be put on leave. DHS says it trusts ICE to use common sense with migrant arrests. John Sandweg is interviewed about the ICE migrant arrests and deportations. A rare winter storm blankets the south and brings deadly conditions. The DOJ sidelines top prosecutors and adds acting U.S. attorneys in D.C. and New York . [09:00:00] JOHN BERMAN, CNN ANCHOR: Fueled by resurgent Santa Ana winds. Officials say the fire is not threatening structures at this time, and it is spreading fairly slowly. No mandatory evacuation orders are in effect. And new this morning, lawyers for actor and director Justin Baldoni have released footage from the set of "It Ends With Us" in an attempt to refute sexual harassment claims that actress Blake Lively made in a lawsuit. Lively is suing Baldoni, alleging harassment on set. Baldoni has denied all claims. (BEGIN VIDEO CLIP) JUSTIN BALDONI, ACTOR: Am I getting beard on your today?
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Flight Data Appears To Show Black Hawk Off Course And 100 Feet Above Maximum Allowed Altitude; Trump To Impose Tariffs On Mexico , Canada & China Tomorrow. Aired 4-5p ET There is new reporting today on the flight paths before the deadly collision that killed 67 people. How much does new surveillance video explain what went so tragically wrong? President Trump's new tariffs against Canada, Mexico and China are coming tomorrow. Will they have the desired effect? [16:00:07] BORIS SANCHEZ, CNN HOST: And this Sunday night at 7:00 p.m. Eastern, CNN's Anderson Cooper will examine the circumstances around this crash and other recent incidents in a new episode of the whole story with Anderson Cooper. So make sure to will examine the circumstances around this crash and other recent incidents in a new episode of "THE WHOLE STORY WITH ANDERSON COOPER". So make sure to tune in to CNN for that. We are also awaiting word from President Trump. That should come shortly. So a lot to stay tuned for. Don't go anywhere. "THE LEAD WITH JAKE TAPPER" starts right now.
## 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Major Changes Underway As Trump Works To Reshape Government; Sources: White House In Talks To Host Some Jan. 6 Convicts; DOJ Threatens To Prosecute Officials Who Resist Immigration Orders; JPMorgan Chase CEO On Trump Tariffs: "Get Over It"; PMorgan Chase CEO: Trump Tariff Threat May Be Negotiating Tool; Trump Tariffs Loom Over Chinese Factory In Mexico ; Chinese Firms Weigh Options As Trump Threatens New Tariffs. Aired 3-3:30p ET President Trump following up on a campaign promise, wasting no time targeting diversity, equity and inclusion programs, ordering all their offices and federal programs to be shut down. Jamie Dimon of JPMorgan Chase is dismissing concerns from businesses and governments that are nervous about President Trump's tariffs. (COMMERCIAL BREAK) [15:01:26] BORIS SANCHEZ, CNN HOST: President Trump following up on a campaign promise, wasting no time targeting diversity, equity and inclusion programs, ordering all their offices and federal programs to be shut down. Now, employees in those departments will be on paid leave starting today. ERICA HILL, CNN HOST: Plus, in a new memo, the Justice Department says state and local officials could be punished for resisting President Trump's immigration orders, what the DOJ is now threatening to do. And one of President Trump's closest allies bashing his newly announced $500 billion AI investment, but Elon Musk says the project's backers can't make it happen.
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump, U.K. Prime Minister Starmer To Meet At White House For Critical Talks On Ukraine ; RKF Jr. Downplays Texas Outbreak Amid Measles Death; Sen. Chris Coons (D- DE ) Discusses Speaker Johnson Vowing GOP Will Not Cut Medicaid. Aired 7:30-8a ET U.K. British Prime Minister Keir Starmer has reiterated his call for a U.S. security guarantee in Ukraine to deter Vladimir Putin from invading again as he prepares to meet President Donald Trump at the White House later today. In Donald Trump's first Cabinet meeting of his second term, Health Secretary Robert F. Kennedy Jr. downplayed the severity of a measles outbreak in South Texas that has already caused the first death attributed to the deadly virus in the U.S. since 2015. Senator Chris Coons (D- DE ) discusses House Speaker Mike Johnson's vow that Republicans will not make cuts to Medicaid, Medicare or Social Security as they work to pass -- and pay for -- President Donald Trump's sweeping legislative agenda. [07:30:00] KATE BOLDUAN, CNN ANCHOR: That is, of course, actor Gene Hackman in just one of his legendary tough guy roles. We continue to follow the breaking news this morning of his passing. The Sante Fe Sheriff's Office says that the Oscar winner, along with his wife and his dog, were all found dead inside their New Mexico home yesterday. No cause of death has been confirmed but deputies do say that right now foul play is not suspected. Hackman, who retired from acting over 20 years ago, was 95 years old -- Sara. SARA SIDNER, CNN ANCHOR: All right. Thank you, Kate.
## 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Signs Order Banning Trans Athletes From Women's Sports; Texas Governor On Trump's Border Crackdown; Fired Agents Sue, Accusing DOJ Of Violating Constitution; Bondi Sworn In As Attorney General Amid DOJ Turmoil; Trump Expected To Get Mar-a-Lago Classified Docs Returned. Aired 5-5:59p ET resident Donald Trump took executive action Wednesday to deliver on a political issue central to his 2024 campaign, banning transgender women from competing in women's sports. Governor Greg Abbott, (R), is on The Lead on Trump's border crackdown. Major shakeup happening in the federal government, specifically in the FBI, a day after the FBI provided some information, but not specific names of thousands of employees who worked on the January 6 cases in almost any capacity, a top Department of Justice official, Trump's former defense attorney Emil Bove , is now accusing FBI leadership of, quote, "insubordination." Several FBI agents and employees filed a case against Department of Justice for this action. U.S. Attorney General Pam Bondi was sworn in to lead the Justice Department on Wednesday, where the nation's newly minted top prosecutor is expected to spend her first days dealing with a firestorm of reassignments, lawsuits and resignations from senior law enforcement officials, despite early efforts to urge calm and head off any fears of politicization. Two sources are telling CNN that President Trump is expected to get declassified documents he had taken to Mar-a-Lago, he's going to get them back. (COMMERCIAL BREAK) [17:00:10] JAKE TAPPER, CNN HOST: Welcome to The Lead. I'm Jake Tapper. This hour, tens of millions of Americans fill prescriptions each year for opioid medications to deal with their pain. But a new type of pain medicine is about to hit the market that will create an alternative. Dr. Sanjay Gupta is here to answer your questions about it. Plus, the White House is trying to clear up exposure, explain, define whatever President Trump's comments that the U.S. will, quote, "take over Gaza" and potentially put U.S. troops on the ground there. Maybe? Backlash from the Arab world and from Democrats and from European allies has been swift. But are Republicans on Capitol Hill on board? How realistic is this proposal? How would it even work?
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Interview With Sen. Cory Booker (D- NJ ); Interview With U.S. Secretary of Homeland Security Kristi Noem. Aired 9-10a ET U.S. Secretary of Homeland Security Kristi Noem discusses the Trump administration's immigration crackdown. Senator Cory Booker discuss how Democrats can push back against the Trump administration and Elon Musk. [09:00:39] (BEGIN VIDEOTAPE) DANA BASH, CNN HOST (voice-over): Notorious outpost. The White House demands a ramp-up of deportations, including to here. KRISTI NOEM, U.S. HOMELAND SECURITY SECRETARY: Everybody, I'm down here at Guantanamo Bay . BASH: Inside the race to house 30,000 migrants on a remote U.S. base. Is Trump's plan safe, legal and potentially indefinite? Fresh back from her trip, Homeland Security Secretary Kristi Noem joins me next.
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sen. Peter Welch (D- VT ) is Interviewed about Kash Patel; Trump Links Diversity to Collision; Controversial Cabinet Picks Face Senators. Aired 6:30-7a ET Sen. Peter Welch (D- VT ) is interviewed about Kash Patel's confirmation hearing. President Trump baselessly links diversity initiatives to the midair collision. President Trump's controversial cabinet picks face senators on Capitol Hill. [06:30:00] BOBBIE SCHOLLEY, RETIRED NAVY DIVER: Equipment - communications equipment that might have been a factor in this investigation. So, all of those individual pieces of equipment and even the overall structure of the aircraft might be part of the investigation. So, the National Transportation Safety Board is going to really lead the way to what the divers are going to recover. But if they're going to want to recreate the aircraft, then they're going to have to bring back as much as possible, including small pieces that the divers might have to - to recover from the mud of the bottom of the Potomac. KASIE HUNT, CNN ANCHOR: All right, Bobbie Scholley, thank you very much for spending some time with us this morning. And again, a thanks to the teams that do this really, really difficult work. Appreciate it. All right, still ahead here on CNN THIS MORNING, another round of contentious confirmation hearings on Capitol Hill. Senator Peter Welch joins us live after he grilled President Trump's nominee to lead the FBI.
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Judge Pauses Trump's "Buyout" Offer to Federal Workers; EPA Environmental Justice Workers Could be Put on Leave; Emails Show Mush Associates Sought to Use Critical Treasury Payment System to Shut Down USAID Spending. Aired 2-2:30p ET A federal judge on Thursday extended the deadline for federal workers to accept the Trump administration's sweeping buyout offer- promising eight months of pay and benefits in exchange for resigning and freeing them to seek other jobs-until Monday, when the court will weigh the bid to block the offer, giving workers more time to consider the deal, which faces significant legal and logistical challenges. The Environmental Protection Agency (EPA) announced Thursday it placed 168 employees-primarily focused on addressing pollution in communities of color, low-income, and rural areas-on administrative leave with full pay as part of its implementation of President Trump's agenda to roll back diversity, equity, and inclusion (DEI) efforts, reversing the Biden administration's push for "environmental justice," while evaluating new organizational structures, leaving the future of the Office of Environmental Justice uncertain. Four days after Donald Trump's inauguration, Elon Musk's top lieutenants at the Treasury Department instructed its acting secretary, David Lebryk, to immediately halt all USAID payments using Treasury's sensitive payment processing system-an unusual request that sparked a legal debate, with Lebryk questioning its legality and suggesting the State Department handle the matter, only for a top Department of Government Efficiency (DOGE) official to warn Lebryk of potential legal risks, triggering a political firestorm and emergency court proceedings over Treasury's role in enforcing Trump's foreign aid freeze. (COMMERCIAL BREAK) [14:00:21] BRIANNA KEILAR, CNN HOST: A judge rules on the deadline and federal workers now have more time to decide if they want to accept a buyout and end their careers in the federal government. A decision with implications for them and for the services that many of us depend on every day. BORIS SANCHEZ, CNN HOST: Plus, an FBI team disbanded. Agents tasked with keeping our elections safe from foreign interference and threats find themselves reassigned. The latest drastic change that has experts wondering about how our national security could be impacted by President Trump's new administration. And a look at the immigration crisis at the ground level. CNN speaking to immigrants working at Florida farms legally in critical jobs about what should be done to keep America 's farms running. We're following these major developing stories and many more, all coming in right here to CNN News Central.
## 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Approval At 47 Percent, Higher Than Any Point In First Term; Americans Weigh In On Trump's First Month In Office; 62 Percent Say Trump Not Doing Enough To Bring Down Prices; Source: DOGE Firings Amount To "Indiscriminate Madness"; McConnell Announces He Won't Run For Reelection; Senate On Track To Confirm Patel As FBI Director This Afternoon; One Month In: Much Of Project 2025 Agenda May Be Still To Come. Aired 12-12:30p ET Trump approval at 47 percent, higher than any point in first term; Americans weigh in on Trump's first month in office; 62 percent say Trump not doing enough to bring down prices; Source: DOGE firings amount to "Indiscriminate Madness"; McConnell announces he won't run for reelection; Senate on track to confirm Patel as FBI director this afternoon; One month in: much of Project 2025 agenda may be still to come [12:00:00] DANA BASH, CNN HOST, INSIDE POLITICS: Today on Inside Politics, America turned upside down. It's been one month since Donald Trump's inauguration, and since then, we've seen a fire hose of executive orders, mass firings, not to mention what could be the start of reordering of global alliances. We have a brand-new CNN poll of what voters think so far. Plus, breaking news from Capitol Hill. Mitch McConnell, one of the Senate's most historic figures says, he will not run for reelection. And a day of mourning in Israel . Four bodies, including children murdered by Hamas are handed over as negotiations for a long-term cease fire continue. Israeli President Isaac Herzog will be my guest. I'm Dana Bash. Let's go behind the headlines at Inside Politics.
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        President Trump Defends Pardoning Violent January 6 Rioters; Evacuation Warning Just Issued As New Fire Erupts In L.A.; Trump Brushes Off Concerns Over China's Access To TikTok Data. Aired 5-5:30a ET President Trump is still defending his January 6th pardons as one, just released; far right leader returns to the Capitol. A new evacuation warning just issued in the L.A. neighborhood of Sherman Oaks because of a new fire there; people were seen leaving overnight as firefighters scrambled to try to put out those flames. President Donald Trump is brushing off concerns about TikTok and whether China has access to Americans' personal information. [05:00:34] KASIE HUNT, CNN ANCHOR: Its Thursday, January 23rd. Right now on CNN THIS MORNING: (BEGIN VIDEO CLIP) DONALD TRUMP, PRESIDENT OF THE UNITED STATES : They were treated like the worst criminals in history. They knew the election was rigged and they were protesting the vote. (END VIDEO CLIP) HUNT: Standing firm. The president still defending his January 6th pardons as one, just released. Far right leader returns to the Capitol.
## 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Soon: Trump Holds Event Marking Black History Month; Sources: Defense Secy. Could Soon Fire Top Generals, Admirals; Sen. Richard Blumenthal (D- CT ) Discusses About Hegseth's Firing of Generals; Sen. Blumenthal Urges Trump Admin. to Reverse Terminations at FAA; Zelensky Calls Meeting with U.S. Envoy Kellogg "Productive". Aired 3-3:30p ET President Trump hosting a Black History Month event at the White House, even as he reshapes and erases diversity efforts across the country, a move that is raising eyebrows. Secretary Hegseth said the U.S. would be investing in the military. (COMMERCIAL BREAK) [15:00:32] BRIANNA KEILAR, CNN HOST: This hour, President Trump hosting a Black History Month event at the White House, even as he reshapes and erases diversity efforts across the country, a move that is raising eyebrows. We'll talk about that. Plus, an about face, Secretary Hegseth said the U.S. would be investing in the military. Now he's looking for billions of dollars to cut as he threatens to fire top leaders at the Pentagon. BORIS SANCHEZ, CNN HOST: Plus, Kash Patel, President Trump's controversial pick to lead the FBI, confirmed after a narrow vote in the Senate. We're following these major developing stories and many more, all coming in right here to CNN NEWS CENTRAL.
## 68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Federal Judge Clears Way For More Mass Firing; Some Once- Hawkish Republicans Soften Stance On Ukraine ; Sen. Markwayne Mullin, (R- OK ), Is Interviewed About Ukraine , Kash Patel; Senate Confirms Kash Patel To Lead FBI In 51-49 Vote; 11-Year-Old Texas Girl Dies By Suicide After Classmate Said ICE Would Deport Her Parents, Family Says; WH Hosts Black History Month Reception Amid Crackdown On DEI; West Texas Measles Outbreak Hits 58 Cases. Aired 5-6p ET A federal judge cleared the way for the Trump administration to carry through with mass firings of probationary federal workers. Separately, Secretary of Defense Pete Hegseth could soon move to fire more than half a dozen generals and flag officers, while the Internal Revenue Service is expected to fire about 6,000 workers today, according to sources. As President Trump turns his back on Ukraine , a democracy and U.S. ally publicly denounces its leaders a dictator. Many were standing by the Ukrainian people and President Zelenskyy and push President Biden at the time to send more aid. They criticized Biden for not being aggressive enough, for not permitting Ukraine to attack Russia in Russia for holding back on certain key weaponry, and on and on. Senate confirms Kash Patel to lead the FBI in a 51-49 vote. A young girl's death by suicide is being investigated by school police after her mother says she was bullied by other students who hurled insults at her, claiming her family was in the U.S. illegally. (COMMERCIAL BREAK) [17:00:15] JAKE TAPPER, CNN HOST: Welcome to The Lead. I'm Jake Tapper. This hour, CNN exclusive, you're going to see right here on The Lead, an up close look at an Iranian drone brought onto American soil in an attempt to convince MAGA conservatives the need to get tough on Iran . We're going to have a live report ahead. Plus, mixed messages. President Trump moving forward with celebrating Black History Month. At the same time he continues his war against diversity programs. Can he really play both sides of the same coin? And leading this hour, intelligence officials appear to be walking a thin line as President Trump maintains his inaccurate claim that Ukraine started the war with Russia . We're going to start this hour with CNN's Kaitlan Collins at the White House.
## 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Sen. Bernie Sanders: U.S. Moving Toward Oligarchy; Officer Hodges: Rioters Attacked Me, They Don't Deserve A Pardon; Denver Mayor Says City Will Work With ICE On Deporting Criminals, But Won't Allow Arrests At Schools & Churches. Aired 9-10p ET Sen. Bernie Sanders (I- VT ): U.S. moving toward oligarchy. Daniel Hodges, D.C. Police officer assaulted in January 6th attack: Rioters attacked me, they don't deserve a pardon. Mayor Mike Johnston, (D) Denver , Colorado : City will work with ICE on deporting criminals, but won't allow arrests at schools & churches [21:00:00] (BEGIN VIDEOTAPE) CECILE RICHARDS, FORMER PRESIDENT OF PLANNED PARENTHOOD: And whatever needs doing. And the other thing she felt so strongly about and why she was in public service, she used to say why should you -- your life only be about you? And that really helps, especially at times like this, when you're facing a really tough diagnosis, and -- but it's important to me, and it's important to my kids, that they see me doing things in the world as long as I can. (END VIDEOTAPE) ANDERSON COOPER, CNN HOST, ANDERSON COOPER 360: Cecile Richards was 67-years-old.
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interview With Rep. Gerry Connolly (D- VA ); Elon Musk Dismantling Government Agencies; New Trump Tariffs. Aired 1-1:30p ET President Trump is set to announce new tariffs. Elon Musk continues to dismantle federal government agencies. Congressman Gerry Connolly speaks out. [13:00:34] BRIANNA KEILAR, CNN HOST: Breaking news. We are moments away now from what President Trump is touting as the big one. He is preparing to sign new executive orders in the Oval Office. He's hyping the event on TRUTH Social, writing: "Three great weeks, perhaps the best ever, but today is the big one, reciprocal tariffs." BORIS SANCHEZ, CNN HOST: Of course, matching other countries' tariffs on U.S. goods, dollar for dollar was one of Donald Trump's key campaign pledges. A lot is at stake here, not just economically, but geopolitically as well.
## 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Welcomes Japanese Prime Minister To White House; World Leaders Watching Trump's Early Moves Closely; Panama Says State Department Claim About Canal Fees Are "Based on A Falsehood"; Project 2025 Co-Author Starts Job As Trump's Budget Chief; New Time Cover Depicts Musk Sitting Behind President's Desk. Aired 12-12:30p ET Trump And Japanese Prime Minister Meeting In Oval Office; This Week: Trump Said Canada Should Become 51st State, U.S. Will "Take Over" Gaza And Will 'Take Back the Panama Canal'; Trump Enacting Parts Of Project 2025 In First Days In Office; DOGE Dodges Steady Stream Of Scandals [12:00:00] (COMMERCIAL BREAK) DANA BASH, CNN HOST, INSIDE POLITICS: Today, on "Inside Politics," global shock and awe. Donald Trump is hosting the second foreign leader this week at the White House as the world carefully watches his frenetic moves that could have serious implications far beyond the U.S. Plus, a tidal wave of lawsuits crash into the Trump-Musk plans to shrink the federal government. But can the scales of justice keep up with the onslaught of actions from the White House? And Charlie Chaplin once said, a day without laughter is a day wasted. I know, I could use a giggle, so Hollywood and Broadway Star Josh Gad will join us for our Friday pallet cleanser.
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump White House Stirs New Confusion As It Tries To Clarify Status Of Frozen Federal Funds; RFK Jr. Grilled On Vaccines & Abortion In Confirmation Hearing; Israel : Three Israeli And Five Thai Hostages To Be Released Thursday. Aired 4-5p ET The freeze on federal grants and loans is now rescinded after the Monday night memo confused so many Americans, including congressional Republicans; today, the White House reversed course. Robert F. Kennedy, Jr., who's been spreading lies about vaccines for decades, is pressed today on his reign of error; he is President Trump's nominee to run the Department of Health and Human Services. CNN learned today the names of three Israeli hostages due to be released by the terrorist group Hamas tomorrow. [16:00:02] LEROY CHIAO, NASA ASTRONAUT (RET.): And so I'm sure part of them is looking forward to maybe coming home a little early. But at the same time, they're consummate professionals and they're ready to stay up there and finish all the work. JESSICA DEAN, CNN HOST: We look forward to welcoming them back. BORIS SANCHEZ, CNN HOST: Yeah, I hope they didn't have to keep flipping their underwear inside and out. Laundry in space, I hope.
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump's Baselessly Links Diversity Initiatives to Collision; Rain Could Hamper Recovery Efforts in Icy Potomac River; Divers Battle Mud, Zero Visibility in Recovery Efforts. Aired 6-6:30a ET Donald Trump has baselessly implicated diversity programs in the deadly collision between a military helicopter and a passenger jet, despite recent cutbacks at the FAA and a ban on federal hiring initiated by his administration. The rain could hamper recovery today in the Potomac River . Divers are facing mud and zero visibility, in addition to frigid temperatures, during the recovery efforts at the crash outside Reagan National Airport. KASIE HUNT, CNN ANCHOR: It's Friday, January 31. Right now on CNN THIS MORNING. [05:59:54] (BEGIN VIDEO CLIP) UNIDENTIFIED MALE: We do not know enough facts to be able to rule in or out human factor, mechanical factors. (END VIDEO CLIP) HUNT: New details and new footage. The latest on the investigation into the worst U.S. air disaster in decades. Plus, new video, exclusive to CNN, showing the moment of the collision.
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Marc Fogel Visits The White House After Release From Russia ; Elon Musk Defends DOGE In The Oval Office; Kash Patel Accused Of Ordering FBI Firings Before Confirmation; U.S. Military Backs Out STEM Recruiting Conference; Sonya Massey's Family Settle For $10 Million. Aired 11p-12a ET American teacher Marc Fogel was greeted by President Donald Trump after being released from a prison in Russia . He thanked all those involved for his release and says he is forever indebted to President Trump. Elon Musk appeared with President Donald Trump in the Oval Office taking questions and to defend DOGE. Sen. Dick Durbin has accused Kash Patel, President Trump's FBI pick of covertly directing the firings inside the FBI before his confirmation. The U.S. military has backed out of recruiting at a STEM conference as part of the purge of DEI. Sec. Pete Hegseth says diversity is our strength is the dumbest phrase. The family of Sonya Massey's settled for $10 million after it was approved by the Sangamon County Board. Sonya Massey was killed by a deputy in her home. [23:00:00] LAURA COATES, CNN HOST AND SENIOR LEGAL ANALYST: We begin with that breaking news out of the White House and the remarkable release of an American teacher, Marc Fogel. This after more than three years in a Russian prison, he returned home tonight. Here you see him with President Trump at the White House just a few moments ago. It marks the end of a nightmare that started in August of 2021 when Fogel was arrested in Russia for possession of medical marijuana and then wrongfully detained. Listen to what he told President Trump inside the White House. (BEGIN VIDEO CLIP) MARC FOGEL, DETAINED IN RUSSIA : I feel like the luckiest man on Earth right now.
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump Delays TikTok Ban as He Looks for Options to Save It; Blue-collar Trump Voters Want Quick Proof Promises Will Be Kept; Trump Shares Letter From Biden Left in Resolute Desk With Fox News. Aired 12:30-1p ET Trump says he is open to Elon Musk or Larry Ellison buying TikTok, U.S. should get 50 percent of it; From Joe Biden to Donald Trump, Fox News just released the text of the handwritten letter the 46th president of the United States left in the Oval Office for the 47th. (COMMERCIAL BREAK) [12:30:40] DANA BASH, CNN CHIEF POLITICAL CORRESPONDENT AND ANCHOR OF 'INSIDE POLITICS': President Trump is promising to save TikTok and he's floating new ideas on how to do it. (BEGIN VIDEO CLIP) UNIDENTIFIED FEMALE: Are you open to Elon buying TikTok? DONALD TRUMP, (R) PRESIDENT OF THE UNITED STATES OF AMERICA : I would be if he wanted to buy it, yeah. UNIDENTIFIED FEMALE: And on your inauguration -- on your inauguration.--
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Marc Short is Interviewed about Tariffs, RFK Jr. and the FBI; Rep. Johnny Olszewski (D- MD ) is Interviewed about Dismantling the Education Department; Trump Hints of Purchase of TikTok. Aired 6:30-7a ET Marc Short is interviewed about Trump's tariffs, RFK Jr.'s nomination and the FBI deadline regarding January 6th. Rep. Johnny Olszewski (D- MD ) is interviewed about the Trump administration wanting to dismantle the Department of Education. President Trump hints the Sovereign Fund's first purchase may be TikTok. (COMMERCIAL BREAK) [06:33:34] (BEGIN VIDEO CLIP) STEPHEN COLBERT, HOST, "THE LATE SHOW WITH STEPHEN COLBERT": Tariffs could raise the price of tequila. Well, now what are Americans supposed to drink if they want to end an evening in jail? And where is the worm going to live? All right, I'm sorry, I forgot. I forgot. (END VIDEO CLIP)
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Makes Demands, Threats in First Message to World; Trump on Musk Criticizing A.I. Announcement, He Hates Altman; Two GOP Senators Will Vote Against Pentagon Pick Hegseth. Federal Judge Blocks Trump's Executive Order Targeting 14th Amendment. Aired 10-11p ET Trump argues that children born to immigrants who came to America illegally and legally don't deserve automatic citizenship. Trump gets blunt in message to global power players. Trump tells world that U.S. is back and open for business. Trump hits Biden in message to world, revolution begins. Trump asked about Elon Musk shading his A.I. announcement. Hegseth paid a woman $50,000 alleging sexual assault. GOP's Murkowski says, Hegseth lacks strength of character [22:00:00] (BEGIN VIDEO CLIP) ABBY PHILLIP, CNN ANCHOR (voice over): Tonight, threats, demands, and a Biden bash. President Trump's first message to global power players, we are the world. Plus, the Pentagon pick takes a big hit as new accusations emerge against Pete Hegseth. Also, just 48 hours after Donald Trump opened their jail doors, some Proud Boys are openly threatening police officers. And Trump versus the law, again. Why a judge emphatically halts 47's fight over the 14th Amendment.
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Won't Call Putin A "Dictator": I Don't Use World "Lightly"; Musk: "Failure To Respond A Second Time" Will Result In Firing; Ex-Official: NASA Never Got Offer From Musk To Help Astronauts. Aired 7-8p ET President Trump is coming to Putin's defense, refusing to call him a dictator as the Russian president tonight says, Trump's on the cusp of throwing Russia a vital lifeline. The federal government is now dismissing Elon Musk's ultimatum that employees explain what they're doing or risk termination. NASA versus Musk; the agency's top officials are claiming that the SpaceX CEO never offered to bring home the two U.S. astronauts stuck in space. [19:00:33] ERIN BURNETT, CNN HOST: OUTFRONT next: The breaking news. Trump coming to Putin's defense, refusing to call him a dictator as the Russian president tonight says, Trump's on the cusp of throwing Russia a vital lifeline. Plus, a major backtrack tonight. The federal government now dismissing Elon Musk's ultimatum that employees explain what they're doing or risk termination. So why the retreat now at literally the 11th hour? And then, NASA versus Musk. The agency's top officials claiming that the SpaceX CEO never offered to bring home the two U.S. astronauts stuck in space. Astrophysicist Neil deGrasse Tyson will be with us.
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       New Recovery Effort Under Way In Deadly In-Flight Collision; Controversial Trump Picks Face Questions On Past Comments. Aired 4-5p ET Coverage of the in-air collision of a passenger plane American Airlines and a Black Hawk helicopter of U.S. Army just outside D.C. ; recovery efforts are happening right now in the Potomac River as 67 families slowly get confirmation that their loved ones did indeed perish last night. Major developments on Capitol Hill today, of course, where three of President Trump's most controversial cabinet picks face tough questions in their confirmation hearings. REPORTER: Mr. President, you said that incompetence may have played a role. Are you aware of any performance issues or disciplinary actions that were taken against anyone who was working the tower last night, or flying the plane? [16:00:04] DONALD TRUMP, PRESIDENT OF THE UNITED STATES : No, no, and I hope that's not the case in this case. But certainly over the years, that's been the case, and it's the case with respect to close calls. And it's the case with respect to circling for hours on end. You know, planes circle a lot and they circle because the people bringing them down, these people that have to be very, very smart and its not based on anything other than the brain. We need the smartest people. We need both psychologically smart and just brilliant. Period. And we have them in our -- in our control towers. We're going to have -- we are going to have the most competent people in the country in our control towers, not people that are there for any other reason. (CROSSTALK)
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interview With Rep. Hakeem Jeffries (D- NY ); Interview With Special Envoy to the Middle East Steve Witkoff. Aired 9-10a ET House Minority Leader Hakeem Jeffries discusses criticism that Democrats are not doing enough to push back against the Trump administration. Special Envoy to the Middle East Steve Witkoff speaks out. The Trump administration continues to systematically remove independent inspectors general from the White House. [09:00:41] (BEGIN VIDEOTAPE) JAKE TAPPER, CNN HOST (voice-over): New world order. President Trump flips the script on America 's friends and foes at a moment of truth for Ukraine . DONALD TRUMP, PRESIDENT OF THE UNITED STATES : Very good talks with Putin, not such good talks with Ukraine . TAPPER: Has he already picked a side? TRUMP: We better be close to a deal.
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     White House Orders Freeze On All Federal Grants And Loans; Assistance Pause Could Impact School Breakfast & Lunch Programs; Justice Department Fires Officials Who Investigated Trump; Trump Picks His Criminal Defense Attorneys For Key DOJ Posts. Aired 12-12:30p ET White House orders freeze on all federal grants and loans; Assistance pause could impact school breakfast & lunch programs; Justice Department fires officials who investigated Trump; Trump picks his criminal defense attorneys for key DOJ posts [12:00:00] DANA BASH, CNN HOST: Today on Inside Politics, a unilateral upheaval. Donald Trump is making fast, furious and frenetic changes to the federal government. His latest move ordering the suspension of trillions of dollars in federal aid, loans and grants, which could impact millions of Americans. Plus, the Justice Department fires more than a dozen career attorneys who played key roles in prosecuting President Trump when he was out of office. It's just the latest example of Trump's effort to reshape the DOJ. And we have new CNN reporting on Kash Patel detailing his years long feuds with the intelligence community. He'll be expected to work alongside if confirmed as the next director of the FBI.
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump's Justice Department Halts Police Reform Agreements; Trump Signs New Executive Orders in Oval Office. Aired 3:30-4p ET Trump's Justice Department halts police reform agreements. Trump signs new executive orders in Oval Office. [15:30:00] ERICA HILL, CNN HOST: The new Trump Justice Department just putting a major freeze on its civil rights work. The acting Associate Attorney General directing government attorneys to pause any briefs, motions, filings, or new complaints for all cases in the Civil Rights Division. And that includes police reforms, which means the department has now halted all settlements and consent degrees for police departments where it found a pattern of misconduct. Among those, the Minneapolis force. This, of course, following investigation after the wake of George Floyd's death. And in Louisville, police reforms there, which came after a years-long investigation after Breonna Taylor was killed. Now, it's important to note it's not uncommon for a new administration to review pending litigation, but it's typically done on a case-by- case basis.
## 83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hamas Releases Israeli Hostages, Returns Remains Of Shiri Bibas; Pentagon Announces It Plans To Fire 5-8 Percent Of Civilian Workforce; U.S. Proposes Draft U.N. Resolution On War In Ukraine ; Federal Judge Gives Go-Ahead For Trump To Gut USAID. U.S. Federal Judge Clears the Way for Dismantling of USAID; Associated Press Sues Trump Administration After Being Blocked from White House Briefings; Pentagon Announces Plans to Fire 5-8 Percent of Civilian Workforce. Aired 6-7a ET U.S. federal judge clears the way for dismantling of USAID. Associated Press sues Trump administration after being blocked from White House briefings. Pentagon announces plans to fire 5-8 percent of civilian workforce. Hamas to release the last six live hostages whose freedom they agreed to under the current ceasefire deal. The Pentagon plans to fire 5,400 civilian employees next week as the largest federal agency seeks to eliminate 8 percent of its civilian workforce. 11 deaths reported in listeria outbreak linked with supplemental shakes. A federal judge on Friday cleared the way for the Trump administration to pull thousands of U.S. Agency for International Development staffers off the job. (COMMERCIAL BREAK) [06:00:28] VICTOR BLACKWELL, CNN ANCHOR: Good morning. Good morning. Welcome to CNN This Morning. It is Saturday, February 22nd. I'm Victor Blackwell. New this morning, Hamas is releasing the final six living hostages scheduled in the first phase of the cease fire deal. We're live in Tel Aviv with the latest, including what we're learning about the second phase of this deal. Plus, an unprecedented purge of senior military leadership. The country's top general, the chief of the navy, the vice chief of the air force, all fired by the Trump administration. Why? The president says they were let go. (BEGIN VIDEO CLIP)
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Interview With Connecticut Attorney General William Tong ; Musk and Trump Targeting Department of Education?; Trump's Trade War With China Begins; FBI Employees File Lawsuit Against DOJ. Aired 1-1:30p ET FBI employees file a class action lawsuit against the Department of Justice. President Trump's trade war with China kicks off. Will Elon Musk and Donald Trump target the Department of Education next? Connecticut Attorney General William Tong speaks out. [13:00:20] BORIS SANCHEZ, CNN HOST: Breaking news into CNN, FBI employees filing a class action lawsuit against the Department of Justice, this after Trump appointees at DOJ demanded the FBI leaders report all employees who worked on cases involving President Trump and January 6. So what happens next? Plus: Beijing strikes back. President Trump may have bought some more time when it comes to a trade war with Mexico and Canada, but China says it's on. How this could impact you. BRIANNA KEILAR, CNN HOST: And egg-treme sticker shot. Waffle House leaving its customers scrambling after it places a surcharge on every single egg that it sells. Why your omelets are costing more.
## 85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Zelenskyy Says, Talk With Top Trump Envoy Gives Hope; Sources Say, Hegseth Could Fire Top Generals and Admirals Soon; Gov. Kathy Hochul (D- NY ) Says She Won't Move to Oust Mayor Eric Adams (D- New York City , NY ). Sen. Mitch McConnell Announces He Won't Seek Re-Election; U.S. Senate Confirms Kash Patel For FBI Director; Hawaiian Volcano Spews Lava 400 Feet Into The Air. Aired 6-7p ET The long time Senate Republican Leader Mitch McConnell confirmed today he won't be seeking reelection. President Trump's very controversial pick for FBI director just won a very close vote to lead the agency's repeatedly attacked; Kash Patel clearing Senate confirmation today. An extremely active volcano in Hawaii is spewing lava up to 400 feet in the air; this is now the 10th time the Kilauea volcano has erupted in the last two months. Top Trump aide won't say who president thinks started Ukraine war. Trump's national security adviser says president is frustrated with Zelenskyy and needs appreciation. White House says, Trump to meet with French and U.K. leaders next week. Macron to tell Trump not to be weak in face of Putin during D.C. visit. CNN poll shows 47 percent approve, 52 percent disapprove of Trump's first month. CNN poll shows Trump approval tilts negative but better than first term. Sources say, Joint Chiefs chairman could be fired in coming days. Speaker Johnson says, no appetite for another Ukraine aid bill. U.S. judge rules Trump administration can continue mass firings of federal workers. Gov. Hochul to let New York City Mayor Adams remain in office but proposes new oversight and limits on his powers [18:00:00] WOLF BLITZER, CNN ANCHOR: Happening now, breaking news, Ukrainian President Volodymyr Zelenskyy says his talks with a top Trump envoy are giving him hope. That's in spite of the growing feud between Trump and Zelenskyy and the deep uncertainty over reaching a deal to end Russia 's bloody invasion. Also tonight, breaking news, a major shakeup at the Pentagon could be imminent. Sources now telling CNN Defense Secretary Pete Hegseth appears to be on the verge of firing top U.S. generals and admirals, including the chairman of the Joint Chiefs of Staff. And there's also breaking news out of New York City right now, New York Governor Kathy Hochul just announced she will not move to oust the city's Mayor Eric Adams, at least for now. We have details on her decision and the new limits on Adams' power she's now proposing.
## 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Baselessly Appears To Blame FAA "Diversity Push" For Collision; 67 Presumed Dead In Mid-Air Collision Over Potomac River ; Kash Patel, Tulsi Gabbard Face Confirmation Hearings; Sources: FBI Agents Association Officials Urged Patel To Protect Agents Who Investigated Jan. 6 Violent Crime. Aired 12:30-1p ET Donald Trump used the plane crash in Washington, D.C. to attack his political enemies, claiming Democrats were responsible for declining standards in air traffic control and that the disaster "could have been" caused by diversity, equity and inclusion, DEI, policies at the Federal Aviation Administration. Trump turned what might have been a sombre a press conference into a baseless rant against DEI, despite no evidence of a link with the crash at Ronald Reagan Washington National airport, which involved an American Airlines jet and a U.S. military helicopter. A mid-air collision between an Army helicopter and an American Airlines flight from Kansas killed all 67 people aboard the two aircraft, officials said Thursday, as they scrutinized the actions of the military pilot after the country's worst aviation disaster in a generation. At least 28 bodies, including all three soldiers who were on the helicopter, have been pulled from the icy waters of the Potomac River as recovery operations continue. Kash Patel, Tulsi Gabbard and others conclude confirmation hearings today. The confirmation hearings process involves Senate committees recommending nominees for full Senate approval. The FBI Agents Association officials met with FBI director nominee Kash Patel in recent weeks to raise those concerns, urging him to protect agents who did their work investigating violent crimes with oversight from judges, FBI supervisors and Justice Department lawyers, according to people briefed on the meeting. Patel listened but offered no reassurances. (COMMERCIAL BREAK) [12:32:19] DANA BASH, CNN ANCHOR: From a moment of silence to partisan finger- pointing without evidence to back that up, we heard Donald Trump waste no time turning a national tragedy that left 67 people dead into a time to take aim at diversity programs in the federal government. I want to bring in CNN's Rene Marsh who has been talking to your sources. Rene, nice to see you in the aviation world and specifically in the government about the President's remarks. What are you hearing? RENE MARSH, CNN CORRESPONDENT: Well, Dana, I will say I was watching the President's press conference live. And as I was watching, I received a couple of text messages. One notable one from a former crash investigator, plane crash investigator with decades of experience saying just simply, absolutely insane, irresponsible.
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Pauses Tariffs On Canada And Mexico For 30 Days; Netanyahu In Washington To Meet With President Trump; China Imposes Retaliatory Tariffs On U.S. Imports. Aired 5-5:30a ET The Trump administration is putting those massive tariffs on Mexico and Canada on hold after striking last-second deals. The Israeli prime minister is heading to the Oval Office as Israel and Hamas prepare to resume ceasefire negotiations. China announcing they'll retaliate after President Trump's tariffs go into effect. [05:00:36] KASIE HUNT, CNN ANCHOR: It's Tuesday, February 4th. Right now on CNN THIS MORNING: (BEGIN VIDEO CLIP) DONALD TRUMP, PRESIDENT OF THE UNITED STATES : If we don't keep winning and keep doing well, we won't be the pot of gold. And then tariffs won't be so good for us. (END VIDEO CLIP) HUNT: Trading tariffs. China announcing they'll retaliate after President Trump's tariffs go into effect.
## 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Mayor: Immigration Agents Raided NJ Business Without Warrant; Judge Blocks Trump's "Blatantly Unconstitutional" Executive Order; Trump Wants To Meet With Putin "As Soon As We Can" "Immediately". Aired 7-8p ET Trump's immigration raids now in effect; the mayor of Newark says that ICE agents just raided a business with no warrant. The executive order President Trump signed hours into his presidency that would have ended birthright citizenship in the United States is blocked by a federal judge. President Trump told reporters he would meet Vladimir Putin immediately, underlining his push to bring an end to the conflict in Ukraine . [19:00:32] ERIN BURNETT, CNN HOST: OUTFRONT next: The breaking news: Trump's immigration raids now in effect. The mayor of Newark says that ICE agents just raided a business with no warrant. The breaking details, what the mayor says is happening there in just a moment. Plus, the member of the European Parliament who told Trump to F off. Those are his words, not ours. Why did he use them? He wants to tell you. He's OUTFRONT. And he turned his father into the FBI for what he did on January 6th. Now his father is free. Have they reunited?
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ICE Says Hundreds of Illegal Immigrants Arrested in Recent Days; Powerful New Chinese AI Tech Shocks Experts, Disrupts Markets. Aired 3-3:30p ET President Trump expected to sign four new executive orders that would reshape the U.S. Armed Forces. Immigration crackdowns are in full swing across the country. A look at DeepSeek, the ultra-low-cost AI app that is sending some U.S. stocks plunging. (COMMERCIAL BREAK) [15:01:07] BRIANNA KEILAR, CNN HOST: Changes to the nation's military. President Trump expected to sign four new executive orders that would reshape the U.S. Armed Forces. Plus, immigration crackdowns are in full swing across the country. Nearly a thousand people were arrested on Sunday alone and the Texas National Guard is sending more reinforcements to the border. BORIS SANCHEZ, CNN HOST: Plus, what the tech? Why Chinese artificial intelligence startup DeepSeek is jolting Silicon Valley and Wall Street. We're following these major developing stories and many more all coming in right here to CNN NEWS CENTRAL. KEILAR: Hello, I'm Brianna Keilar alongside Boris Sanchez here in Washington. In just a couple hours from now, President Donald Trump is set to speak at the annual House Republican retreat from his Doral resort in Florida . And it comes as he's expected to bring sweeping changes to the U.S. military.
## 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Musk Rehires DOGE Aide Who Resigned Over Racist Posts; Trump Admits Musk's DOGE Getting Access to Sensitive Data; Trump Terminates Kennedy Center Board. A Federal Judge Blocks Trump Administration's Plan To Put All USAID Workers On Leave; Homeland Security Secretary Noem Checks Out Operations at Guantanamo Bay . Aired 10-11p ET Trump administration was preparing to close up shop at USAID's offices in Washington as they were taking down the sign on top of the door less than a week after the first comments about its closure. Trump administration ramps up expansion of Guantanamo Bay facility to turn it into a detention space for up to 30,000 undocumented migrants with criminal records. Vance, Trump back rehiring DOGE aide despite racist posts. DOGE employee was previously fired for leaking info. Trump says, nothing in government is off limits to Musk. Trump says he'll be chair of Kennedy Center Board [22:00:00] (BEGIN VIDEO CLIP) ABBY PHILLIP, CNN ANCHOR (voice over): Tonight, the world's most powerful man and the world's richest are together gutting the United States government. But is the spotlight big enough for them both? DONALD TRUMP, U.S. PRESIDENT: Elon is doing a great job. PHILLIP: Plus, a Doge employee with a history of racism gets the backing of the White House and a second chance. Also, Donald Trump fires the Kennedy Center board to become king of culture.
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump Expected to Reshape Military With New Executive Orders; Trump Expected to Sign Order Banning Transgender Service Members; Trump Admin Launches Immigration Crackdown in Chicago. Aired 2-2:30p ET President Donald Trump is expected to sign four executive orders reshaping the military by banning transgender service members, dismantling Diversity, Equity, and Inclusion programs, reinstating with back pay service members discharged for refusing COVID-19 vaccination, and introducing new military standards on gender pronouns, alongside other cultural changes led by newly sworn-in Defense Secretary Pete Hegseth. President Donald Trump is set to sign executive orders on Monday banning transgender individuals from enlisting in the military, reversing Biden-era policies, restricting transition-related medical care for service members and their families, and eliminating the use of gender-identity-based pronouns in favor of standards prioritizing readiness and lethality. The Trump administration launched a nationwide immigration enforcement blitz Sunday, focusing on Chicago, where federal agencies-including ICE, the FBI, and DEA-arrested nearly 1,000 individuals, marking a significant escalation in immigration crackdowns targeting public safety and national security threats. (COMMERCIAL BREAK) [14:00:56] BORIS SANCHEZ, CNN HOST: Another day, another round of executive orders. Any minute, President Trump is expected to sign several more that could reshape our nation's military and create America 's very own Iron Dome. Plus, immigration raids and arrests are striking fear in communities across the country, causing some people to call out of work to keep their kids home from school. But despite these increasing shows of force, officials in some communities say they haven't seen a significant increase in deportations. BRIANNA KEILAR, CNN HOST: And some people attend Super Bowl parties for the game, Boris. Others are just there for the food, Brianna. But how much will it cost you? We're following these stories and many more, all coming in right here to CNN News Central. SANCHEZ: Migrant communities face fear and uncertainty as federal agents carry out President Trump's long promised mass deportation plans. ICE says it's arrested nearly 1,000 people nationwide during immigration enforcement operations over the weekend that targeted cities from Los Angeles to Chicago to Atlanta. Sources tell CNN that ICE field offices have been told to meet a quota of 75 arrests per day as the new administration launches its crackdown. Border czar Tom Homan, however, denies that any such quotas exist.
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hegseth Arrives for First day as Defense Secretary; White House and Colombia Reach Deal; Immigration Crackdown Intensifying; Trump Fires Inspectors General. Aired 9-9:30a ET Pete Hegseth arrives for his first day on the job as Defense secretary. The Trump White House and Colombia reach a deportee deal after a tense tariff standoff. President Trump's immigration crackdown is intensifying as 956 arrests happened on Sunday. President Trump fires inspectors general from over a dozen federal agencies. [09:00:00] PETE HEGSETH, DEFENSE SECRETARY: Accountable. I know the chairman agrees with that. The lawful orders of the president of the United States will be executed inside this Defense Department swiftly and without excuse. We will be no better friend to our allies and no stronger adversary to those who want to test us and try us. So, Mr. Chairman, thanks for welcoming me today. UNIDENTIFIED MALE: You bet. My pleasure.
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Justice Department Fires Officials Who Investigated Trump; Trump Bars Transgender Americans from Military Service; Snow and Flood Concerns Move into Great Lakes Region. Aired 6-6:30a ET The Justice Department has fired the investigators who looked into charges against Donald Trump for obstruction of justice and illegal handling of classified documents. In a new executive order, Trump barred transgender people from military service. The Great Lakes region will see snow and have flooding concerns, while the South is warming up. KAYLA TAUSCHE, CNN ANCHOR: It's Tuesday, January 28. Right now on CNN THIS MORNING. [06:00:32] (BEGIN VIDEO CLIP) DONALD TRUMP, PRESIDENT OF THE UNITED STATES : The FBI and the Justice Department have become vicious monsters. (END VIDEO CLIP) TAUSCHE: On the outs. A Justice Department purge as President Trump fires more than a dozen DOJ officials who investigated him. Plus --
## 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Judge: Mass Firings of Federal Probationary Workers "Likely Unlawful"; RFK Jr. Downplays Measles Outbreak, Doctors Say He's Wrong; Transportation Secretary Sean Duffy Saying FAA Will be Hiring More Air Traffic Controllers; President Trump to Meet with Ukrainian President Volodymyr Zelenskyy; President Trump Touting Potential Deal with Ukraine to Extract Rare Earth Minerals from Country; France and U.K. May Propose Security Guarantees for Ukraine against Russia during negotiations to end Russia - Ukraine war. Aired 8-8:30a ET. Transportation Secretary Sean Duffy is saying the FAA will be hiring more air traffic controllers. President Trump is set to meet with Ukrainian President Volodymyr Zelenskyy. President Trump is touting a potential deal with Ukraine to extract rare earth minerals from the country. France and U.K. may propose security guarantees for Ukraine against Russia during negotiations to end Russia - Ukraine war. A federal judge is blocking efforts by the Trump administration and the Department of Government Efficiency to slash the federal workforce. There's a growing divide between Health and Human Services Secretary, Robert Kennedy Jr. and local doctors dealing with a now deadly measles outbreak. [08:00:00] PETE MUNTEAN, CNN AVIATION CORRESPONDENT: Duffy insists he will also make the hiring process easier, trimming an eight-step process into a five-step process. Of course, much of this has to do with ending diversity, equity, and inclusion initiatives under Trump. Duffy says workers will be hired on merit. DEI hiring for controllers was in place under both Republican and Democratic administrations, and that includes Trump's first term. Elon Musk posted on X Thursday that there is a shortage of top notch air traffic controllers, and he made a plea to those who have retired. Musk told them if they are open to returning to work, please consider doing so. Here's the challenge. There's a mandatory retirement age for air traffic controllers, currently set at 56 years old. Duffy says he's interested in changing it, but there's not really a big appetite for that at the powerful controllers' union. The National Air Traffic Controllers Association says upping the retirement age would delay the retirement of only 49 controllers across 35 different facilities over the next year, not enough to fill what the union estimates is a shortage of 3,600 controllers. (END VIDEO TAPE)
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                At Least Five Tech CEOs To Attend Trump Inauguration; Soon: Trump Caps Political Comeback With Second Inauguration; Trump Promises To Release JFK, RFK And MLK Assassination Files. Aired 5:30-6a ET Top tech company CEOs, whose companies have donated millions to Donald Trump's Presidential Inaugural Committee, are expected to have a prominent presence at today's swearing-in ceremony. Donald Trump will be sworn in today as the 47th president of the United States , a couple of months after one of the most polarized presidential elections in U.S. history. Donald Trump has pledged to release top secret files on some of the most notorious political assassinations in American history -- John F. Kennedy, Robert Kennedy, and Martin Luther King Jr. -- as soon as he takes office. [05:30:00] KASIE HUNT, CNN ANCHOR: "The Joe Biden story is one of the great tragedies of American politics. I really mean that. He should be having a glorious, well deserved, highly acclaimed retirement. And he's not. It's hard to blame anybody but him." MARC CAPUTO, TRUMP WHITE HOUSE REPORTER, AXIOS: Joe Biden was elected in 2020 on one general giant, big premise: I'm here to stop Donald Trump and to restore America to what it was in the pre-Trump years. And it worked for four years but in part because of Biden's own decisions of sticking in the race when he obviously didn't have the capacity to do it. Now Donald Trump is president again and he's stronger than ever. So by Biden's general own metric he's a failed president. This is not to say his policies were good or bad but politically speaking what he had promised four years ago has now been completely reversed.
## 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CNN's Special Coverage on the Inauguration of Donald Trump as the 47th President of the United States . Aired 3-4a ET Donald Trump is set to be inaugurated as the 47th President in an indoor event inside Capitol Hill despite the freezing weather conditions. Palestine has released 90 prisoners as part of the Ceasefire-Hostage deal between Israel and Hamas after the first three hostages held by Hamas were freed and returned to Israel . President- elect Donald Trump vows to issue 100 Executive Orders on his first official day in office, including an order to delay the TikTok ban after his announced reinstatement of the Social Media app. U.S. Commemorates Martin Luther King Jr. Day coinciding with the Inauguration of Donald Trump. [03:00:00] (COMMERCIAL BREAK) ERICA HILL, CNN ANCHOR: Hello and welcome to our viewers joining us from the United States and all around the world. I'm Erica Hill, in New York . We are just hours away now from a historic moment. Donald J. Trump is set to take the oath of office for a second time to complete his return to the White House. He'll be sworn in as the 47th president inside the Capitol Rotunda, freezing temperatures, forcing the ceremony indoors this time around. We've also learned that outgoing President Joe Biden and Trump will ride together from the White House in the same limo to the Capitol. Biden will also follow presidential tradition, we've learned, by leaving a letter for Trump in the Oval Office. The President-elect, for his part, getting his celebration started a bit early with a campaign-style rally on Sunday on what he called the eve of taking back our country.
## 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Reshapes America 's Government & Alliances; CNN Poll: 62 Percent Say Trump Has 'Not Gone Far Enough' to Reduce Prices; Arctic Blast Sets New Cold Records Across the Central U.S. Aired 6-6:30a ET In one month, Donald Trump has taken actions to reshape the government and America 's alliances. According to a new CNN poll, 62 percent say that Trump hasn't gone far enough to reduce prices. An arctic blast is setting new cold records across the central U.S. this week. KASIE HUNT, CNN ANCHOR: It's Friday, February 21. Right now on CNN THIS MORNING. [06:00:32] (BEGIN VIDEO CLIP) DONALD TRUMP, PRESIDENT OF THE UNITED STATES : I think right now, we're very popular. (END VIDEO CLIP) HUNT: Shock and awe. A whirlwind. A fire hose. Pick your metaphor. Just a month in, Donald Trump reshaping the presidency and the nation. Plus -- (BEGIN VIDEO CLIP)
## 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Recent Polls on Trump's Second Term; Rep. Katherine Clark (D- MA ) is interviewed about Deadline Government Workers; Associated Press Sues Trump; Trump's Vision of Energy Independence. Aired 8:30-9a ET Recent polls show that support for how President Trump is handling the economy so far in his second term. Rep. Katherine Clark (D- MA ) is interviewed about the millions of federal workers that are in limbo as the deadline nears for Elon Musk's ultimatum. The "Associated Press" sues Trump officials over presidential access. Four charts that show why President Trump's vision of energy independence is a myth. [08:30:00] JULIA VARGAS JONES, CNN NEWSOURCE CORRESPONDENT: About half of that number in southern California . Of course, these are just estimates. But these communities are still on edge. You know, sources have told CNN previously that this was going to be a wave of enforcement action. So, more could still be to come. John. JOHN BERMAN, CNN ANCHOR: Yes, uncertainty, whether it has happened or will happen.
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Immigrant Families Fear Being Separated By Trump Deportations; Trump Signs Four New Executive Orders, Transforming Military; DeepSeek AI Model Sends Shockwaves Through U.S. Markets. Aired 5:30-6a ET A wave of planned immigration raids across the U.S. has resulted in more than 2,000 arrests in two days and will continue across the Southeast U.S. about two to three times a week. President Donald Trump on Monday announced he had signed four executive orders that will reshape the military, including banning transgender service members from serving in the U.S. armed forces; gutting the military's diversity, equity and inclusion programs; and reinstating with back pay service members who were discharged for refusing to get vaccinated from Covid-19. People across China are hailing the success of its homegrown tech startup DeepSeek and its founder after the company unveiled its newest artificial intelligence model, sending shock waves through Silicon Valley and Wall Street. [05:30:00] (BEGIN VIDEO CLIP) YELITZA MARQUINA, FATHER ARRESTED BY ICE: They will open the door because they thought maybe one of us were in trouble of something or something happened to us. He never did think it would have been ICE. I'm already heartbroken myself and I can only imagine little kids whose families are breaking apart because of this. UNIDENTIFIED FEMALE: I had a 4-year-old crying, fearing deportation. That is not making America great again. (END VIDEO CLIP)
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  New Ultimatum from Trump; GOP'S Careful Pushback on Musk; Sen. Ed Markey (D- MA ) is Interviewed about Dismantling Federal Agencies; Flu Cases Peak for Second Time; Louisiana Police Looking into Death of Reporter. Aired 8:30-9a ET President Trump says that all hell is going to break loose if Hamas doesn't release all of the remaining hostages by noon on Saturday. A look inside the GOP's careful pushback to Elon Musk's efforts. Sen. Ed Markey (D- MA ) is interviewed about Democrats sounding the alarm on dismantling CFPB and other federal agencies. Flu cases are peaking for a second time this season. The Louisiana police are looking into the death of a reporter covering the Super Bowl. [08:30:00] SARA SIDNER, CNN ANCHOR: All saying that the courts shouldn't have the power to override the president in these cases. Are you concerned in any way that they may just defy the judge's rulings if the judges rule in favor of these employees? AARON HERRERAS SZOT, EMPLOYMENT LAW ATTORNEY: That is a concern. Ultimately, judicial orders are binding on all parties. If one branch of government decides to ignore another, that is teeing up a constitutional issue. SCIUTTO: Aaron Herreras Szot, thank you so much for coming on and explaining what your clients are going through and the uncertainty that they are living with at this hour. Appreciate it.
## 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sources Say, Trump Expected To Get Back Classified Documents Taken By FBI; Former USAID Leaders Condemn Trump's Attempts To Dismantle Agency; Trump Admin Tries To Walk Back His Gaza Comments Amid Global Outrage; Police: 100,000 Eggs Stolen From PA Distribution Center As Supply Crunch Sends Prices Soaring; Wolf Blitzer Honored For Excellence In Journalism. Aired 6-7p ET Pam Bondi takes sweeping action as she asserts control over DOJ. Rubio today says, Trump meant Gazans would be relocated temporarily, Trump yesterday says, U.S. will take over Gaza, we'll own it. Arab-Americans for Trump group changes its name following Trump's comments on Gaza. Trump's plan to take gaza stirs shock and anger in volatile Middle East. We will not leave, Palestinians reject Trump's call to turn Gaza into the Riviera of the Middle East. Far right Israelis praise Trump's Gaza proposal. CIA sends buyout offers to entire workforce. Authorities in southern Pennsylvania investigating the theft of about 100,000 eggs from the back of a truck at the distribution center. Wolf Blitzer receiving just an extraordinary honor, the Walter Cronkite Award for Excellence in Journalism. [18:00:00] JIM SCIUTTO, CNN HOST: Happening now, the breaking news, President Trump is now expected to get back the classified documents and other materials the FBI seized from Mar-a-Lago. Stand by for details on that, as the new attorney general is carrying out Trump's agenda to overhaul the Justice Department. Also tonight, as President Trump's plan for a U.S. takeover of Gaza sending shockwaves around the world, his administration is suggesting he didn't mean it when he clearly and very publicly said he thought Palestinians should leave their home permanently. Plus, new signs of frustration and desperation as eggs are in short supply and prices are soaring, authorities now trying to crack the case of a brazen heist of tens of thousands of eggs.
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Judges Will Decide Fate Of Trump's Most Contentious Moves; Trump, Japanese Prime Minister Meeting At White House; Trump Expects To Talk To Zelenskyy Next Week, Says He Wants To Discuss Security Of Ukraine 's Assets Like Rare Earths. Aired 12:30-1p ET The noise coming out of the White House right now is loud- earsplitting, really. President Trump announces sweeping tariffs one day and then calls them off two days later, entirely on his own. He orders agencies to stop spending congressionally appropriated funds. He declares that the U.S. will take over Gaza. His unelected and unvetted friend Elon Musk swoops into government agencies to decide whether he deems their programs efficient or not, and shuts down one agency entirely. The courts are slamming the brakes on some of President Donald Trump's efforts to quickly trim and transform the federal government. In his first weeks in office, Trump has signed more than 50 executive orders aimed at reshaping the government, from targeting birthright citizenship to changing how transgender inmates are housed. Government agencies have also used the orders to try to freeze federal funding nationwide and offer buyouts to the bulk of government employees. The flood of orders has led to over two dozen lawsuits to date and a number of court decisions halting -- at least temporarily -- some of Trump's actions. At least three such decisions were released Thursday. And on Thursday night, a pair of unions sued the Trump administration over its efforts to dismantle the U.S. Agency for International Development. President Trump meets with Japanese Prime Minister Shigeru Ishiba at the White House as reports emerge of a potential revival of the U.S. Steel-Nippon Steel deal blocked by former President Joe Biden. Donald Trump said on Friday that he expects to speak with Ukrainian President Volodymyr Zelenskyy next week and wants to discuss the security of their assets, such as rare earths. [12:32:38] DANA BASH, CNN ANCHOR: Today, two major hearings on controversial Trump policies. A federal judge in Boston is hearing a challenge to Trump's effort to end birthright citizenship, and a judge in Washington is hearing a case about what government records Elon Musk and DOGE can have access to. Now, those two are a small fraction of the dozens of cases that Democrats and activists are already bringing against Trump's early executive actions. Their hope is that the courts will act as a guardrail to the new president. My exceptional reporters are back here. I just want to look at what has happened so far with regard to the courts and what is still hanging out there, and it's a lot. But I mentioned ending birthright citizenship. Two judges have already issued nationwide injunctions.
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trump White House Holds First Press Briefing. Aired 1-1:30p ET The White House holds its first official press briefing of President Donald Trump's second term. [13:01:04] BORIS SANCHEZ, CNN HOST: We're following breaking news into CNN this hour. Any minute now, the White House will hold its first official press briefing of President Donald Trump's second term. At the helm will be Press Secretary Karoline Leavitt. She will likely face a barrage of questions as the president works to dramatically reshape the federal government. Since his return to office, Trump has issued an avalanche of executive orders and made sweeping changes with far-reaching impacts, the latest, freezing federal grants and loans, a move that puts into question critical programs and resources that millions of Americans rely on. We will get to that in just a moment.
## 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Admin Defends Agenda As CNN Poll Shows Rising Pessimism; White House: Trump "Very Frustrated" With Zelenskyy Right Now; Senate Confirms Kash Patel To Lead FBI In 51-49 Vote; Trump Economist: DOGE Checks To Americans Wouldn't Drive Inflation; Hamas Releases Remains Of Four Israeli Hostages. Aired 4-5p ET With brand new polling suggesting that much of President Trump's early agenda is unpopular with a majority of the American people and with even largely compliant congressional Republicans today distancing themselves from Trump's embrace of Putin and attacks on Ukrainian President Zelenskyy, top administration officials came to the White House briefing room today to tout and try to defend their boss's first month. President Trump is frustrated right now with President Zelenskyy, the fact that that he hasn't come to the table and that he hasn't been willing to take this opportunity that he has offered. Kash Patel has been confirmed; the Trump loyalist was confirmed by the U.S. Senate to lead the FBI. President Trump is considering a plan to send American taxpayers some of their money back; specifically, it would be a check funded by up to 20 percent of savings identified by Elon Musk's Department of Government Efficiency. The terrorist group Hamas returned the remains of four Israeli hostages in a cruel handover ceremony earlier today. BRIANNA KEILAR, CNN HOST: He was a good hour's paddle away from dry land, but he did make it safely after the shark eventually went about its way. [16:00:07] You like sharks, Boris. BORIS SANCHEZ, CNN HOST: I do like sharks. They're fascinating creatures. KEILAR: What did you think about that happening? SANCHEZ: It's not surprising at all. Humans aren't the only animals that are smart and --
## 105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pete Hegseth Confirmation Vote Could Happen In Hours; Sen. Tim Kaine, (D- VA ), Is Interviewed About Pete Hegseth Confirmation, RFK Jr.; The Impact Of Trump's First Days Back In Office; Trump Floats The Idea Of Getting Rid Of FEMA; Big Changes In Americans' Views On How Much To Drink; Giant Pandas Debut At D.C. 's National Zoo . Aired 5-6p ET U.S. could have a new secretary of defense in just a few hours. The Senate is set to vote on Pete Hegseth's confirmation tonight. President Trump's second presidency has already generated so many headlines in just one week. Start with immigration. The United States now has more active duty U.S. troops deploying to the U.S. Southern border. Trump is ordering thousands of troops there to help secure the border while also laying the groundwork to quickly deport migrants already in the country. Trump signed an executive order ending birthright citizenship, which legal experts say is enshrined in the Constitution's 14th Amendment. A federal judge has already temporarily paused that order. Trump paused the TikTok ban that was approved by both Houses of Congress , signed by President Biden and approved by the U.S. Supreme Court . Mr. Trump withdrew the U.S. from the world Health Organization, and he repealed some rules meant to make it easier to get insurance under the Affordable Care Act. However, to set the record straight, this did not repeal the $35 monthly cap on insulin or Medicare's $2,000 out of pocket cap on prescription drugs. Those have not been repealed. Trump signed an executive order to release files related to the assassinations of former President John F. Kennedy, Senator Robert F. Kennedy and Martin Luther King Jr., saying the American people deserve transparency and you know what we do. (COMMERCIAL BREAK) [17:01:02] JAKE TAPPER, CNN HOST: Welcome to The Lead. I'm Jake Tapper. This hour it's 5:00 somewhere. And by somewhere I mean right here in Washington, D.C. But there are new guidelines on the way when it comes to the possible drinks of even moderate drinking. What you need to know about the latest science. Plus, President Trump is set to land in California soon. His second stop in a coast to coast trip today seeing hurricane destruction in North Carolina and then wildfire damage in California . But Mr. Trump is also suggesting some major changes to FEMA which is in charge of disaster response and recovery. And the person who led that agency until just a few days ago is going to join us ahead to react. And leading this hour, the U.S. could have a new secretary of defense in just a few hours. The Senate is set to vote on Pete Hegseth's confirmation tonight. But has last minute opposition from two Senate Republicans changed how confident the Trump administration is feeling? Let's get right to CNN's Lauren Fox. She's on Capitol Hill for us.
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump's Approval Rating; Trump Revokes Security for Ex-Aides; Christopher Reeve's Story. Aired 8:30-9a ET President Trump's approval rating hits a new high. President Trump ends the security details for former Trump administration officials John Bolton, Mike Pompeo and Brian Hook. Christopher Reeve's story and how his life has helped others. [08:30:00] GINA MCCARTHY, FORMER WHITE HOUSE NATIONAL CLIMATE ADVISER: Because the movements he's made is doing nothing to benefit him off fossil fuels. It is doing nothing but an attempt to slow down the clean energy revolution. That is, frankly, winning everywhere. You know, if he cares about serving the people, he's got to step up. Look, and when the federal government falls apart, like it's doing right now, we have a whole bunch of folks, and America is all in, and Bloomberg and others working together, governors and mayors, they're going to keep filling this gap. Everybody knows that clean energy is hands down the winner and yet he is denying the ability for us to actually move forward internationally and domestically with the right actions that the American people need to see. So, I don't blame all of the institutes now who are sitting there dying for fossil fuels to advance, who are now realizing, oops, we better start rethinking that because if he's looking to push more fossil fuel, oil out the door, he's just going to lower the price more, they're going to lose their profits.
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Rep. Melanie Stansbury (D- NM ) is Interviewed about DOGE; Senators Vote on Hegseth Today; Michael Smerconish is Interviewed about Trump's First Week. Aired 6:30-7a ET Rep. Melanie Stansbury (D- NM ) is interviewed about the establishment of DOGE. Senators vote on Pete Hegseth's confirmation today to lead the Pentagon. Michael Smerconish is interviewed about Donald Trump's first week in office. (COMMERCIAL BREAK) [06:31:42] (BEGIN VIDEO CLIP) DONALD TRUMP, PRESIDENT OF THE UNITED STATES : To restore competence and effectiveness to our federal government. My administration will establish the brand new Department of Government Efficiency. (END VIDEO CLIP) KASIE HUNT, CNN ANCHOR: President Donald Trump's new Department of Government Efficiency, or DOGE for short, officially established earlier this week after a first day executive order. The new entity, which plans to try to slash billions in government spending, will operate as part of the executive branch, and they will have a congressional arm, the House Subcommittee on DOGE. My next guest, Ccongresswoman Melanie Stansbury, has been named the top Democrat on that committee. She tells "Axios" she'll, quote, "fight back against efforts to dismantle federal agencies to take away critical programs like Social Security and Medicaid and Medicare, and we'll fight back the dismantling - against the dismantling of environmental programs." The man tapped to lead DOGE, Elon Musk, has shared little so far about his intentions for those programs.
## 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Elon Musk Is Reshaping The Government, But Is It Legal?; Breaking Down Elon Musk's Expanding Role in Trump Administration; Democrats Plot First Major Attack on Trump Agenda; Trump To Become First President to Attend Super Bowl. Aired 8-9a ET President Donald Trump has only been back in the White House for 20 days, and already the government he leads feels drastically different; Trump and his right hand man, Elon Musk, are wasting no time turning federal agencies upside down, testing the limits of their power, installing loyalists in key positions and seeking to eliminate federal programs while trying to purge the workforce. After a week of trying to gut USAID and other agencies, Elon Musk and DOGE are just getting started on their mission to make massive cuts to federal spending; but questions still loom large about the details and legality of all of this. [08:00:08] VICTOR BLACKWELL, CNN ANCHOR: And thank you for spending your morning with us. INSIDE POLITICS SUNDAY WITH MANU RAJU is next. AMARA WALKER, CNN ANCHOR: Have a great day. (BEGIN VIDEOTAPE) (MUSIC) MANU RAJU, CNN HOST (voice-over): Trump takeover. The president takes a sledgehammer to the government. DONALD TRUMP, PRESIDENT OF THE UNITED STATES : We're going to be looking at Department of Education. We're going to be looking at even our military. RAJU: Now, judges are saying not so fast. The news overnight, and what's next? My panel weighs in.
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Migrant Deportation Flights Begin; Rep. Gabe Vasquez (D- NM ) is Interviewed about Birthright Citizenship and Deportations; Trump Visits North Carolina and California ; Zeb Smathers is Interviewed about Flood-Ravaged North Carolina . Aired 9-9:30a ET Migrant deportation flights with military aircraft have begun. Rep. Gabe Vasquez (D- NM ) is interviewed about President Trump's executive order on birthright citizenship being blocked and new deportation flights. Donald Trump leaves the White House to visit the disaster areas in North Carolina and California . Mayor Zeb Smathers is interviewed about Donald Trump visiting flood-ravaged North Carolina and how his town of Canton is doing after the hurricane. [09:00:00] BRIAN CULLEY, CEO, LINEAGE CELL THERAPEUTICS: To demonstrate the safety. But the data which we collected and the conversations that we had with the surgeons really encouraged us that there was some improvement that was somewhat unexpected. DR. SANJAY GUPTA, CNN CHIEF CONGRESSIONAL CORRESPONDENT (voice over): Improvements for patients like Jake, that now allow him to live his life, drive and work. JAKE JAVIER, SPINAL CORD INJURY PATIENT: I ended up getting some return here in my right hand. So, I'm able to wiggle this index finger just a little bit, which doesn't look like much, and there's not a lot of strength behind it, but it actually proves to be very functional for me because it kind of gives me a little bit more dexterity and the ability to kind of open my hand here and - and grab even small objects like this. GUPTA: How big a deal was the advocacy of Christopher Reeve in all this?
## 110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               President Biden Issues Preemptive Pardons for Dr. Anthony Fauci and General Mark Milley; Trump-Vance Transition Adviser Jason Millers Says President-Elect Trump Prepared to Sign Executive Orders regarding Immigration and Energy Immediately Upon Taking Office. Aired 8-8:30a ET. Preparation for the Indoor Inauguration of President Donald Trump. [08:00:00] JAKE TAPPER, CNN ANCHOR: -- and also did not happen four years ago. Let's check in with Kaitlan Collins on Capitol Hill. And Kaitlan, tell us about where you're positioned in the capital right now, and why. KAITLAN COLLINS, CNN ANCHOR: Yes, Jake, obviously, typically for the inauguration we would be outdoors on the west front of the capital like we were four years ago even during COVID in a much more scaled down inauguration. This time we're inside because of the weather. And this was a decision that the Trump team made just a few days ago, despite months of planning to have this happen outside. They did so because of the weather and putting all of their guests who were in town outside along the parade route. They were worried about their safety.
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Makes Unprecedented Shake-up At The Pentagon; CNN Presents " America Asks"; Fans Flock To See Alleged Killer Luigi Mangione In Court; Major Setback In Bid To Free The Menendez Brothers; Laura Coates Interviews Roy Wood Jr. Aired 11p-12a ET Trump fires Joint Chiefs chairman and other leaders in unprecedented Pentagon purge. Laura and guests answer questions about Trump's second term. Sketch artist describes spectacle in court for Luigi Mangione's hearing and says the courtroom was packed with Mangione's fans. L.A. County D.A. opposes new trial for Menendez brothers. Roy Wood Jr. weighs in on Elon Musk and Yankees beard policy [23:00:00] KATIE FROST, FORMER TED CRUZ AIDE: I went to a hockey game. I went to a fight and the hockey game broke out. Like -- (LAUGHTER) -- this is why people love hockey. Let's bring it back. Bring those goalies skating out to face off, too. Let's just do it. JEMELE HILL, PODCAST HOST, CONTRIBUTING WRITER FOR THE ATLANTIC: Oh, when goalies skate, when they face off, that's the best. FROST: Oh, it's the best. I love it.
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DOGE Claims Billions in Savings; Trump Reverses Stance toward Ukraine ; McConnell Announces Retirement. Aired 6:30-7a ET DOGE claims billions in savings, but the receipts don't add up. President Trump reverses his U.S. stance towards Ukraine . Sen. Mitch McConnell (R- KY ) announces he won't run for re-election. [06:30:00] KASIE HUNT, CNN ANCHOR: President Trump. (BEGIN VIDEO CLIP) EMMANUEL MACRON, FRENCH PRESIDENT: What I'm going to do, is I'm going to tell him basically, you cannot be weak in the face of President Putin. (END VIDEO CLIP) (COMMERCIAL BREAK) (BEGIN VIDEO CLIP)
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Musk Moves to Eliminate Key Federal Agency; El Salvador Agrees to House Deported U.S. Criminals; FBI Prepares for Major Trump Purge; Red Flags Raised After CBS Hands Over Harris Transcript; Judge Warns Lively and Baldoni Lawyers. Aired 11p-12a ET Elon Musk rattles federal government with blitz to dismantle agency, accessing systems. El Salvador offers to house convicted U.S. citizens for a fee. Thousands of FBI officials are under threat of mass firings. CBS hands over "60 Minutes" Harris interview transcript to FCC. Judge threatens to move up March 2026 Lively-Baldoni trial date, admonished Lively and Baldoni for litigating case in public [23:00:00] ABBY PHILLIP, CNN ANCHOR AND SENIOR POLITICAL CORRESPONDENT: -- day for the Trump administration. Two cabinet nominations face a critical hurdle. Will the finance committee give a thumbs up or a thumbs down to RFK Jr. as the next Health and Human Services secretary? While the agency -- the Intelligence Committee will determine the fate of Tulsi Gabbard to lead the intelligence agencies. Now, both of them are far from sure things. And even if both nominations do successfully make it out of committee, a full Senate floor vote is another test of Trump's early power. Thank you very much for watching "NewsNight." "Laura Coates Live" starts right now.
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump to Leave Blair House for Church Service; Sen. Katie Britt (R- AL ) is Interviewed about the Trump Administration. Aired 8:30-9a ET Donald Trump is set to leave the Blair House for the church service. Sen. Katie Britt (R- AL ) is interviewed about the expectations of the incoming Trump administration. [08:30:00] JAKE TAPPER, CNN ANCHOR: Church. You could walk it in 15, 20 seconds. ABBY PHILLIP, CNN ANCHOR: Yes. TAPPER: But it - but it's going to be shrouded in security. We don't even - you know, by the way, I mean any U.S. Secret Service agent is dispatched with the task of keeping the president safe. They would have the president never leave the Oval Office if they could. PHILLIP: Yes. TAPPER: We don't know what security - what role security played in the decision to keep the inauguration indoors today. I mean we were told that it was because of the weather, and I have no reason to doubt that. But I'm sure the U.S. Secret Service - let's just put it this way, I'm sure the U.S. Secret Service was happy with the news.
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Executive Order Suspending Refugee Program Could Leave Afghans Who Helped U.S. In Limbo; Trump Signs Executive Orders Cracking Down On Immigration; Trump Begins Second Term With Deluge Of Executive Actions; Tech Leaders, Billionaires Flock To Donald Trump's Inauguration. Aired 12:30-1p ET President Donald Trump's executive order to suspend the U.S. refugee program could leave at least 2,000 Afghans in limbo who had previously been approved to resettle in the U.S. , a major Afghan advocacy organization is warning. President Trump invoked muscular presidential powers to begin a sweeping crackdown on immigration following his inauguration on Monday, tasking the military with border enforcement, moving to designate cartels and gangs as terrorist groups, shutting down asylum and refugee admissions and attempting to terminate birthright citizenship. Trump opens his second term with a sweeping series of executive orders. From pardoning the January 6 rioters to withdrawing from the Paris Climate Agreement and the World Health Organization, the president's actions in the first hours of his presidency have already undone much of Biden's legacy. Tech billionaires including Elon Musk, Mark Zuckerberg and Jeff Bezos were given prime positions at Donald Trump's inauguration on Monday, in an unprecedented demonstration of their power and influence on U.S. politics. Attendees also included Apple CEO Tim Cook, Google CEO Sundar Pichai and TikTok CEO Shou Chew, and many others. [12:30:00] DANA BASH, CNN HOST: Understood. You told my colleague Kaitlan Collins in December that you didn't know how many people you're going to depart because you didn't know the resources that you would have. How much money do you -- and I understand that you've been in this job now for a matter of hours, but you've been working on it ahead of time for a long time. Do you know how much money you're going to need from Congress to carry this out? TOM HOMAN, WHITE HOUSE BORDER CZAR: Look, I've been working with members of Congress and the whole team has been working on it to come up with a number that makes sense. But I -- look, like I've said many times, we're going to use whatever money we have and do the most efficient operation we can. The more money we have, the more we can do, and I think this election proves that American people support the removals of criminal aliens in this country. So, I'm looking for Congress to come through and give us the budget we need.
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Admin Resists " Russian Aggression" Phrase In G7 Document; Elon Musk's Chainsaw; "Inflation Is Back"; Surgeon: Insurance Is Taking The "Humanity" Out Of Health Care. Aired 7-8p ET Trump is taking Putin's side; his administration pushing back on blaming Russian aggression for the war in Ukraine as one key Republican lashes out at Trump for palling around with Putin. Elon Musk is now wielding a chainsaw on stage as he dismantles the U.S. government. "Inflation is back", those words from Trump as stocks drop and the world's largest retailer now bracing for a tough year. What can we expect? One doctor going viral, getting 13 million views after blasting the health insurance industry, including United, calling their practices out of control. [19:00:37] BRIANNA KEILAR, CNN HOST: OUTFRONT next: Breaking news, Trump taking Putin's side. Tonight, his administration pushing back on blaming Russian aggression for the war in Ukraine as one key Republican lashes out at Trump for palling around with Putin. Plus, it's chainsaw massacre. Elon Musk now wielding a chainsaw on stage as he dismantles the U.S. government. And inflation is back. Those words from Trump as stocks drop and the world's largest retailer now bracing for a tough year. What can we expect? The "Shark Tank's" Kevin O'Leary is my guest.
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CNN's Coverage of the Inauguration of President Donald Trump; Trump to Hold Signing Ceremonies; Families of Israeli Hostages in Gaza Seen in the crowd. Aired 5-5:30p ET CNN's Coverage of the Inauguration of President Donald Trump in Capital One Arena, attended by his family and thousands of his supporters. President Donald Trump will hold a signing ceremony with a slew of executive orders on the economy, immigration, end of DEI and others. Some families of Israeli hostages in Gaza seen in the crowd. Steve Witkoff is the one who helped negotiate the ceasefire and hostage deal between Israel and Gaza [17:00:00] JEFF ZELENY, CNN CHIEF NATIONAL AFFFAIRS CORRESPONDENT: -- wants to go to the Oval Office, but he is going to use this rally as a working moment. So he is in the arena right now. His supporters, as you know, Erin, have been waiting for him for several hours. It is warm in here, but they are ready to see him and ready to see him get started. There is going to also be an indoor feel of a parade. There's going to be a band from Tennessee . There's going to be really some touch tones of the president's childhood and life as well as J.D. Vance's. The Middletown, Ohio band is expected to be here. So this is now the celebratory afternoon phase, but there is going to be some work done as well. And this crowd is absolutely ready for it, Erin. ERIN BURNETT, CNN NWS ANCHOR: Yes, they are. You can hear the chants of USA . I was just chuckling a little bit here, Jeff. You said it's warm in here. It is not warm in here. It is freezing in here.
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Judge Denies Dem Attempt To Block DOGE From Federal Data Systems; New York Governor Hochul Considers Next Steps In Mayor Adams Case; Rep. Gabe Amo (D- RI ) On Zelenskyy Saying Trump "Lives In This Disinformation Space." Aired 7:30-8a ET U.S. District Judge Tanya Chutkan declined on Tuesday to temporarily block Elon Musk and his Department of Government Efficiency from accessing federal data systems at a slew of executive branch agencies. New York Governor Kathy Hochul met Tuesday with New York City leaders to discuss the path forward after four top aides to embattled Mayor Eric Adams resigned amid increasing pressure on Hochul to remove Adams from office. Rep. Gabe Amo (D- RI ) discusses Ukraine President Volodymyr Zelenskyy saying Wednesday that President Donald Trump is living in a Russian -made "disinformation space" as a result of his administration's discussions with Kremlin officials. (COMMERCIAL BREAK) [07:30:50] SARA SIDNER, CNN ANCHOR: The Trump administration, so far, winning its fight in court to give DOGE full access to government agencies, while in New York a Democratic mayor is being saved from a corruption case after the Trump-appointed DOJ leadership demanded the case be dropped. Joining me now CNN political commentators Scott Jennings and Bakari Sellers. All right, so let's go to this case that was in federal court. Judge Tanya Chutkan declined to block Musk and his team from gaining access to data at seven government agencies after Democratically led states sued to stop DOGE. This is the same judge that presided over the January 6 election subversion case against Donald Trump when Trump famously described her as the "most evil person."
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Administration Targeting Generals and Admirals?; IRS Layoffs Expected; Senate Set to Approve Kash Patel; Ukraine - U.S. Relationship Falling Apart?. Aired 1-1:30p ET President Trump continues to call Ukrainian President Zelenskyy a dictator and blame him for the war. The Senate is poised to approve President Trump's pick to lead the FBI, Kash Patel. The IRS becomes the latest target of widespread federal job cuts. Reporting emerges that Defense Secretary Pete Hegseth could fire senior generals and admiral soon. [13:00:35] BORIS SANCHEZ, CNN HOST: We are keeping an eye on the press room at the White House, because, just minutes from now, we're expecting to gain new insight on today's meeting between President Volodymyr Zelenskyy and President Trump's envoy for Russia and Ukraine , General Keith Kellogg. This comes at a tense time between Zelenskyy and Trump, a war of words breaking out leading up to these critical conversations. BRIANNA KEILAR, CNN HOST: Also this hour, the Senate is expected to vote on whether Kash Patel will lead the FBI, the same bureau Patel has previously vowed to dismantle, some key GOP swing votes staying quiet for now. We're following the latest from Capitol Hill.
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Judge Blocks Trump Order To Freeze Trillions In Federal Funding; Caroline Kennedy: RFK Jr. is "A Predator"; German Chancellor: Elon Musk's Right-Wing Push Is "Disgusting". Aired 7-8p ET A setback for Trump from a federal judge who is blocking Trump's sweeping federal spending freeze with seconds to spare. He's a "predator", from Caroline Kennedy about her first cousin who she grew up with, RFK, Jr., who faces a grueling confirmation hearing tomorrow morning. The German chancellor calling Elon Musk disgusting in exclusive comments to CNN. [19:00:36] ERIN BURNETT, CNN HOST: OUTFRONT next: The breaking news, a setback for Trump from a federal judge who is blocking Trump's sweeping federal spending freeze with seconds to spare. It's only a temporary pause, though. Democrats warning it's a constitutional crisis. Plus, he's a, quote, predator. That is from Caroline Kennedy about her first cousin who she grew up with, RFK, Jr., who faces a grueling confirmation hearing tomorrow morning. She is speaking out for the first time tonight. And breaking news, the German chancellor calling Elon Musk disgusting, in exclusive comments to CNN. You'll see them first OUTFRONT.
## 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Donald Trump to be the 47th President of the United States ; Second Day of Israel -Hamas Ceasefire Updates; World Leaders Brace for Trump's Second Presidency; Donald Trump's Second Inauguration Just Hours Away; Trump Hails TikTok's Return Hours Ahead of Inauguration; Trump Promises Tough Crackdown On Immigration. Aired 2-3a ET Donald Trump will be the 47th President of the United States and his first order of business is to issue lots of executive orders that includes DEI policies and border security. The second Day of Israel -Hamas ceasefire saw Palestinian prisoners and Hamas hostages freed, humanitarian aid getting inside Gaza and Palestinians coming home to Gaza. World leaders, allies and enemies, are bracing for Donald Trump's another shot at the U.S. presidency for a possible shift in policies. In just a matter of hours, Donald Trump will be sworn in as the 47th president inside the Capitol rotunda. Donald Trump is hailing the quick return of TikTok hours ahead of his second inauguration ceremony; among those expected to attend the ceremony is the app CEO. President-elect Donald Trump and his aides are preparing to clamp down on immigration; as soon as he is sworn into office, in a matter of hours, those plans include declaring a national emergency at the border, as well as raids targeting undocumented migrants across the country and negotiations for the return of the "Remain in Mexico " program, which would require people to stay outside the U.S. while undergoing their immigration proceedings. [02:00:00] (COMMERCIAL BREAK) ERICA HILL, CNN HOST: Hello and welcome to our viewers joining us in the United States and all around the world. I'm Erica Hill. Nice to have you with us. It is Monday, January 20th, 2:00 a.m. here in New York , and it is now officially, of course, Inauguration Day. Just hours from now, Donald Trump will be sworn in as the 47th President of the United States . This historic moment also coinciding with MLK Day here in the U.S. when the country pauses to celebrate the life and legacy of the Reverend Dr. Martin Luther King, Jr. Here is what you can expect today in Washington. Donald Trump and the incoming First Lady, Melania Trump, will head to the White House in the morning for a tea reception with outgoing President Joe Biden and First Lady Jill Biden. From there, President Biden and Trump will ride in the same limo to the Capitol. Biden will also follow presidential tradition, we've learned, by leaving a letter for Trump in the Oval Office.
## 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Says Putin Agreed To Start Talks On Ukraine ; U.S. Inflation Hits 3 Percent For First Time Since June; Trump Speaks With Reporters In The Oval Office. Aired 4-5p ET President Trump on the line, dishing today on his call with Russia 's President Vladimir Putin, and then another call with Ukraine 's President Volodymyr Zelenskyy. Did President Trump just set up what could be the end of the war and what would be the terms? The price of eggs rising at a rate not seen in nearly a decade, and that is not the only common item seeing a price hike. Why? President Donald Trump speaking to reporters in the Oval Office; he was asked about his phone call with Russian President Vladimir Putin, where they discussed setting up negotiations to end the war. [16:00:01] BRIANNA KEILAR, CNN HOST: The language learning app says, quote, authorities are currently investigating his cause of death. We are cooperating fully. To be honest, he probably died waiting for you to do your lesson. But what do we know? BORIS SANCHEZ, CNN HOST: Wow. They go on. We're aware he had many enemies. But we kindly ask that you refrain from sharing why you hate him in the comments. The apps icon and X handle have already been turned into what appears to be a very dead duo. Usually I don't enjoy promoting these clearly naked reaches for marketing, but it's for learning a new language. That's good. KEILAR: Features in duo.
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IRS Fires Thousands Of Workers During Tax Season; Elon Musk Celebrates Federal Job Cuts With A Chainsaw; Europe Considers Next Steps Amid U.S. & Russia Talks; Gov. Hochul Declines To Remove NYC Mayor Adams. Aired 5-5:30a ET Thousands of firings and job cuts tearing through the federal government; the latest agency to be hit the IRS, with 6,000 people let go on Thursday. Elon Musk celebrating with a chainsaw as the White House slashes its way through more federal jobs. Altering the alliance, how Europe preparing to deal with a U.S. president who's repeating Russian talking points. New York Governor Kathy Hochul announcing she will not remove New York City Mayor Eric Adams from office, at least for now. [05:00:34] KASIE HUNT, CNN ANCHOR: It's Friday, February 21st. Right now on CNN THIS MORNING. (BEGIN VIDEO CLIP) ELON MUSK, TECH BILLIONAIRE: This is the chainsaw for bureaucracy. (END VIDEO CLIP) HUNT: DOGE's firing frenzy. Elon Musk celebrating with a chainsaw as the White House slashes its way through more federal jobs. And -- (BEGIN VIDEO CLIP)
## 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Jump Starts Second Term With Stunning Slew of Executive Orders; Southern States Brace for Another Major Winter Storms; Trump Threatens 25 Percent Tariffs on Mexico and Canada on Feb. 1. Aired 7- 7:30a ET Trump moves to transform fed government with sweeping executive actions. Trump pardons nearly all Jan. 6 rioters charged or convicted in attack. Trump signs series of executive actions cracking down on immigration. Trump signs executive order to end birthright citizenship. 40 million people under winter weather alerts from Texas to Carolinas. Houston mayor urges residents to stay home, make storm preps. San Diego firefighters respond to fast-moving vegetation fires. Vegetation fires erupt in San Diego County , threatening structures [07:00:00] SARA SIDNER, CNN ANCHOR: This morning, a dizzying array of executive orders and more on the way as newly minted President Donald Trump wakes up to his first full day of his second term. He has already unleashed a stunning series of actions from the Oval Office, from pardoning violence January 6th offenders to sweeping immigration action. What else the president plans to do in his first 100 days? KATE BOLDUAN, CNN ANCHOR: And a major winter blast is hitting the country this morning, bringing with it the first ever blizzard warning for parts of Louisiana and Texas . Flight delays and cancelations are already building up. And we have a new college football champion. The school that demands, we call it the Ohio State University with a big win last night over Notre Dame.
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              New 40-Acre Brush Fire Erupts Overnight in L.A.; Trump Defends Jan. 6 Pardons in Oval Office Interview; Authorities Search for Motive in Deadly Nashville School Shooting. Aired 7-7:30a ET Fast-spreading Hughes fire raging out of control in Los Angeles. Thousands under evacuation orders from 10,000-acre Hughes fire. 4,000 firefighting personnel battling out-of-control Hughes fire. Trump says, hard to say Biden shouldn't be investigated. Trump touches on wide range of topics in Oval Office interview. Oath Keepers Leader Rhodes visits Capitol Hill after Trump clemency. Police officer says, I was beaten, crushed and surrounded by rioters. Proud Boys' Tarrio says, people who did this need to feel the heat. Authorities looking into Nashville school shooter's online presence. Two dead, two injured following shooting at Nashville high school. Parents react to Nashville school shooting, it breaks my heart [07:00:00] KATE BOLDUAN, CNN ANCHOR: Tens of thousands of people are right now facing evacuation orders in L.A. Fire crews racing to contain two new wildfires in Los Angeles County that have just exploded, one already burning more than 10,000 acres. SARA SIDNER, CNN ANCHOR: In his first attempt at an interview since assuming the Oval Office, President Trump slamming Joe Biden's decision to pardon his family, but then questions why Biden didn't pardon himself. Is that a potential threat that he may have Biden investigated? JOHN BERMAN, CNN ANCHOR: A shooting inside a Nashville high school cafeteria leaves one dead and two injured. We've got new reporting on what authorities found in the shooter's social media. I'm John Berman with Kate Bolduan and Sara Sidner. This is CNN News Central.
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump: Ukraine Will Be Part of Any Peace Negotiations; Trump Appears to Cast Doubt on Whether McConnell is a Polio Survivor; Judge Extends Pause on Trump's Dismantling of USAID. Aired 3:30-4p ET President Trump said Ukraine will be part of any peace negotiations. A federal judge extends the pause on Trump's dismantling of USAID. [15:30:00] JILL DOUGHERTY, JOURNALIST AND ACADEMIC: ... President Trump is quoting almost everything that Vladimir Putin wants. BORIS SANCHEZ, CNN HOST: Let's go to Alex Marquardt, who's also with us. I believe he's coming to us live from Munich, where a security conference is set to kick off in the coming days. And Alex, Trump alluded to the Munich security conference in part because we know that his vice president, J.D. Vance, is set to meet with Ukrainian President Volodymyr Zelenskyy. Trump, here describing that there's a lot of forks in the game, is the way that he described these negotiations to end the war in Ukraine . What does this actually mean for Kyiv? ALEX MARQUARDT, CNN CHIEF NATIONAL SECURITY CORRESPONDENT: Well, and you're also going to have Secretary of State Marco Rubio among other American officials here alongside European officials here in Munich when this conference gets started tomorrow. So there's really the main focus of this, of the next few days here in Munich, is going to be Ukraine . I'm not sure that Kyiv took much comfort in what President Trump just said about, of course, Ukraine will be involved in the conversation.
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Plans About 100 Executive Orders & Actions On Day One; Freed Palestinians Greeted By Huge Crowds In West Bank; Trump Seeks Dialogue With China While Pushing Hardline Stance; Trump Plans about 100 Executive Orders and Actions on Day One; Trump Makes Big Promises But Can He Deliver. Aired 1-2a ET President-elect Donald Trump will quickly implement executive actions on immigration, energy policy and federal government operations to check off dozens of campaign policy priorities, Trump on Sunday pledged to issue "close to 100" executive orders on his first day in office, many of these orders will be designed to reverse or eliminate ones implemented by the Biden administration. Crowds are celebrating in Gaza as they await the expected arrival of Palestinian prisoners freed as part of the ceasefire hostage deal between Israel and Hamas, it comes after three Israeli hostages were freed after 15 months in captivity. Donald Trump has privately told his advisers he wants to visit China after being sworn in to office, as the President- elect seeks to facilitate an open dialogue with Beijing while also pursuing hardline stance on the country. Donald Trump will take the oath of office just hours from now in the nation's capital to begin his term as the 47th president. The swearing-in ceremony will take place inside the Capitol Rotunda because of extremely cold weather. Donald Trump's return to the White House will have a profound effect on the U.S. economy. He's promised to order mass deportations of immigrants and begin imposing tariffs on America 's biggest trade partners. (COMMERCIAL BREAK) [01:00:24] OMAR JIMENEZ, CNN ANCHOR: Welcome everyone to our viewers here in the United States and all around the world. I'm Omar Jimenez. It is now officially in day in Washington, D.C. where we're just hours away from a historic moment when Donald J. Trump will take the oath office and complete his return to the White House. He will be sworn in as the 47th president inside the Capitol Rotunda with freezing temperatures forcing the ceremony indoors. We're learning that President Joe Biden and Trump will ride in the same limo to the Capitol. Biden will also follow presidential tradition by leaving a letter for Trump in the Oval Office. Now, security in Washington, as you might imagine, is exceptionally high. Law enforcement has been patrolling the area around Capitol Hill ahead of the inauguration. The President-elect celebrated his victory with a rally Sunday on what he called, quote, the eve of taking back our country, unquote. He spoke to supporters at the Capital One Arena in D.C. and laid out an aggressive plan to tackle his top priorities, including immigration reform. Sources tell CNN Trump intends to issue more than 100 executive orders and actions on his first day in office.
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump Administration And Colombia Reach Agreement On Migrant Flights; Navajo Officials: 15 Indigenous People Questioned Since Wednesday; Super Bowl LIX: Chiefs Vs. Eagles. Aired 5:30-6a ET Colombia has walked back from the brink of a damaging trade war with the United States , reaching an agreement on accepting deported migrants being returned on military planes, after a flurry of threats from President Donald Trump that included steep tariffs. At least 15 Indigenous people in Arizona and New Mexico have reported being stopped at their homes and workplaces, questioned or detained by federal law enforcement and asked to produce proof of citizenship during immigration raids since Wednesday, according to Navajo Nation officials. The Kansas City Chiefs and Philadelphia Eagles will meet in the sport's biggest game for the second time in three years after they earned a trip to the Super Bowl on Sunday. (COMMERCIAL) [05:30:10] KASIE HUNT, CNN ANCHOR: All right, 5:29 a.m. here on the East Coast. This is a live look at New York City . Sadly, we cannot see the Empire State Building in this shot, which was lit up in green and white last night for my Eagles. The building had to apologize to New Yorkers. My husband is a New Yorker who can't stand Philly's sports team, so I'm quite enjoying this in my household this morning. Good morning, everyone. I'm Kasie Hunt. It's wonderful to have you with us. Breaking overnight, Colombia agreeing to accept repatriated migrants after a brief faceoff with the Trump administration. Early yesterday two U.S. military planes carrying deported migrants were blocked by the South American country.
## 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump Says He'll Pause Tariffs On Mexico For One Month; Trump Admits Tariffs May Cause "A Little Pain" For Americans; Trump Says He'll Speak Again With Canadian PM This Afternoon; Musk Team Gains Access To System That Writes America 's Checks; Trump, Allies Pulling Levers Of Power That Few Knew Existed; Secretary Of State Rubio Says He Is Acting Director Of USAID. Aired 12-12:30p ET Trump says he'll pause tariffs on Mexico for one month; Trump admits tariffs may cause "A Little Pain" for Americans; Trump says he'll speak again with Canadian PM this afternoon; Musk team gains access to system that writes America 's checks; Trump, allies pulling levers of power that few knew existed; Secretary of State Rubio says he is acting director of USAID [12:00:00] DANA BASH, CNN HOST: Today on Inside Politics, Trump makes a deal. This morning, the president agreed to delay a 25 percent tariff on Mexico after Mexican President Claudia Sheinbaum said, her country would harden its border with the United States , but major new tariffs on Canada and China are still set to go into effect in just 12 hours. Plus, seizing control. The Trump administration spent the weekend, taking a wrecking ball to the federal government. Yes, that is generally what Donald Trump ran on. But how he's doing it and who is doing it, i.e., Elon Musk, seizing control of the entire federal government payment system this weekend is next level disruption, and it's clearly just the beginning. And there's no one better to weigh in on all of this than our friend Fareed Zakaria. He will be here to help put President Trump's first two weeks into contest.
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 What Trump Wants From CA : Voter ID Laws And Water Flow; Trump Says He Wants States, Not FEMA, To Run Disaster Response; Trump In North Carolina To Tour Hurricane Helene Damage; Today: Senate Vote On Defense Secretary Nominee Pete Hegseth. Aired 12-12:30p ET What Trump wants from CA : voter ID laws and water flow; Trump says he wants states, not FEMA, to run disaster response; Trump in North Carolina to tour Hurricane Helene damage; Today: Senate vote on defense secretary nominee Pete Hegseth [12:00:00] PAMELA BROWN, CNN ANCHOR: There are some of the headlines coming out of the press conference of President Trump . Thank you so much for joining us. I am Pamela Brown. You can follow me on Instagram, TikTok and X @PamelaBrownCNN. Stay with us. Inside Politics with Dana Bash starts right now. DANA BASH, CNN HOST, INSIDE POLITICS: And welcome to Inside Politics. I am Dana Bash, and we, of course, are going to start where Pamela just left off in Asheville, North Carolina . Donald Trump , as she was saying, just finished a briefing with local officials about catastrophic flooding there a few months ago. He also talked a lot about issues relating to this and others, where he did a series of questions and answers with the press there. I should say that he is going to, after his visit in North Carolina , he's going to go across the country to Los Angeles , an area still dealing, of course, with deadly wildfires and the devastating aftermath there.
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interview with Polish Foreign Minister Radoslaw Sikorski on Russia - Ukraine War; The Fragility of America 's Justice System. Interview With Law Professor And Author Rachel Barkow; Interview With Author Marc Dunkelman. Aired 10-11a ET Polish foreign minister on the Russia - Ukraine peace deal where Trump seemed to cave in to Putin, giving Russia more concessions than Zelenskyy in Ukraine , and on the possibility of Europe facing a world without U.S. help. Donald Trump campaigned against the weaponization of the Department of Justice only to dismantle the department after being president by firing prosecutors who investigated him. The fragility of America 's justice system. According to Rachel Barkow, the U.S. justice system might be stress-tested soon. According to Rachel Barkow, the breakdown of the rule of law destabilizes everything. [10:00:30] FAREED ZAKARIA, CNN ANCHOR: This is GPS, the GLOBAL PUBLIC SQUARE. Welcome to all of you in the United States and around the world. I'm Fareed Zakaria coming to you live from New York . (BEGIN VIDEOTAPE) ZAKARIA (voice-over): Today on the program, a world shaking reversal in U.S. foreign policy as Europe and Ukraine seem to have become America 's new adversaries at the same time as Moscow comes in from the cold. I'll talk to Poland 's foreign minister, Radek Sikorski, an ardent supporter of Ukraine and an equally ardent critic of Vladimir Putin. Also, Trump's moves at the Department of Justice have exposed a weakness in the U.S. constitutional system. The president controls the prosecutors. So what's the fix? We'll take lessons from other countries that do it other ways.
## 132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   USDA Trying To Rehire Staff Working On Bird Flu After Firing Them; Senate Votes To Confirm Kash Patel As FBI Director; Waltz: Trump "Frustrated" By Ukraine 's Zelenskyy Not Accepting Deal; Child Dies By Suicide After Alleged Bullying, Deportation Threats; HHS Narrows Definitions Of Words Like "Sex," "Males" & "Females". Aired 2:30-3p ET The Trump administration is rushing to rehire workers in multiple departments in the federal government, and that includes the Department of Agriculture where people were working on the government's response to bird flu as the outbreak worsens. The Senate has voted to confirm Kash Patel as the next director of the FBI, and it was a narrow 51-49 vote, and largely a party line vote. President Trump's national security advisor, Mike Waltz, urged Ukraine 's president to sign a rare-earth-minerals deal the White House says will help end Russia 's war on Ukraine , and Waltz says Trump is "frustrated" with Zelenskyy for not accepting the deal. The mother of 11-year-old Jocelynn Rojo Carranza says her daughter took her own life after being bullied at school and some students threatened to call ICE agents to deport her family, and other parents discuss the taunting that allegedly went on in the Texas school. In one of Robert F. Kennedy Jr's first moves as secretary of Health and Human Services, the agency has released new guidance that gives a narrower definition of words like "sex," "male," "female" and more." [14:30:00] KEITH POULSEN, DIRECTOR, WISCONSIN VETERINARY DIAGNOSTIC LABORATORY: -- is great. We're all very -- anticipating that because we know it's a big problem. We have to do something about it. But then there are three kind of 10,000-foot-view signs of, we're going to use vaccine, we're going to have better security, we're not going to depopulate, and we're going to use medicine. But no one really knows what that means. And then when you're already into this outbreak a year and things like that change with really no prep or any details, no one knows if they should continue doing what they're already doing, do we need to go down one way or another? So it just -- it makes for some pretty high anxiety weeks, actually now, so.
## 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Speaker Johnson Announces New January 6 Subcommittee; Sources: White House In Talks For January 6 Convicts To Meet With Trump; Mandatory Evacuation Orders As New Fire Breaks Out Near L.A.; U.S. Military Orders Thousands More Troops To Southern Border; UK Tabloid Settles With Prince Harry, Apologizes For Phone Hacking; Trump Threatens Sanctions On Russia If Fighting Doesn't End. Aired 4-5p ET This afternoon, House Speaker Mike Johnson announced a brand new subcommittee to continue the investigation of the events preceding and following January 6th. Just days after getting pardoned by President Trump, some January 6th defendants could soon return to the scene of the crime, invited by a group of House Republicans. A new wildfire is growing quickly in northern Los Angeles County , just weeks after the deadly wildfires in the same region. President Trump's immigration crackdown escalating, the U.S. military is sending thousands more active duty troops to the southern border, adding to the roughly 2,200 already there. Rupert Murdoch's "The Sun" tabloid newspaper is settling a lawsuit with Prince Harry. President Trump's new threat to Russia 's Vladimir Putin; why Trump says he may have no other choice. BORIS SANCHEZ, CNN HOST: You can imagine officers are now going to investigate an entire trail that that shooter may have been left behind. [16:00:03] But as we heard from one grandmother earlier, this is something that is going to stay with those parents and likely those students for the rest of their lives. Parents going home tonight without their kids. ERICA HILL, CNN HOST: Absolutely. And we know it does stay with them because we know all too well from speaking with so many who have survived these shootings and -- and the parents who lost their children, what it is like for them. SANCHEZ: Yeah. Thank you so much for joining us this afternoon.
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Dr. Jonathan Reiner is Interviewed about the Measles Outbreak; Trump Takes First Appeal to Supreme Court ; Mark McKinnon is Interviewed about Trump's Russia / Ukraine Comments. Aired 6:30-7a ET Dr. Jonathan Reiner is interviewed about the measles outbreak in west Texas that doubled to 48 cases. President Trump takes his first appeal to the Supreme Court . Mark McKinnon is interviewed about President Trump's recent comments on Russia 's war on Ukraine . (COMMERCIAL BREAK) [06:31:16] MANU RAJU, CNN ANCHOR: Health officials in several states struggling with two separate health crises, outbreaks of measles and bird flu cases found in humans. Now, west Texas officials say their measles case load doubled to 48 in just one week. The majority involved children aged five to 17. And all patients are either unvaccinated or their vaccine status is not known. Also, three adult cases have been diagnosed in New Mexico . Meantime, a new CDC study shows three veterinarians of 150 who agreed to be tested had antibodies against the bird flu, meaning they had the disease but no symptoms. We also learned a poultry worker in Ohio became the first human case in that state. Joining me now is CNN medical analyst, a professor of medicine and surgery at George Washington University, Doctor Jonathan Reiner.
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Inauguration Of Donald Trump. Aired 7-8p ET Coverage of the inauguration of President Donald Trump. (MUSIC) ERIN BURNETT, CNN HOST: And good evening. I'm Erin Burnett, live from Washington. OUTFRONT tonight, the breaking news, the Trump presidency is in full force. President Trump just wrapping up that rally in Washington, where he signed nine executive orders promising to pardon those who attacked the Capitol on January 6th. The president, now on his way to the White House, where he promises to sign even more executive actions. They've said there will be many more tonight. Just moments ago, he signed orders, including revoking nearly 80 of Biden's executive orders and actions. And they may count that as 80. As well as withdrawing from the Paris climate treaty, freezing all federal hiring, requiring federal workers return to the office five days a week. And that is in addition to orders Trump is expected to sign later tonight. Those include the formal declaration of a national emergency at the southern border and ending birthright citizenship. That, of course, is a right in the Constitution that if you are born in the United States , you are a citizen. Terminating diversity programs and declaring the federal government will only recognize two genders, male and female, which reverses protections that had been put in place for transgender people.
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               New Video Shows Passenger Jet Colliding With Military Chopper; FAA Indefinitely Closes Helicopter Routes Near Crash Site; NTSB Recovers Both Black Boxes From Doomed Jet; Trump Jumps Right To Blame Game Over Plane Crash. Aired 12-12:30p ET New video shows passenger jet colliding with military chopper; FAA indefinitely closes helicopter routes near crash site; NTSB recovers both black boxes from doomed jet; Trump jumps right to blame game over plane crash; Controversial cabinet picks grilled on Capitol Hill; More GOP senators expressing concerns with Gabbard, Kennedy; Sen. Cassidy to RFK Jr., "I've Been Struggling With Your Nomination" [12:00:00] PHIL MATTINGLY, CNN ANCHOR & CHIEF WHITE HOUSE CORRESPONDENT: Welcome to Inside Politics. I'm Phil Mattingly in for Dana Bash. And we are following the aftershocks of the deadliest U.S. plane crash in nearly a quarter century. The Federal Aviation Administration just revealed it is indefinitely shutting down the low altitude helicopter route that was in use the night of the collision. It comes on the heels of a New York Times report and presidential social media posts suggesting the Black Hawk helicopter was flying outside its approved flight path. CNN has also obtained two exclusive videos. It will be critical to the ongoing investigation. You can see the helicopter on the lefthand side of your screen, moving toward the American Airlines passenger jet which was approaching the runway. It's that bright light you just saw in the center of your screen after the crash, you can see both plunged into the Potomac . And in this next video, you can see both aircraft right before the collision, appearing to take no evasive action before ultimately smashing into one another. I'm lucky to be joined by CNN's Pete Muntean, who's been doing indispensable work for CNN, for our network, the last several days, on this investigation, and former NTSB Managing Director and CNN aviation analyst Peter Goelz.
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Federal Buyout Offer Paused; White House Wants Faster Pace of Migrant Arrests; Elon Musk Continues Gaining Access to Federal Government Systems. Aired 1-1:30p ET Concerning new details emerge about operatives linked to Elon Musk's Department of Government Efficiency. New reports suggest the White House is pressuring immigration enforcement officials to pick up the pace. A judge pauses President Trump and Elon Musk's federal buyout offer. [13:00:23] BORIS SANCHEZ, CNN HOST: At any moment, President Donald Trump will speak to reporters at the White House as he hosts Japan 's prime minister. The questions could get pointed, as Elon Musk's DOGE team runs rampant with its transformation of the federal government. BRIANNA KEILAR, CNN HOST: Under pressure. The White House is pushing immigration authorities to pick up the pace of its migrant arrests, as Homeland Security Secretary Kristi Noem visits Guantanamo Bay , a key site in the new push to deport undocumented migrants out of the country. And a search under way in Alaska after a plane with 10 people on board disappears. Rough weather is impacting the operation now.
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trump, Zelenskyy Trade Insults In Escalating War Of Words; Defense Secretary Orders Military To Prepare For Major Budget Cuts; No Ruling Yet On DOJ Push To Drop Corruption Charges Against Adams. Aired 7:30-8a ET President Donald Trump doubled down on his criticism of Ukrainian President Volodymyr Zelenskyy calling him "a dictator" after Zelenskyy accused Trump of being in a "disinformation space." Defense Secretary Pete Hegseth has ordered the U.S. military to prepare plans to make drastic budget cuts over the next five years, with an exception for border security. Wednesday's much anticipated hearing on the Justice Department's motion to dismiss the case against New York City Mayor Eric Adams has ended without an immediate ruling from Judge Dale Ho , who said he was not going to "shoot from the hip" on the bench. [07:30:00] JIM SCIUTTO, CNN ANCHOR AND CHIEF NATIONAL SECURITY ANALYST: And, of course, the other thing that's happening is that if his role is dialogue that dialogue is really happening in the public sphere now between Zelenskyy and Trump and it's breaking into quite a public rift here. And now you even have this step, Sara Sidner, of J.D. Vance saying hey, if you talk that way to Trump you may not have -- you know, first of all, it's not going to end well for you. Second of all, you even have a veiled threat from Trump saying you may not have a country. I mean, it's a breakdown in that communication channel, which raises questions about how -- you know, what Kellogg can accomplish there.
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trump: Musk "Won't Do Anything Without Our Approval"; Trump Declares Victory In Stand-Off With Mexico & Canada; Father: All Victims "Deserve To Be Remembered." Aired 9-10p ET President Donald Trump: Elon Musk "Won't do anything without our approval." President Trump declares victory in stand-off with Mexico & Canada, with both countries agreeing to border moves already announced. Andy Beyer, lost wife and daughter in D.C. plane crash: All victims "Deserve to be remembered" [21:00:00] (BEGIN VIDEOTAPE) GARY O'HARA, FATHER OF BLACK HAWK VICTIM STAFF SGT. RYAN O'HARA: --one of the teachers, in elementary school, one of the teachers was throwing out an electric pencil sharpener. He took it out of the trash, and he brought it home, and repaired it, brought it to her the next day. ANDERSON COOPER, CNN HOST, ANDERSON COOPER 360: It's like he was born to do this. I mean, this is something -- that's just incredible, to me. G. O'HARA: Yes.
## 140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Vance Scolds European Allies Over Immigration, Free Speech; Vance: "Threat From Within" More Dangerous To Europe Than Russia ; Now: Vance & Zelenskyy Meet At Munich Security Conference; Mixed Message On Ukraine Coming From Trump, Vance, Hegseth; Seventh Prosecutor Resigns Over Order To Drop Eric Adams Case. Aired 12-12:30p ET Vance scolds European allies over immigration, free speech. Vance says "threat from Within" is more dangerous to Europe than Russia . Vance & Zelenskyy meet at Munich Security Conference. Seventh prosecutor resigns over order to drop Eric Adams case. [12:00:00] DANA BASH, CNN HOST: Today on Inside Politics, parroting Putin, President Trump and top administration officials are blaming the war in Ukraine on Joe Biden and NATO, rather than the country that actually launched an unprovoked invasion of its neighbor, a democracy. It's causing fear across the western world that the U.S. is on the brink of abandoning Ukraine . We're standing by for J. D. Vance, Volodymyr Zelenskyy meeting. Plus, a seventh prosecutor resigns. We're following the breaking news on the upheaval at the Department of Justice and the mindboggling accusations about prioritizing politics over the rule of law. As exasperated legal experts warn the country is facing real, unchartered territory. And laughter is a universal stress reliever. So, Broadway and Hollywood star Josh Gad will be my guest for a much-needed Friday palette cleanser.
## 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GOP Senators Push Back on Musk Gutting Federal Workforce; Several Agencies Tell Employees Not to Respond to Musk Email; Zelenskyy Speaks Out on Possibility of Deal with U.S. ; Vatican: Pope in Critical Condition with Mild Kidney Failure. Aired 6-6:30a ET Republican senators are beginning to push back against Elon Musk's unconstitutional firing of thousands of government employees. Several agency heads, including Kash Patel at the FBI, are telling their employees not to respond to Musk's email demanding a list of what they did last week. Volodymyr Zelenskyy spoke out this weekend about his relationship with Trump and the possibility of a deal with the U.S. for rare earth minerals. According to the Vatican, the pope remains in critical condition as he's been diagnosed with mild kidney failure. KAYLA TAUSCHE, CNN ANCHOR: It's Monday, February 24th right now on CNN THIS MORNING. [05:59:50] SEN. JOHN CURTIS (R- UT ): These are real people. These are real lives. These are mortgages. (END VIDEO CLIP) TAUSCHE: Can you answer the question, what did you do at work last week? Federal workers have just hours left to justify their jobs to Elon Musk or lose them. Plus, this. (BEGIN VIDEO CLIP)
## 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Federal Judge Receives No Answers from Justice Department to Questions about Organizational Structure of Department of Government Efficiency; Republican Congressman Experiences Contentious Town Hall with Constituents after Mentioning Elon Musk. Aired 8-8:30a ET A federal judge receives no answers from the Justice Department to questions about the organizational structure of the Department of Government Efficiency. A Republican Congressman experiences a contentious town hall with constituents after mentioning Elon Musk. [08:00:00] (BEGIN VIDEO CLIP) JOHN KING, CNN CHIEF NATIONAL CORRESPONDENT: The new Republican Congressman won by just 2,000 votes. His 2026 reelection prospects will likely hinge on Trump's performance, on whether swing voters here see the president as focused on the big issues or veering too far off target. John King, CNN, Greeley , Colorado . (END VIDEO CLIP)
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            President Trump Announces Tariffs on Canada, Mexico , and China; Stocks Markets Potentially Down Upon News of U.S. Tariffs on Trading Partners; Workers at U.S. Agency for International Development Receive Email to Not Show Up to Work as Trump Administration Targets Agency. Aired 8-8:30a ET President Trump announces tariffs on Canada, Mexico , and China. Stocks markets potentially down upon news of U.S. tariffs on trading partners. Workers at the U.S. Agency for International Development receive an email to not show up to work as the Trump administration targets the agency. [08:00:00] (BEGIN VIDEO CLIP) CHAPPELL ROAN, SINGER: I would demand that labels and the industry profiting millions of dollars off of artists would offer a livable wage and health care, especially to developing artists. Record labels need to treat their artists as valuable employees with a livable wage and health insurance and protection, Labels, we got you, but you got us? (END VIDEO CLIP) ELIZABETH WAGMEISTER, CNN ENTERTAINMENT CORRESPONDENT: So Chappell getting a lot of praise for that moment. And I have to tell you, some of the stars did get political. When Shakira came on stage, she spoke about immigration. When Lady Gaga came on stage, she spoke about the trans community. And Alicia Keys talking about DEI. But overall, just a really, really great night, Kate.
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DOJ Officials Who Prosecuted Trump Fired; Trump to Address House Republicans in Miami; Sen. Ruben Gallego (D- AZ ) is Interviewed on the Crackdown of Unlawful Immigrants All Across the U.S. ; U.S Tech Stocks Plunge Sparked by New Chinese AI. Aired 5-6:00p ET The Trump administration has fired more than a dozen DOJ officials who helped special counsel Jack Smith to prosecute President Trump; President Donald Trump is set to address House Republicans in Miami on how to push his legislations and policies. Sen. Ruben Gallego (D- AZ ) answers questions regarding the ongoing crackdown of unlawful immigrants all across the U.S. and how to address the problems it would cause. U.S tech stocks took a big dip sparked by the new Chinese AI called DeepSeek, which only spent $5.6 million compared to the billions by U.S. AI tech companies. [16:59:49] JAKE TAPPER, CNN HOST: Welcome to "The Lead," I'm Jake Tapper. This hour the Super Bowl is finally set. Indeed it is. Will we hear the celebratory notes of Fly Eagles Fly? What does history say about the Chief's pursuit of a three-peat and how much more should we all expect to shell out for our watch parties this year? [17:00:05] Plus, a stunning announcement sends U.S. stocks plunging right on the heels of President Trump's massive AI announcement. China introduces a new AI rival that China says can do artificial intelligence for a fraction of what the U.S. is spending. What does this mean for the American economy? And is it true?
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             USAID In Limbo As Musk Says Trump Signed Off On Shutting Down Agency; Rep. Pat Ryan (D- NY ) On China Hits Back At U.S. With Retaliatory Tariffs; Today: NTSB To Release Data From Black Box Of Black Hawk Helicopter That Collided With Jet. Aired 7:30-8a ET The Trump administration's freeze of foreign aid and dismantling of USAID, the agency that oversees it is putting at risk thousands of jobs in the U.S. and abroad. Rep. Pat Ryan (D- NY ) discusses Beijing's announcement a broad package of economic measures targeting the United States on Tuesday, hitting back after President Donald Trump imposed 10% tariffs on Chinese imports. Today investigators with the National Transportation Safety Board are expected to release new data from the Army Black Hawk helicopter involved in the deadly midair collision near Washington's Reagan Airport. (COMMERCIAL BREAK) [07:31:40] SARA SIDNER, CNN ANCHOR: New this morning -- it should not be a big surprise -- stock futures dipping lower once again, this time after China hit back at the U.S. with retaliatory tariffs. Beijing doing this in response, of course, to President Trump's 10 percent tariff on Chinese imports. Thank goodness we've got CNN's Matt Egan here. Those numbers don't look so terrible. They certainly don't look like what we saw 24 hours ago when Mexico and Canada were in the firing -- the line of fire. That has since subsided. But what is being targeted in China? And when you look at that, how might that affect not just the markets but all of us?
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Freeze On Federal Grants And Loans Takes Effect At 5 P.M. Today; WH: NJ Jones That Caused Hysteria Were "Not The Enemy"; ICE: 1,100-Plus Arrested In Immigration Enforcement On Monday. Aired 2- 2:30p ET A federal judge on Tuesday issued a stay against a White House directive freezing federal assistance, which had sent Washington and organizations nationwide into chaos after a late-night memo from the U.S. Office of Management and Budget ordered agencies to review compliance with President Trump's executive orders on "DEI, woke gender ideology, and the Green New Deal." White House Press Secretary Karoline Leavitt said the drone sightings that caused panic in New Jersey last month were FAA-authorized and "not the enemy," addressing public concerns sparked after President Trump suggested on December 16 that something "strange" was happening. Immigration authorities arrested nearly 1,200 people in a single day, with nearly half having no criminal record. KAITLAN COLLINS, CNN ANCHOR & CHIEF WHITE HOUSE CORRESPONDENT: But the real question is going to be with those career prosecutors and how they choose to respond to this, because there had kind of been a thinking that maybe they would just put them away in a different part of the Justice Department, push them into really something that they didn't want and kind of forced them to leave that way. No, this was an abrupt firing that happened yesterday. And so that is a real question, whether it's firing those career prosecutors or withholding this federal funding, which right now is on a temporary pause. From a lot of agencies, if you look through the memo that she was referencing there, it's not just DEI programs and climate change, like what she was referencing, it goes to the agriculture industry, the Pentagon, as David Sanger from the New York Times was, was referencing. It really touches every single agency. So it is a real question of what that looks like over the coming days and whether or not there are legal challenges, which we do know we expect to come from states potentially as soon as today.
## 147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Musk Moves from Villainizing Workers to Fictionalizing Them; Trump Cedes Spotlight to Elon Musk in First Cabinet Meeting; Bezos Commands Washington Post to Focus Columns on His Two Pillars. Supreme Court Justices Poises to Favor Straight Woman in a Job Bias Case; A.I.-Generated Video of Trump's Fantasy Gaza Sparked Outrage. Aired 10-11p ET Justices at the Supreme Court are poised to lower the bar for white workers to sue for a bias case as they will favor a straight woman who was demoted for being heterosexual. An A.I.-generated video shared by President Donald Trump of what could be a fantasy resort in Gaza has sparked backlash. Trump and Musk claim dead people to blame for government fraud. Musk says, my ultimatum email serves as pulse check to workers. Bezos says, Washington Post will now defend liberties and free markets. Ex-Washington Post editor says, Bezos betraying paper with disgusting move. Washington Post opinions editor quits after Bezos directive [22:00:00] (BEGIN VIDEO CLIP) ABBY PHILLIP, CNN ANCHOR (voice over): Tonight, in his first cabinet meeting, Donald Trump cedes the floor to someone not in his cabinet. ELON MUSK, ADVISER TO PRESIDENT TRUMP: I call myself a humble tech support here. PHILLIP: And federal workers are now being recast from villainized to fictionalized. MUSK: Actually, it was a post-check review.
## 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Federal Judge Blocks Trump USAID Leave Plan; Trudeau Says Trump Threat To Annex Canada "Is A Real Thing"; Trump Says Musk will Review "Just About" Every Federal Agency. Politico: Trump Considering Blagojevich For Ambassador Post; Actress Debra Messing On Her Pro- Israel Activism; Federal Judge Temporarily Blocks Trump From Putting At Least 2,200 USAID Workers On Leave. Aired 5-6p ET President Donald Trump is considering nominating former Illinois Gov. Rod Blagojevich, who served eight years in prison on corruption charges, to be U.S. ambassador to Serbia, according to two people familiar with the discussions. Hours after Hamas launched its attacks on Israel on October 7th, 2023, Debra Messing, the actress and activist, spoke out on social media against the deadliest day for Jews since the Holocaust. A federal judge has ordered the Trump administration to immediately halt its plans to put at least 2,200 employees at the U.S. Agency for International Development on administrative leave tonight. A federal judge has ordered the Trump administration to immediately halt its plans to put at least 2,200 employees at the U.S. Agency for International Development on administrative leave tonight. Canadian Prime Minister Justin Trudeau told a business gathering on Friday that U.S. President Donald Trump's threat to annex Canada "is a real thing." [17:00:00] JAKE TAPPER, CNN HOST: But we do have some breaking news as those efforts by Trump and Musk to shrink the government have hit another roadblock. Tell us more. JEFF ZELENY, CNN CHIEF NATIONAL AFFAIRS CORRESPONDENT: Jake, We do another afternoon, another court ruling, trying to at least put a temporary pause on the Trump administration's effort to reshape and remake the government. We were just learning a few moments ago a federal judge here in Washington has said he will pause the midnight deadline for the USAID employees to be slimmed down to just a few hundred workers. Of course, we've had our eye on USAID all afternoon as the sign, as we can see there on screen, has actually been dismantled. But a federal judge ruling just a short time ago, putting a temporary pause on this. Now this, of course, comes in a long line of judges stepping in to at least temporarily hold the work of the administration. Well, we've asked the White House for a comment on this. We've not yet heard back. But this is becoming a familiar pattern. The administration makes a move here and a judge at least temporarily holds it. Jake.
## 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Fires Top U.S. General, Calls Gen. Charles Brown A "Fine Gentleman"; Trump Falling Sort; Acting ICE Director Removed Amid Frustration Over Pace Of Arrests; Pentagon Announces It Plans To Fire 5-8 Percent Of Civilian Workforce; NY Times Columnist: Musk Is "Operating As What Cybersecurity Experts Call An Insider Threat"; Mine Workers Tell CNN Musk Claims Are False; Alleged Healthcare CEO Killer Appears In Court, Attracting Dozens Of Supporters, Observers; Los Angeles D.A. Urges Judge To Deny Menendez Brothers' Request For A New Trial; Second Body Said To Be That Of Israeli Hostage Shiri Bibas Handed Over By Hamas. Aired 8-9p ET President Trump has just fired the chairman of the Joint Chiefs of Staff, his top military adviser. Caleb Vitello, acting director of Immigration and Customs Enforcement, or ICE removed. When it comes to doing what it promised, the administration by its own lights is coming up short. The Pentagon announced Friday it plans to ultimately fire five to eight percent of the military's approximately 950,000 civilian employees, with an initial tranche of 5,400 probationary workers who don't have "mission-critical" roles expected to be terminated next week. WILL RIPLEY CNN SENIOR INTERNATIONAL CORRESPONDENT: So Brianna, as you know, China's biotech rise, this is not just about medicine, it's also political. BRIANNA KEILAR, CNN HOST: Very interesting -- very interesting story indeed. Will Ripley, thank you so much for that report tonight. And thank you so much for joining us. AC360 starts right now. [20:00:22]
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Zelenskyy Is Defiant After Explosive Oval Office Meeting With Trump; Officials Rule Out Key Theory In Gene Hackman's Death; Trump Reveals Private Blame Game Talk With Biden; Laura Coates Interviews Author Ben Arogundade. Aired 11p-12a ET Volodymyr Zelenskyy, president of Ukraine , is defiant and not apologizing after meeting with Trump and Vance. Sheriff says Gene Hackman and wife test negative for carbon monoxide and likely dead for nine days before they were found. Report says Trump says Biden blames Obama and Pelosi for election loss. Author Ben Arogundade discusses about the Academy Awards. [23:00:00] (COMMERCIAL BREAK) LAURA COATES, CNN HOST: Good evening and welcome to "Laura Coates Live." Now, if you needed more evidence the entire world order is kind of shifting under our feet, well, today, you got it, and a whole lot of it. And now, Ukrainian President Zelenskyy is responding to that epic meltdown in the Oval Office you've undoubtedly heard about by now. President Trump and Vice President J.D. Vance are unapologetic, getting into a very public and very aggressive shouting match with Zelenskyy, an American ally fighting the power that invaded his country. Now, Zelenskyy, he went back in front of the cameras a short time ago. He did not apologize either.
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump Fires Justice Department Officials Who Prosecuted Him; Trump Plots Strategy With House GOP as He Readies New Orders; Chinese A.I. Advancement Sends U.S. Tech Stocks Plunging. Displaced Palestinians Making Emotional Return To Gaza; Survivors Mark 80 Years Since Auschwitz Liberation. Aired 6-7p ET In Gaza tonight, displaced Palestinians are making an emotional return home as the fragile ceasefire holds, many residents finding only rubble after more than a year of war between Israel and Hamas. Today marks 80 years since the liberation of Auschwitz; it's a painful anniversary for those who survived the Nazi death camp but a necessary moment to remember the millions of people murdered during the Holocaust. Sources say, Trump launches major shakeup at Justice Department as he fires officials, orders probe of Jan. 6 prosecutors. Senate confirms Scott Bessent as Trump's treasury secretary. Trump plots strategy with House GOP at his Florida golf resort. Trump takes victory lap after deportations standoff with Colombia . Sources say, Trump order ban to transgender troops from military. This week, Tulsi Gabbard faces hearing as she vies to become Trump's director of National Intelligence [18:00:00] WOLF BLITZER, CNN ANCHOR: Happening now, breaking news, President Trump fires more than a dozen U.S. Justice Department officials who prosecuted him as he orders investigations at the prosecutors who tried cases against other January 6th defendants. Is this the beginning of the retribution he promised on the campaign trail? Also breaking, Trump is hosting House Republicans at his Florida golf club as they strategize over his legislative agenda. New executive order is also on the way tonight with an expected ban on transgender troops and DEI programs in the U.S. military. Plus, U.S. high tech stocks tumble after a bombshell announcement from a Chinese artificial intelligence company. Why the new model is extremely low price, price tag is sending shockwaves through Silicon Valley.
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Trump Plans To Own, Control, And Develop Gaza; Democrats Blast Elon Musk; CIA Offering Buyouts To Entire Workforce; New York Doctor Indicted In Louisiana For Sending Abortion Pills. Aired 11p-12a ET Trump is planning to own and develop Gaza, wants the roughly two million Palestinians to leave Gaza permanently and not rebuild. Democrats blast Elon Musk's influence: "We are at war." CIA offers sweeping buyouts to entire workforce to be more in line with Trump's priorities. A New York doctor was charged for prescribing abortion pills to Louisiana minor [23:00:00] ABBY PHILLIP, CNN ANCHOR AND SENIOR POLITICAL CORRESPONDENT: Instead, one end zone will say "choose love" and the other says "it takes all of us." The league explains that the change is about capturing the moment of time in the county and nodding to the turbulent fast few weeks of fires, plane crashes, and tragedy. They don't mention, though, the VIP who is going to be attending the big game, and that is Donald Trump. Trump has made erasing every trace of DEI initiative a focal point of his first few weeks in office. But that is something that the NFL, for its part, says it will not do. Thank you very much for watching "NewsNight." "Laura Coates Live" starts right now. UNKNOWN (voice-over): This is CNN Breaking News.
## 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump Hosts France's Macron At Crucial Moment For Ukraine ; Interview With Senator Mark Kelly (D- AZ ); MAGA Podcaster Dan Bongino Tapped To Be Next FBI Deputy Director; Former Proud Boys Leader Taunts Officers Who Protected; Political Conference In D.C. Interrupted By Death Threats Against Speakers Critical Of Trump; Colorado Trump Voters On The President's Tumultuous New Term; Clint Hill, Secret Service Agent Who Jumped Onto Limo After JFK Was Shot, Dies At 93. Aired 8-9p ET Macron says Ukraine - Russia truce could happen "in weeks," but western allies must make sure Russia honors agreement. Kelly: After 80 years, in a few days, Donald Trump just blew up the western alliance. Dan Bongino, another prominent MAGA media personality has been tapped for top role in the Trump administration. Dan Bongino, a former Secret Service agent turned right-wing podcaster, has been named the next deputy director of the FBI, President Donald Trump announced Sunday, the latest outsider media personality the president has chosen to be in a significant position of power overseeing large branches of complex government organizations. Enrique Tarrio, the former leader of the far-right Proud Boys group who was convicted and then pardoned for his role in the January 6 insurrection, confronted a group of police officers who defended the Capitol during the attack, accusing one of them of being a "coward". ERIN BURNETT, CNN HOST: You saw the -- you saw the -- NEIL DEGRASSE TYSON, ASTROPHYSICIST: Oh, yes, as a child -- BURNETT: The lack of culture. TYSON: I knew this and -- but it was more than that. Everyone was wearing like crew cuts at a time when the Broadway musical hair was number one. ERIN BURNETT, CNN HOST: Right. TYSON: So, there was some mismatches between who we were sending in space and what culture was doing. I still valued that we were going to space but I didn't feel like I was a part of that -- and so I always viewed that as a way to encourage agencies to look in places you hadn't looked before for talent that you've been missing.
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Urgent Investigation After Deadliest U.S. Airliner Crash in 23 Years; Trump Baselessly Blames Diversity Initiatives for Plane Crash; One Black Box Has Been Recovered from Potomac River . Some Victims Of Mid-Air Collision Being Identified. Aired 6-7p ET Source says, one controller working two positions at time of crash. Recovery now done for day, more than 40 bodies pulled from river. FAA says, black boxes from doomed flight not yet recovered. Trump lashes out at Democrats and diversity as crews search for victims of deadly crash. Trump's DNI pick Tulsi Gabbard dodges key questions from senators. CNN now learning the identities of some of the victims from the horrific midair collision in the Washington, D.C. area. (COMMERCIAL BREAK) [18:00:00] JIM SCIUTTO, CNN ANCHOR: The breaking news tonight, an urgent search for answers after a mid air collision killed 67 people in the nation's capital. Welcome to our viewers in the United States and around the world. Wolf Blitzer is off today. I'm Jim Sciutto in The Situation Room. And I'm Anderson Cooper live at Reagan National Airport, where, throughout the day, divers and federal investigators are on the scene trying to make sense of the first fatal U.S. commercial airliner crash in 16 years. So far, many more questions than answers, as dive teams scour the Potomac River for the passengers. SCIUTTO: Yes, such a sad search. Well, the uncertainty, the many questions, did not stop President Trump from offering up some baseless speculation of his own, blaming Democrats and diversity initiatives for this horrifying accident.
## 155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Elon Musk Dominates First Trump Cabinet Meeting; Musk: Trump Told Me To Be "More Aggressive" In Federal Cuts; Texas Reports First Measles Death As Cases Spread Rapidly; New Strategy To Combat Bird Flu, Lower Egg Prices; Supreme Court Signals It Will Make It Easier For Americans To File "Reverse" Discrimination Lawsuits; Hamas Expected To Release Bodies Of 4 Israeli Hostages. Aired 4-5p ET The very first cabinet meeting of Trump's second term and a starring performance for Elon Musk, the richest man in the world. What the tech billionaire Elon Musk revealed about the president telling him to be more aggressive, and the president himself hinting at a clash among his cabinet. The Texas Health Department today reported the first death in the ongoing measles outbreak in West Texas . The Trump administration is spearheading a new approach to trying to contain bird flu, which is behind the skyrocketing cost of eggs; Agriculture Secretary Brooke Rollins unveiled a five part strategy today in a "Wall Street Journal" op-ed. The U.S. Supreme Court this morning heard arguments in a case that could reshape workplace discrimination law; at the center of it, a straight white woman who claims that she was passed over for a promotion because of her sexual orientation. The terrorist group Hamas is expected to release the bodies of four more murdered hostages. [16:00:01] JESSICA DEAN, CNN HOST: But, yeah. No, that's -- yeah, it's very gold. They will serve their time. No justice for the toilet. BORIS SANCHEZ, CNN HOST: I do wonder what kind of cleaning solution is used for this sort of toilet. Because you have to think that, like Clorox wipes and the stuff you use to clean your toilet at home, it will probably degrade the precious metal, right? DEAN: But tarnish -- you don't want to tarnish it. SANCHEZ: Yeah.
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Oscar-Winning Actor Gene Hackman Found Dead in His Home; Trump to Welcome British P.M. Starmer to White House; Pro- Palestinian Protesters Storm Barnard College Campus. Aired 7-7:30a ET Gene Hackman, wife Betsy Arakawa and their dog found dead at home. Police say, no foul play suspected in death of Oscar-winning actor Gene Hackman and his wife, Betsy Arakawa. U.S. , Ukraine hammer out mineral deal ahead of Zelenskyy visit tomorrow. Trump says mineral deal with Ukraine pretty much negotiated, Zelenskyy says agreement is a framework. Protesters hold hours-long sit-in to protest expulsions, staffer injured and taken to hospital. Barnard College says, staffer physically assaulted, injured by protesters. Michigan State wins on Tre Holloman's heave at buzzer. 65-foot shot lifts No.8 Michigan State past No. 16 Maryland , 59-55. Detroit keeps firing on all pistons in rout of Celtics. Malik Beasley pours in 26 in Pistons' eighth straight win, 117, 91, over Boston. Shaedon Sharpe wows NBA world with insane dunk. 21-year-old drops vicious one-handed slam in Blazers' 129-121 win over Wizards [07:00:00] KATE BOLDUAN, CNN ANCHOR: We are following breaking news this morning, legendary actor Gene Hackman and his wife both found dead in their home in New Mexico . What police are saying this morning. SARA SIDNER, CNN ANCHOR: In just hours, a critical meeting at the White House, British Prime Minister Keir Starmer meets face to face with President Trump. Can he wrangle security guarantees for Ukraine ? And more Republican lawmakers facing backlash from frustrated voters packing town halls and demanding answers about Elon Musk's sweeping federal cuts and mass firings. I'm Sara Sidner with Kate Bolduan. John Berman's out today. This is CNN News Central.
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                President Trump Calls Zelenskyy A Dictator, Issues A New Warning; Elon Musk's DOGE Slashes Into A Program That Got Lawmakers On Both Sides Of The Aisle Upset; New York City Mayor Eric Adams Speaks Hours After Appearing In Court. Aired 10-11p ET President Trump said Zelenskyy 'talked the United States of America into spending $350 billion to go into a war that basically couldn't be won'. Defense Secretary Pete Hegseth orders eight percent budget cuts for the next five years. Judge Dale Ho says he'll make a decision on Eric Adams' case at a later date, says he doesn't want to "shoot from the hip." [23:00:00] LAURA COATES, CNN ANCHOR: Tonight, President Trump sets off a global firestorm, calling Ukraine Zelenskyy a dictator and then issuing a new warning. Plus, Eric Adams denies a quid pro quo and all those accusations inside of a courtroom today. This, as a DOJ, tries to dismiss the criminal case against him. I did say try. Will the judge see it the same way? And 9-11 first responders now falling victim to the DOGE cost-cutting machine. Will Elon Musk backtrack on this one? Tonight, on "Laura Coates Live". Donald Trump is going full scorched earth against a wartime leader America has supported for the last three years. Well, that is until about 31 days ago. He is tearing into Ukrainian President Zelenskyy and verbalizing the insults he had written out just a few hours before. (BEGIN VIDEO CLIP)
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump: Judges Shouldn't Say "What You're Supposed To Be Doing"; Trump Pardons Former Illinois Gov. Rod Blagojevich; Trump Doesn't See Vance As His Successor: "It's Too Early." Aired 9-10p ET President Donald Trump: Judges shouldn't say "What you're supposed to be doing." President Trump pardons former Illinois governor, Rod Blagojevich, who was convicted of corruption for trying to sell Obama's Senate seat. President Trump doesn't see JD Vance (R), U.S. Vice President, as his successor: "It's too early" [21:00:00] DONIE O'SULLIVAN, CNN SENIOR CORRESPONDENT: Denmark has quite a dark, colonial history there. So, folks do want to be independent. ANDERSON COOPER, CNN HOST, ANDERSON COOPER 360: Yes. O'SULLIVAN: But they have realistic expectation, which would say-- COOPER: And the concerns about defense for them are very real. O'SULLIVAN: Exactly. And Tom Dans, the American you saw on that piece, he would argue that in practice, really, America is already providing a lot of security for the island.
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Lawmakers Face Pushback From Constituents At Town Halls; Germany 's Conservatives Return To Power As Far Right Surges; Zelenskyy Praises The "Absolute Heroism" Of Ukrainians. Aired 5:30-6a ET This week, members of Congress are likely to get an earful from voters feeling the impact of President Trump and Elon Musk's big DOGE cuts. The conservatives are returning to power in Germany , with the far right making substantial gains after snap elections held on Sunday. Marking three years since Russia launched its brutal full scale invasion of Ukraine , how the West is now responding to America 's sudden reversal on support for the Ukrainians. (COMMERCIAL BREAK) [05:31:47] KAYLA TAUSCHE, CNN ANCHOR: Five-thirty-one a.m. here on the East Coast. You're looking at Nashville, Tennessee , 4:31 a.m. Central Time in Music City, USA . Good morning, everyone. I'm Kayla Tausche, in for Kasie Hunt. It's wonderful to have you with us. Anger and frustration at town halls across the country. This week, members of Congress are likely to get an earful from voters feeling the impact of President Trump and Elon Musk's big DOGE cuts. (BEGIN VIDEO CLIP)
## 160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump Admin Directs Agencies to Prepare for Large-scale Firings; Trump Says U.S. To Sell $5 Million 'Gold Card' That Offers Path to Citizenship; Johnson, Trump Pull Off Last-minute Win as House Passes Budget Plan; Sexually Explicit Messages Found on NSA Chat Rooms; Pope Remains in Critical but Stable Condition; National Parks Litter Turned to Art; Zelenskyy Says Security Guarantees by U.S. Could Be a Step Toward Peace; U.S. Votes Against U.N. Resolution Condemning Russia 's War on Ukraine . Aired 8:30-9a ET Trump plans to sell $5 million 'Gold Card' that offers a path to U.S. citizenship; Tulsi Gabbard says more than 100 Intel officers to be fired over explicit messages; Pope Francis remains in critical but stable condition in fighting pneumonia; Maine artist Mariah Reading turns trash from national parks into art to create awareness; Zelenskyy says U.S. resources deal could be a big success but depends on Trump talks. [08:30:00] REP. JAKE AUCHINCLOSS, (D- MA ): Donald Trump is not on the ballot again, remember that. Congressional Republicans are on the ballot next November. And so, the feedback that is coming up to the White House from Congressional Republicans, and I'm hearing this from my colleagues on the House floor, is we are being fed to the wolves here. Every time Elon Musk goes out there and tweets and attacks, you know, EPA Regulators who are keeping PFAS out of our water supply, or attacks Air Traffic Controllers who are trying to keep planes from colliding in midair, we have to answer to our constituents. And that's before they took the vote on taking $880 billion out of Primary and Preventative Care for Children. So Congressional Republicans are the ones who are going to bear the brunt of Elon Musk's unpopularity. Donald Trump is just simply going to kick him away when he's done being useful. We all know that Donald Trump is transactional. The problem is, is that Congressional Republicans are the ones going to be footing the bill.
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Medical Jet Crashes in Philadelphia, No Confirmed Survivors; Israel -Hamas Ceasefire Leads to Hostage Releases; Deadly Mid-Air Collision Over D.C. , Black Boxes Recovered; Trump Imposes New Tariffs on Canada, Mexico , China; Madison Keys Wins Australian Open, First Major Title. Aired 7-8a ET Medical jet crashes in Philadelphia neighborhood, massive explosion leaves authorities searching for survivors amidst widespread damage and eyewitness shock. Israel -Hamas ceasefire leads to hostage releases, emotional reunions, and complex negotiations over future Palestinian prisoner exchanges and regional stability. Deadly mid-air collision over Washington D.C. leaves dozens dead, investigators recover black boxes to determine cause of catastrophic crash. Trump administration implements new tariffs on Canada, Mexico , and China, raising concerns over economic impact and international trade relations. Madison Keys wins Australian Open, proving kindness and determination can coexist in professional tennis, inspiring future generations of athletes. [07:00:00] VICTOR BLACKWELL, CNN ANCHOR: Good morning. Welcome to CNN THIS MORNING. It is Saturday, February 1st. I'm Victor Blackwell. AMARA WALKER, CNN ANCHOR: It is the first day of February. I'm Amara Walker. Thank you so much for being with us. We begin this morning in Philadelphia where a medical jet carrying six people crashed into a neighborhood and we warn you the video may be disturbing to some. The jet had just taken off from a northeast Philadelphia airport carrying a child patient and her mother along with four crew members, a pilot, co-pilot, doctor, and paramedic. At this time, authorities cannot confirm any survivors. BLACKWELL: You see the video here the crash caused this massive explosion that affected homes and vehicles in the area. Video obtained by CNN shows the moment witnesses saw the plane fall from the sky, and then burst into flames.
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Musk Tightens Grip On Government With Oversight Of More Agencies; Pam Bondi Sworn In As Attorney General; Trump Takes Action To Ban Trans Women From Women's Sports. Aired 9-10p ET Elon Musk tightens grip on government with the oversight of more agencies, with FAA becoming the latest focus of Musk's Efficiency team. Pam Bondi sworn in as the United States Attorney General. President Donald Trump takes action to ban trans women from women's sports [21:00:00] ANDERSON COOPER, CNN HOST, ANDERSON COOPER 360: Culver reporting-- DAVID CULVER, CNN SENIOR NATIONAL CORRESPONDENT: --have to continue. COOPER: David, we have you back. You have about 30 more seconds. Sorry. CULVER: Yes, you got me now? COOPER: Yes. CULVER: No worries. Out here, on Palm Beach County . I mean, there are aspects of this county that obviously are quite rural. But no, the farmers that we spoke with, as they support President Trump, they also believe that he has to move forward with this, Anderson. They say, really, you look at the food supply in this country, and it is reliant on these workers.
## 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump's Freeze On Federal Aid Money Takes Effect At 5PM ET; New Jet Breaks Sound Barrier On Historic Test Flight. Aired 4-5p ET At 5:00 p.m. Eastern today, the Trump administration will pause all activities related to obligations or disbursement of all federal financial assistance. The XB-1 demonstrator is a major milestone for the company Boom Supersonic, which hopes to launch a 55-seat supersonic airliner, something that could reshape both commercial aviation and the military. [16:00:01] BORIS SANCHEZ, CNN HOST: In a post on X, Google explained that it has a long standing practice of applying name changes when they've been updated in official government sources. The name will be tweaked when the geographic names information system is updated. Google apparently also is going to change the name of Mount McKinley, the nation's highest peak from Denali. Remember, former President Barack Obama renamed the Alaska landmark to Denali in 2015 as a nod to the region's native population, who had been calling it that for way longer than anybody had called it Mount McKinley. BRIANNA KEILAR, CNN HOST: That's right.
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trump Announces Sweeping Tariffs On China, Canada, Mexico ; One- On-One With Former Treasury Secretary Larry Summers. Democrats Pick Minnesota 's Ken Martin as New DNC Chair; Trump Nominees Clean Up Past Comments Before Senate; Can Democrats Retake the House Majority Next November? Aired 8-9a ET This weekend, the Democratic National Committee elected Ken Martin as chairman. He got some daunting tasks ahead, most urgently helping the party rebuild, figuring out how to take on Trump and ultimately win again. President Trump's nominations of Tulsi Gabbard as director of National Intelligence and Robert F. Kennedy Jr. to lead the nation's health agencies are the most in danger of collapsing in the Senate. Republicans could be in a world of hurt next November, that's if history is any guide. In modern history, the party in power tends to lose an average of 26 House seats in the midterms. President Trump is sparking a trade war with America 's largest trading partners, injecting fresh tension with the nation's neighbors, whose economies have become intertwined over the past several decades. One-on-one interview with former Treasury Secretary Larry Summers. [08:00:36] (BEGIN VIDEOTAPE) (MUSIC) MANU RAJU, CNN HOST (voice-over): Trade war. Trump slaps sweeping new tariffs on American adversaries and friends. DONALD TRUMP, PRESIDENT OF THE UNITED STATES : The tariffs are going to make us very rich. RAJU: Former Treasury Secretary Larry Summers on what it means for you. Plus, the political blowback and another dizzying week. Trump unveils a strict hiring freeze and FBI purge and a botched funding halt. My panel will break it down, and what to expect next.
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Laura Coates Interviews Former NYC Mayor Bill De Blasio; Setback After Setback For President Trump In The Courts; CBS News Poll Says President Trump Is Riding High Three Weeks Into His Term. Aired 11p-12a ET Judges assail Trump for allegedly violating temporary orders blocking his freeze on federal funding and his decision to fire most USAID employees. Former Mayor Bill De Blasio comments on cases filed against current NYC Mayor Eric Adams . Lawmakers have only until March 14th to pass a bill to keep the federal doors open. [23:00:00] SCOTT JENNINGS, CNN SENIOR POLITICAL COMMENTATOR: Can we please have headlights like what we had when I got my driver's license, which enabled me to both see the car and the road and not drive off into the side of a ditch. Bad, bright headlights. ABBY PHILLIP, CNN ANCHOR: You know, I think you're right about that. Those types of headlights, they're designed for you as the driver to be able to see, but nobody else can see on the road. JENNINGS: Yes.
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Musk Takes Center Stage at Trump's First Cabinet Meeting; Israel, Hamas Agree on New Exchange as Fragile Ceasefire Appears Intact; Crowds Line Streets to Mourn Bibas Family Who Were Killed in Gaza. Aired 2-2:30p ET Elon Musk took center stage at President Donald Trump's first Cabinet meeting, wearing a "tech support" T-shirt and emphasizing his role in cutting the federal workforce as head of the Department of Government Efficiency, while also addressing death threats he received, directing federal employees to justify their jobs or face termination, and prompting confusion before the administration clarified that responses were voluntary, all as Trump jokingly dismissed any Cabinet dissatisfaction with Musk's influence. Israel and Hamas reached an agreement to exchange the bodies of four Israeli hostages for hundreds of Palestinian prisoners and detainees, preserving a fragile ceasefire, as funerals were held for members of the Bibas family whose remains were returned last week, while disputes continued over the cause of their deaths, and President Trump's special envoy prepared to visit the region to negotiate an extension of the deal. Thousands of Israelis lined the funeral procession route for Ariel, Kfir, and Shiri Bibas, whose bodies were returned by Hamas amid conflicting claims over their deaths, while their grieving family criticized Prime Minister Netanyahu's government for its handling of the hostage crisis, as a renewed ceasefire deal was reportedly reached to exchange more hostage bodies for Palestinian prisoners. (COMMERCIAL BREAK) [14:00:44] BORIS SANCHEZ, CNN HOST: President Donald Trump loves to put on a show. And the headliner at his first cabinet meeting was Elon Musk touting DOGE's sweeping cuts and mass firings. As President Trump warns workers who don't respond to that billionaire's, what did you do last week? Email saying they are now, quote, on the bubble. And the White House facing backlash after the President posts a bizarre AI Video of a reimagined Gaza depicting the war torn region as a vacation destination, complete with a golden statue of Trump and a sunbathing Benjamin Netanyahu. JESSICA DEAN, CNN HOST: And the Supreme Court hears a key DEI case, why an Ohio woman believes she was the victim of what she calls reverse discrimination at her job. We're following these major developing stories and many more all coming in right here to CNN News Central.
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump Pardons January 6th Rioters; Skye Perryman is Interviewed about a Lawsuit against DOGE; CNN Original Series on Kobe Bryant. Aired 9:30-10a ET Donald Trump defends pardoning January 6th rioters after bipartisan backlash. Skye Perryman is interviewed about DOGE being hit with lawsuits over transparency. The CNN original series "Kobe: The Making of a Legend" premieres Saturday on CNN. (COMMERCIAL BREAK) [09:30:48] JOHN BERMAN, CNN ANCHOR: All right, new reporting from "Axios" this morning details the private back and forth amongst President Trump's team over how many January 6th rioters to pardon. An adviser tells "Axios" the president said, quote, "f it, released them all." Another round of January 6th defendants was released from a Washington, D.C. , jail overnight. You can see pictures of it right there. With us now is Adam Kinzinger, CNN's senior political commentator, former Republican congressman who sat on the House committee investigating the January 6th insurrection.
## 168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOJ Moves To Dismiss Mayor Eric Adams (D- New York City , NY ) Case Amid Protest Resignations; Trump White House Didn't Realize Firings Included Nuke Stockpile Staff; Vice President Vance Railed On European Leaders In Munich; J.D. Vance Meets With Far-Right Party Leader Of Germany ; Associated Press Barred From Oval Office And Travelling With President Trump. Aired 10-11p ET Trump border czar warns Adams not to violate agreement. More DOJ officials resign in protest of dropping Adams case. Official says, Trump DOJ will need coward to toss Adams case. Trump White House fired stockpile staff, unaware of their mission. Vice President J.D. Vance attended the Munich Security Conference, his first international speech and accusing European leaders of suppressing free speech, failure to halt illegal migration and running in fear from voters' true beliefs. Vice President J.D. Vance met with the leader of Germany 's far-right party, the AfD. The Associated Press had been barred indefinitely inside the Oval Office and Air Force One over a dispute of terminology regarding Gulf of Mexico. [22:00:00] (BEGIN VIDEO CLIP) SARA SIDNER, CNN HOST (voice over): Tonight, saying the quiet part not just out loud but on national TV. TOM HOMAN, BORDER CZAR: If he doesn't come through, I'll be in his office up his butt saying, where the hell is the agreement we came to? SIDNER: The Trump administration bragging about a deal, as another prosecutor says, find a different fool to do their bidding. Plus, the sum of all firings, the Trump layoffs come for the men and women tasked with managing the nation's nukes.
## 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Will There Be Political Fallout For J6 Pardons; Trump Calls For Full Release Of JFK, RFK, MLK Assassination Files. Four Israeli Female Hostages Returned To Israel As Part Of Ceasefire Deal. Aired 9-10a ET Four Israeli female hostages were returned to Israel as part of the ceasefire deal. The federal judges in Washington, D.C. , who handled hundreds of cases from January 6, 2021, are pushing back against President Donald Trump's mass clemency for convicted rioters, rebuking the newly pardoned as "poor losers" and memorializing the "blood, feces, and terror" from the U.S. Capitol attack. President Trump is calling for a plan within the next 13 days for the full release of President John F. Kennedy's assassination files and a plan within 43 days for the assassination records of Senator Robert F. Kennedy and Dr. Martin Luther King Jr. VICTOR BLACKWELL, CNN ANCHOR: With me and the show on Instagram, TikTok X and BlueSky. If you missed a conversation or story, check out CNN.com/Victor-Blackwell-First-Of-All to watch anytime and you can listen to our show as a podcast wherever you get your podcast. Thank you so much for joining me today. I will see you back here next Saturday at 8:00 a.m. Eastern. Smerconish starts right now. [09:00:30]
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            All 67 People Involved In Plane-Helicopter Collision Killed; Trump Baselessly Links Diversity Initiatives To Collision; Figure Skating Community Mourns Members Killed In Crash. Aired 5:30-6a ET There were no survivors after Wednesday's midair collision between an American Airlines jet and a U.S. Army Black Hawk helicopter in the Washington, D.C. , area. In the first national tragedy of his second term in the White House, President Donald Trump wasted no time Thursday baselessly blaming Democrats and diversity initiatives in the federal government for the midair collision that killed 67 people over the Potomac River . Once again, figure skaters representing the past, present and future of the sport perished in a catastrophic plane crash -- devastating a global community far too familiar with tragedy. [05:30:00] KASIE HUNT, CNN ANCHOR: All right, it's 5:28 a.m. here on the East Coast. A live look at the Washington Monument here in the nation's capital which, of course, has been in mourning since that horrible plane crash a night or so ago. Good morning, everyone. I'm Kasie Hunt. It's wonderful to have you with us. There are no survivors. There are only questions after the deadly collision between an American Airlines jet and an Army helicopter near Reagan National Airport.
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        White House Holds First Press Briefing Of Trump's Second Term. Aired 1:30-2p ET The new press secretary, Karoline Leavitt, held the first White House press briefing of the new Trump administration, answering questions, including on the border crackdown, immigrant deportations, I.G. and DOJ prosecutor firings, tariffs, egg prices and more. [13:30:00] KAROLINE LEAVITT, WHITE HOUSE PRESS SECRETARY: -- illegal immigrants from this country. But the president has said that, of course, the illegal drug -- criminal drug dealers, the rapists, the murderers, the individuals who have committed heinous acts on the interior of our country and who have terrorized law abiding American citizens, absolutely, those should be the priority of ICE. But that doesn't mean that the other illegal criminals who entered our nation's borders are off the table. UNIDENTIFIED REPORTER: Understood.
## 172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          White House Rescinds Controversial Federal Aid Freeze Memo; RFK Jr. Says He Is "Not Antivaccine" Despite Past Statements; RFK Jr. Grilled At Department Of Health Confirmation Hearing; Trump To Prepare Guantanamo To House 30,000 Migrants; Defense Secretary Hegseth Pulls Security Detail And Clearance For Trump Critic Gen. Mark Milley; Poor Test Scores Among U.S. Students Raise Concerns. Aired 5-6p ET The White House Office of Management and Budget on Wednesday rescinded a memo that froze federal grants and loans and created widespread confusion this week. Meta has agreed to pay President Donald Trump $25 million to settle a 2021 federal lawsuit alleging First Amendment violations and other claims following the company suspending him from Facebook and Instagram in the wake of the Jan. 6 attack on the Capitol. Kennedy's hearing was contentious, with Democrats pressing him on inflammatory and inaccurate statements he has made in the past on vaccines, COVID-19 and other topics. [17:00:00] JAKE TAPPER, CNN HOST: Making little improvement in math. Why? And are there any silver linings in the results at all? Plus, President Trump announcing a new phase of his crackdown on illegal immigration, saying the government is preparing to house tens of thousands of these undocumented migrants at Guantanamo Bay , Cuba , the Navy base well known for its detention camp where the United States holds terrorism detainees. But does it have a migrant processing center there? We're going to go live to Cuba ahead. And leading this hour, that sweeping freeze on federal aid that confused millions of Americans and sent cities, nonprofits and organizations scrambling yesterday was rather short lived. The White House has now rescinded the memo detailing that funding pause, reversing course less than two days after it was released. CNN's chief White House correspondent and anchor Kaitlan Collins live for us at the White House as is our treat to have her every 5:00 p.m. at the top of the show. Kaitlan, the White House insisted that this memo was straightforward, clear as day, not at all confusing. So why'd they rescind it?
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              U.S. Stocks Fall as Trump's Tariff Package is About to Take Effect; American Among Three Hostages Set to be Freed From Gaza Tomorrow. Aired 3:30-4p ET U.S. Stocks fall as Trump's tariff package is about to take effect. An American among the three hostages set to be freed from Gaza tomorrow. [15:30:00] BORIS SANCHEZ, CNN HOST: Wall Street is clearly signaling its concern with the Dow falling just as the White House confirmed this afternoon that within the next 24 hours, President Trump is set to put in place new tariffs on goods coming into the United States from Canada, Mexico and China, and that is stoking fears of inflation. In one survey of economists, 95 percent agree that tariffs will likely mean higher prices for consumers. Let's discuss this new data with Mark Zandi, the chief economist at Moody's. Mark, thanks so much for sharing part of your afternoon with us. These tariffs looming over the weekend, the White House would not give details on whether there would be exceptions for things like oil products. I wonder how you think the markets and consumers are going to be affected by this. MARK ZANDI, CHIEF ECONOMIST, MOODY'S: Well, Boris, it depends, right? It depends on how high the tariffs are, which products, if there are going to be exemptions or carve outs, how long the tariffs will be in place. So there's a lot of imponderables, which, you know, highlights one of the problems with tariffs, and that is it creates a lot of uncertainty for businesses and consumers and, you know, is a problem for economic growth.
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Justice Official Resign In Protest Of Order To Drop Adams Case; 14 States Sue Over Elon Musk's Unconstitutional Authority. HHS Secretary RFK Jr. Wants To Be The One Who Reprograms Americans To Eat Differently; Clay Travis Gets Graphic With His Words. Aired 10-11p ET RFK Jr. says he does not want to take away choice from people. Because of Trump's win, Clay Travis being put on panels to talk about serious things and then saying graphic things. Manhattan's US attorney on resigned rather than obey an order from a top Justice Department official to drop the corruption case against New York City 's mayor, Eric Adams. A group of 14 states sued Elon Musk and President Donald Trump arguing that the authority the White House granted the tech billionaire and his advisory Department of Government Efficiency is unconstitutional. [22:00:00] ABBY PHILLIP, CNN ANCHOR: Tonight, a letter and the law. Manhattan's top prosecutor quits, but not before writing out her reasons why, and accusing Trump's Justice Department of accepting a quid pro quo to go easy on New York City 's mayor. Plus, a photo op between India 's president and Elon Musk renews questions over if the billionaire is pulling the strings of President Trump. Also, would you like some kale with that? RFK Jr gets sworn in as Republicans learn to love telling everyone what they can and cannot eat. And measuring the men --
## 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump to Sign Laken Riley Act Into Law; WH Says Federal Aid Freeze Still in Effect; Fed Leaves Interest Rates Steady, Despite Trump Demands. Aired 2-2:30p ET United States President Donald Trump on Wednesday signed the Laken Riley Act, requiring immigration authorities to detain undocumented migrants charged with theft or other misdemeanors, in a White House ceremony attended by Riley's family, marking his first law since returning to power and emphasizing that America would never forget the 22-year-old nursing student killed by an undocumented migrant in February 2024-a case that fueled migration debates before Trump's election victory over Kamala Harris, leading to the law's bipartisan approval despite opposition from migrant rights activists, who warned it could trigger mass raids and undermine due process, while also granting state attorneys general new powers over migration policy and pressuring the State Department to deny visas to countries refusing U.S. deportations, with implementation expected to cost over $3 billion, as Trump, who made migration a key campaign issue, urged agencies to increase daily apprehensions and hinted at further legislation to crack down on "criminal aliens." The White House confirmed Wednesday that the federal funding freeze remains in effect despite rescinding an OMB memo ordering it, with spokesperson Karoline Leavitt clarifying this was to address confusion after a judge's injunction delayed implementation, as the freeze-meant to align spending with Trump's executive orders on "Marxist equity, transgenderism, and green new deal policies"-sparked uncertainty and was linked to Medicaid reimbursement issues, drawing criticism from officials like New York Attorney General Letitia James and Maryland Governor Wes Moore, while Acting OMB Director Matthew Vaeth's new memo formally rescinded the directive and advised agencies to consult legal counsel on enforcing Trump's orders. The Federal Reserve kept its benchmark interest rate unchanged Wednesday after three consecutive cuts last year, signaling a cautious approach as it assesses inflation trends and potential Trump policies, while noting a "solid" job market and "somewhat elevated" inflation-factors that could limit future cuts; Fed Chair Jerome Powell, in a news conference, declined to comment on Trump's recent remarks about lowering oil prices and "demanding" rate cuts, stating he had "no contact" with the president on the matter. (COMMERCIAL BREAK) [14:00:52] BORIS SANCHEZ, CNN HOST: The Federal Reserve is set to announce its decision on interest rates imminently. Will the independent agency fly in the face of President Trump's repeated calls for rate cuts? Also, just moments from now, the President is set to sign the Laken Riley Act, the first piece of legislation of his second term, one that has major implications for the administration's immigration crackdown. JESSICA DEAN, CNN HOST: And the President's nominee for Health Secretary is under the microscope. Robert F. Kennedy, Jr. telling lawmakers he is not anti-vaccine despite an extensive record of linking inoculations to autism in children. Also, we're going to have much more on this breaking news. The White House Budget Office sending out a new memo saying it's now rescinding the pause on federal aid and of course had prompted a lot of chaos and confusion. Well, there's more of that.
## 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Trump Wants Dept. Of Education To Be "Closed Immediately"; Trump Speaks With Russia 's Putin & Ukraine 's Zelenskyy; Democrats Bash Musk In First DOGE Subcommittee Hearing; Rep. Jasmine Crockett, (D- TX ), Is Interviewed About DOGE Subcommittee Hearing, Elon Musk; Trump Plan To Slash USAID Could Cost U.S. Farmers Billions. White House Bars Associated Press Over "Gulf Of America"; CNN Speaks With The Attorneys Who Managed Prisoner Swap; U.S. Hit By Most Intense Flu Season In 15 Years. Aired 5-6p ET The Associated Press said the White House barred its reporter from Tuesday's Oval Office executive order signing because of the AP style guidance on using the name Gulf of Mexico versus Gulf of America. Accused Russian money launderer Alexander Vinnik is being released from U.S. custody in exchange for Marc Fogel, the release of Fogel in exchange for Vinnik comes as President Donald Trump has renewed his focus on trying to quickly end the war in Ukraine , on Tuesday, he suggested that the release of Fogel was a "good faith" gesture by the Russians, on Wednesday, Trump spoke with Russian President Vladimir Putin about war and said negotiations to end it will begin "immediately." The U.S. winter virus season is in full force, and by one measure is the most intense in 15 years, one indicator of flu activity is the percentage of doctor's office visits driven by flu-like symptoms, last week, that number was clearly higher than the peak of any winter flu season since 2009-2010, when a swine flu pandemic hit the nation. The president said he wants the Education Department to be closed immediately, describing it as a "big con job," as he praised the efforts by Elon Musk's Department of Government Efficiency to slash federal spending. President Donald Trump said negotiations to end the war in Ukraine will start "immediately" after his call with Russian President Vladimir Putin. He also spoke with Ukrainian President Volodymyr Zelenskyy. A war on waste turned into a war of words today on Capitol Hill. The subcommittee of the Department of Government Efficiency, DOGE, held its first hearing today, ostensibly aimed at improving efficiency within the federal government. However, the hearing quickly devolved into some pretty inefficient bickering between Democrats and Republicans. And while Elon Musk was not there, he was certainly top of mind for congressional Democrats. American businesses feeling the squeeze from the economy. They're dealing with rising inflation, hitting 3 percent for the first time since last June. There is also, of course, President Trump's tariffs on steel and aluminum that could result in increased U.S. manufacturing costs and the president's attempts to slash USAID, the main agency that oversees foreign aid, that is having a big blowback when it comes to the American farmer. [17:00:00] JAKE TAPPER, CNN HOST: Kansas Farmers Union is warning, yes, possibly. And the group's executive director is here to explain why. And leading this hour, President Trump moments ago making news on a wide range of issues in the Oval Office, detailing his phone calls with Russian President Vladimir Putin and Ukrainian President Volodymyr Zelenskyy, defending Elon Musk's efforts to shrink the federal government and saying he wants to close the Department of Education immediately. Let's bring in Kaitlan Collins at the White House for us. Kaitlan, let's start with the major international news. These calls that President Trump made with the leaders of Russia and then afterwards, Ukraine .
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Court Rules U.S. Treasury Department Officials Affiliated with Department of Government Efficiency May Access Treasury Department Systems as Read Only; President Trump to Speak at National Prayer Breakfast; NTSB, FAA Investigators to Brief Lawmakers on Midair Collision. Aired 8-8:30a ET A court rules that U.S. Treasury Department officials affiliated with the Department of Government Efficiency may access Treasury Department systems as read only. President Trump will speak at the National Prayer Breakfast. NTSB and FAA investigators are set to be briefing lawmakers on Capitol Hill regarding the tragic mid-air collision between the passenger jet and the military helicopter in Washington, DC [08:00:00] SARA SIDNER, CNN ANCHOR: It sort of gives shivers down your spine that this is not completely contained and that it's sort of morphing and changing. Meg Tirrell, thank you so much. I really appreciate it. A new hour of CNN NEWS CENTRAL starts right now. KATE BOLDUAN, CNN ANCHOR: President Trump set to speak just minutes from now on Capitol Hill, but he's already talking this morning on social media, making sure everyone knows he is serious about his Gaza proposal, even as his staff tries to walk it back. And health officials are sounding alarm over a DEI watchlist, saying it's racist and plainly trying to threaten, intimidate, and scare.
## 178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              IDF Says Former Hostages Are Now At Israeli Military Base; Hegseth Confirmed As Defense Secretary After Tie-Breaking Vote; Advocate Groups Ordered To Stop Aiding Refugees Who Have Already Arrived In U.S. ; White House Requesting Help Form State And Local Governments To Enforce Immigration Law; Trump GOP Leaders Threaten Conditions On California Disaster Aid; Southern California Braces For Rainfall Amid Wildfire Recovery; Four Former Israel Hostages Arrive At Hospital; Putin Claims " Ukraine 's Crisis" May Have Been Averted Had Trump Been President. Aired 7-8a E.T. Four Israeli hostages released after 15-month captivity by Hamas, marking a pivotal moment in fragile ceasefire negotiations. Trump's immigration crackdown escalates with raids, deportation flights, and controversial policies targeting refugees, drawing sharp domestic and international criticism. Pete Hegseth confirmed as Secretary of Defense in polarizing 51-50 Senate vote, raising debates on leadership and qualifications. (COMMERCIAL BREAK) [07:00:44] VICTOR BLACKWELL, CNN ANCHOR: Good morning. Welcome to CNN THIS MORNING. It is Saturday, January 25th. I'm Victor Blackwell. AMARA WALKER, CNN ANCHOR: Good to have you with us. I'm Amara Walker. We are following several developing stories this morning and we begin with breaking news out of the Middle East. BLACKWELL: Four Israeli female hostages are now back in Israel at a military base. WALKER: Four women are Israeli soldiers Hamas held captive for 15 months before the ceasefire and hostage deal brought about their release. The women were surrounded by both Hamas and Islamic Jihad fighters. They were then turned over to the Red Cross in Palestine Square in Gaza City.
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sabrina Singh is Interviewed about the Pentagon Shakeup; W. Kamau Bell is Interviewed about Performing at the Kennedy Center; SAG Awards Balance Jokes with Heaviness. Aired 9:30-10a ET Sabrina Singh is interviewed about President Trump firing top U.S. generals in an abrupt shakeup at the Pentagon. W. Kamau Bell is interviewed about still performing at the Kennedy Center while other artists are pulling out. The SAG Awards balance jokes with the heaviness of the world. [09:30:00] PETER NAVARRO, SENIOR TRADE AND MANUFACTURING ADVISER, TRUMP ADMINISTRATION: That these big countries that need to export into this market, they lower their prices. And then as the trade deficit comes down, the dollar gets stronger, which gives us more purchasing power for imports, that offsets some more of it, supply chains move around and then eventually we get a lot of investment here. When we put in the steel tariffs, we had $15 billion in new investment in that industry. What does that do? It gives you more capital to labor, more machines for people, that increases productivity, and wages grow up - go up. So, that's why we saw the last time around tariffs didn't create inflation, all they created was a level playing field. And I think -
## 180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Chaos, Confusion Erupts After Trump Halts Federal Money; Judge Temporarily Blocks Trump's Plans To Freeze Federal Aid; Trump Officials Issue Quotas To ICE Officers To Up Arrests; Oklahoma Official Supports Trump Agenda On Deportation Of Undocumented Migrants; Armed Man Arrested At The Capitol; RFK Jr. Slammed By Own Cousin. Aired 10-11p ET Trump's sudden freeze on federal spending triggers chaos. Trump's aid freeze sows chaos from Medicaid to food stamps. GOP lawmaker suggests kids work instead of getting free lunch. Walz on Trump's spending freeze, the resistance is strong. DHS Chief Kristi Noem joins ICE raids in New York . Will employers of undocumented immigrants be prosecuted? Oklahoma State Superintendent Ryan Walters says he will support Trump agenda by giving information about students in their schools so they can make the decisions on how to deport families together and how to identify criminals in their school system. An armed man has been arrested at the Capitol, accused of threatening to kill members of the Trump administration. Hours before RFK Jr.'s confirmation hearing on Capitol Hill, senators are get a scathing letter slamming him from his own cousin, Caroline. [22:00:00] (BEGIN VIDEO CLIP) ABBY PHILLIP, CNN HOST (voice over): Tonight, he came in like a wrecking ball. Donald Trump orders a federal funding freeze, forcing states to claw for cash that pays for American essentials. Plus, as coast to coast raids grab headlines, could signing checks undocumented migrants cashed put employers in the crosshairs. Also a liar, a cheat and a predator, Caroline Kennedy brings a blood feud with her cousin -- CAROLINE KENNEDY, FORMER U.S. AMBASSADOR TO AUSTRALIA: Bobby himself is a predator.
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Jeffries On White House Funding Mess: "Round One Goes To Team America "; RFK Jr. Grilled; Migrants To Gitmo? Aired 7-8p ET Democrats are celebrating a win after Trump backtracks on his attempt to freeze federal funding. Democrats are tearing into RFK, Jr. about vaccines and his role in a deadly measles outbreak. Trump is now announcing plans to send up to 30,000 migrants to Guantanamo Bay, promising to send what he claims are the worst criminal migrants to the military base. [19:00:34] ERIN BURNETT, CNN HOST: OUTFRONT next: Victory. Democrats are celebrating a win after Trump backtracks on his attempt to freeze federal funding. The president, though, is saying he is not reversing course. Plus, a brutal grilling. Democrats tearing into RFK, Jr. about vaccines and his role in a deadly measles outbreak. The governor of Hawaii , also a doctor, who helped deal with the fallout from Kennedy's vaccine claims, is my guest. And breaking news, Trump now announcing plans to send up to 30,000 migrants to Guantanamo Bay, promising to send what he claims are the, quote, worst criminal migrants to the military base. Let's go OUTFRONT.
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trump Proposes U.S. Take Over Gaza To Be Riviera; Trump Not Ruling Out Sending Troops To Take Over Gaza; Speechless Democrats On Trump Wanting To Seize Gaza, Insane; CIA Offers Buyouts To Its Entire Workforce; Democrats Versus Elon Musk. Aired 10-11p ET Trump says, U.S. will own Gaza to be Riviera of Middle East. Trump says U.S. will take over Gaza, Palestinians should leave. Trump says, the U.S. will take over Gaza Strip and own it. Trump says Palestinians should leave hell of Gaza. Trump says, Palestinians should permanently leave homeland. Netanyahu to Trump, you're the greatest friend to Israel ever [22:00:00] ABBY PHILLIP, CNN HOST: Good evening. I'm Abby Philip in New York . Let's get right to what America is talking about, an explosive proposal. Tonight, it appears President Donald Trump is willing to use American soldiers as an occupying force in Gaza. His plan, according to the few concrete details that he spelled out this evening, while standing next to Israel 's hardline prime minister, hinges on the U.S. seizing the Gaza Strip, yes, you heard that right, and permanently relocating 2 million Palestinians who live there. (BEGIN VIDEO CLIP) DONALD TRUMP, U.S. PRESIDENT: The only reason the Palestinians want to go back to Gaza is they have no alternative. It's right now a demolition site. They can live out their lives in peace and harmony instead of having to go back and do it again.
## 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Judge Blocks Trump from Putting Many USAID Workers on Leave Tonight; Trump Says, I Plan to Fire Some January 6 Investigators; Trump Says He is Revoking Biden's Security Clearance. Trump Says He Is Revoking Biden's Security Clearance; Eagles Standing In The Way Of Chiefs' Historic Super Bowl Three-Peat. Aired 6-7p ET Tonight, President Trump is blocking Biden's security briefings and a security clearance. This Sunday, the Philadelphia Eagles are all that remained between the Kansas City Chiefs and an historic Super Bowl three-peat. Judge temporarily blocks Trump from putting at least 2,200 USAID workers on leave. Prosecutor Says, Elon Musk sent DOJ list of people to investigate. Musk rehiring DOGE staffer who resigned over racist posts. [18:00:00] JIM SCIUTTO, CNN ANCHOR: Happening now, breaking news, a setback for the Trump administration's dismantling of USAID, a federal judge temporarily blocking plans to put thousands of employees of the humanitarian aid agency on leave tonight. We're taking a closer look at how the organization has helped needy people around the world. Plus, the president says he is planning to fire some FBI agents who worked on January 6th investigations. Those agents at risk of retribution after the Bureau just turned over their names to the Justice Department. Welcome to our viewers in the United States and around the world. Wolf Blitzer is off. I'm Jim Sciutto. And you're in The Situation Room.
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Administration Puts Dozens Of USAID Senior Officials On Paid Leave; White House Pauses All Federal Grants And Loans; Lawsuit: Electric Sparking Caught On Video Started Eaton Fire. Aired 7:30-8a ET Overnight the Trump administration placed dozens of senior USAID officials on leave, as the acting administrator accused them of trying to circumvent the president's executive order freezing almost all foreign aid. The White House budget office has ordered a pause on all federal grants and loans, according to an internal memorandum sent Monday, potentially impacting trillions in government spending and halting public programs that affect millions of Americans. Video from a gas station security camera shows what a new filing in a lawsuit alleges is the start of this month's deadly Eaton Fire in the Los Angeles area - electrical sparking at a utility transmission tower in the hilly Eaton Canyon area near the Altadena community. (COMMERCIAL BREAK) [07:30:10] KATE BOLDUAN, CNN ANCHOR: Overnight the Trump administration placed dozens of senior USAID officials on leave. The acting administrator accusing them of trying to circumvent the president's executive order freezing almost all foreign aid. CNN's Alex Marquardt has much more and is tracking this developing story for us. Good morning, Alex. ALEX MARQUARDT, CNN CHIEF NATIONAL SECURITY CORRESPONDENT: Good morning, Kate. This could have a major impact on all kinds of projects around the world that are so reliant on U.S. aid money.
## 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Elon Musk Dominates Trump's First Cabinet Meeting; Musk Takes Financial Hit Amid Tesla Protests; Jeff Bezos Faces Backlash Over WAPO Changes; New battle emerges over fate of Medicaid; Supreme Court Takes on "Reverse Discrimination" Case; CNN Presents " America Asks." Aired 11p-12a ET Trump gave Musk the floor to talk about DOGE and his grievances at the first Cabinet meeting. Tesla stock keeps stumbling as Musk helms political role. Jeff Bezos overhauls WAPO op-ed section after vowing independence. Democrats warn new House budget could slash Medicaid. Supreme Court poised to rule for straight woman in bias case. Laura Coates and guests answer viewers' Trump questions [23:00:00] SCOTT JENNINGS, CNN POLITICAL COMMENTATOR, FORMER SPECIAL ASSISTANT TO PRESIDNET TO PRESIDENT GEORGE W. BUSH: But I just want a chance. I promise you, I will not -- ABBY PHILLIP, CNN ANCHOR AND SENIOR POLITICAL CORRESPONDENT: That's not -- JENNINGS: -- I will not disappoint you. (LAUGHTER)
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Musk Prepares For Cabinet Meeting As Mass Firings Loom; Andrew Cuomo Readies Controversial Comeback; New Revelations In Idaho College Murders Case. Aired 11p-12a ET Musk's presence at Trump's first cabinet meeting will solidify his power in the administration and how quickly he amassed it despite not being elected or Senate confirmed, but Musk's attendance comes as his attempts to gut the federal workforce and reshape it in Trump's image, including giving orders to employees across the government, has begun to grate on cabinet secretaries and members of Congress . Sources: Andrew Cuomo is on verge of entering NYC mayoral race. New court documents reveal how DNA led to Kohberger as suspect [23:00:00] SCOTT JENNINGS, CNN POLITICAL COMMENTATOR: Today's lunchboxes have no character, no soul, even if they have better have better insulation. So, my advice would be to bring back metal lunchboxes and that's a step in making the lunchroom and the school a better place. ABBY PHILLIP, CNN HOST: All right. And mine would be it's okay for your kids to be polite. This gentle parenting thing where you tell them they don't have to say please and thank you, that is not good, okay? Not good. Everyone, thank you very much. Thank you for watching "NewsNight." "Laura Coates Live" starts right now.
## 187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trump Funding Freeze Remains in "Full Force" Despite Rescinding Memo; Kennedy Confirmation Prospects Unclear After Combative Hearing; FBI Director Nominee Kash Patel In The Hot Seat; Defense Secretary Revokes Security Detail And Clearance For Trump Critic General Mark Milley; American Volunteer Fighters Killed And MIA In Ukraine . Aired 8-9p ET White House yesterday was claiming that there was no confusion or chaos over their federal funding freeze, but today they started backpedaling hard which compounded the confusion. Robert F. Kennedy Jr. nominated to lead the Department of Health and Human Services on Capitol Hill and in the hot seat about his past statements regarding vaccines and public health. HHS nominee clashes with Dems over past comments about vaccines; General Mark Milley faces investigation into his conduct; FBI Director pick Kash Patel set to testify at confirmation hearing Thursday, he has history of attacking intel community; Growing number of MIA American volunteer fighters in Ukraine , Pro- Russian trolls target families of American volunteer fighters killed on Ukraine frontlines. TONY ROBBINS, ENTREPRENEUR AND AUTHOR: If we've got a compelling tomorrow and I really believe it's going to take a long time, it's going to be rough. But LA is going to be a brand new city. Everything's going to be new at a whole different level. And, you know, it's kind of the hero's journey. We know the oldest story in humanity is the hero's journey. You're living your life normally and then bam, something comes and disrupts it. Somebody gets cancer in your family, your house burns down, something, and it's -- they call it the call to adventure because it makes us do new things. I had to go find a new home and we find new friends and we begin with new mentors and I started some new businesses and out of that house burning down a lot of incredible things came from it. I'm not namby-pamby about this positive thinking but if all you do is focus on loss, you'll have no future.
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Defending DOGE: Musk & Trump Questioned On Aggressive Overhaul; Trump Repeats Gaza Plan: "We're Going To Take It"; Marc Fogel Lands In U.S. After Trump Secures Release. Aired 9-10p ET Defending DOGE: Elon Musk, Department of Government Efficiency, and President Donald Trump, questioned on aggressive overhaul. President Donald Trump repeats Gaza plan: "We're going to take it." Marc Fogel lands in U.S. , after President Trump secures his release JASON CARROLL, CNN NATIONAL CORRESPONDENT: And Anderson, farmers say, one of the issues that is so frustrating to them is trying to dispel all of the misinformation, they say, that is circulating among consumers. Going forward, they also say, knowing as much as they can, about the disease, is one of the best ways that they have to fight it. Anderson. ANDERSON COOPER, CNN HOST: Jason Carroll, thanks so much.
## 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Elon Musk Touts Government Firings by Wielding Chainsaw; Kash Patel Critics Warn of Purge as He Takes Over FBI; Ex-NFL Punter Arrested After Anti-MAGA Protest; Joe Rogan Dethroned as Fans Sound Off; Musk Eyes Major Change to "X" Platform; U.S. -Canada Tensions Spill Onto the Ice for Final Grudge Match. Aired 11p-12a ET Elon Musk touts cuts by waving chainsaw at CPAC amid chaotic firings. Kash Patel vows "no politicization" at FBI despite "deep state" claims. Former NFL punter Chris Kluwe was arrested after appearing at a Huntington Beach City Council meeting and denouncing President Donald Trump and his "Make America Great Again" movement. Joe Rogan fans angered over his glowing Elon Musk coverage. Elon Musk claims X's Community Notes being "gamed" by media and government. Canada defeats USA 3-2 in politically-tinged hockey final [23:00:00] UNKNOWN: -- saying that because he completely disagrees, but it's so obvious it's not even -- UNKNOWN: I'm with the husband. ABBY PHILLIP, CNN ANCHOR AND SENIOR POLITICAL CORRESPONDENT: All right -- UNKNOWN: My epic answer, Abby, would be Arnold Schwarzenegger, who I was Lieutenant Governor with, and Hulk Hogan. Just imagine that. Six foot, seven, 300 pound, Arnold Schwarzenegger, 28-inch arms going at it. That would be epic. I'm taking Arnold Schwarzenegger. PHILLIP: Me, too. UNKNOWN: Me, too.
## 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trump Says Musk Head Of DOGE, White House Says He's Not; Trump Dodges On Musk Decisions, Firings And Resignations; Steve Bannon Says, Elon Musk Is Parasitic Illegal Immigrant; MAGA Universe Says SNL Skit Reviled Them; Michigan Judge Sentences Shoplifters To Wash Cars For Free In A Walmart Parking Lot. Aired 10-11p ET Contradictions over whether Musk is in charge of DOGE. White House insists Musk has no authority despite DOGE firing spree. Bannon says, Musk wants to impose freak experiments on U.S. [22:00:00] (BEGIN VIDEOTAPE) ABBY PHILLIP, CNN HOST (voice over): Tonight, who's in charge? Civil servants abandoned their government gigs to send a message as the Trump administration refuses to say -- BRIANNA KEILAR, CNN ANCHOR: does Elon Musk know he's not in charge of Doge? UNIDENTIFIED FEMALE: So, what is his role at DOGE? PHILLIP: Who's leading the president's? Great purge of the federal bureaucracy.
## 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Interview With Former U.K. Ambassador To The U.N. Sir John Sawers; Interview With Former U.S. State Department Official Josh Paul; Interview With The Head Of The Palestinian Mission To The U.K. Husam Zomlot; Interview With "Hard Truths" Director Mike Leigh; Interview With "Hard Truths" Actress Marianne Jean-Baptiste; How Rev. Jerry Falwell Targeted Abortion Rights; Dozens Of Families Still Waiting For Hostages To Return. Aired 11a-12p ET Donald Trump has been in office a week and already the strong arm of the U.S. president is making itself felt around the world. Out of the World Health Organization, out of the Paris Climate Accords again and gone for 90 days all U.S. foreign assistance while he checks whether it meets his policy goals. The week-long Middle East ceasefire is holding with more hostage and prisoner exchanges today. Trump's Secretary of State, the former senator Marco Rubio , was sworn in this week promising, among other things, to be the most pro- Israel administration ever. The new administration has sparked a wave of resignations and retirements from the State Department, some of it routine changeover. With a fragile ceasefire still holding for now, Israeli hostages are slowly being released while Gazans are returning to what's left of their dilapidated homes. But just a week in, from President Trump to the Israeli government, doubts already are being sown. How the powerful televangelist, Reverend Jerry Falwell wrote the playbook for this fight against abortion and followed it through right up until he died. there are more Israeli hostage releases this weekend. Some families can begin the process of recovery and healing. But for those still waiting, the agony grows ever deeper. [10:59:45] KARA SWISHER, PODCAST HOST: And so it's going to last a little bit longer to both his tolerance (ph) of shamelessness and forgiveness for heinous behavior. ABBY PHILLIP, CNN HOST: And I think Trump appreciates the power of X in the media landscape. Everyone, thank you very much. And you can catch Wendell in the hit CBS series "Elsbeth" and in Starz Network's "Raising Cain" starting March 7th. Thank you very much for watching "TABLE FOR FIVE". You can catch me every weeknight, 10:00 p.m. Eastern with our news night roundtable.
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Trump Hits Top Trading Partners Canada, Mexico , China With Tariffs; Secretary Duffy: We Are Going To "Surge" Air Traffic Controllers; NBA Trade Stunner: Doncic To Lakers And Davis To Mavericks. Aired 7:30-8a ET President Donald Trump announced extraordinary new tariffs on Mexico , Canada and China -- his administration saying tariffs are aimed at curbing the flow of drugs and undocumented immigrants into the U.S. Transportation Secretary Sean Duffy on Sunday vowed to boost the number of air traffic controllers and again blamed DEI less than a week after the D.C. air disaster for distracting his agency from its core mission. The Los Angeles Lakers are acquiring NBA superstar Luka Doncic, as well as Maxi Kleber and Markieff Morris from the Dallas Mavericks for Anthony Davis, Max Christie and the Lakers' 2029 first- round draft pick, both teams confirmed Sunday. [07:30:00] MATT EGAN, CNN REPORTER: The footwear industry is saying that there's going to be higher prices for sneakers and shoes for consumers. The oil industry wants to have lower tariffs on Canadian energy. The plastics industry says that jobs are going to be hurt, and manufacturing. Farmers are already saying that they're going to be hurt by retaliation, and they already want federal aid. We have the alcohol industry saying this is going to be bad for all of North America. And the housing industry is saying there's going to be higher home prices because they note that 70 percent of all imports into the U.S. of key manufacturing -- of key building materials come from Mexico and Canada. And in particular, we're talking about softwood lumber and gypsum. This is all coming from Mexico and Canada and it's going to get more expensive. So this is a situation that could cause the housing affordability crisis to get worse, especially when you think about the fact that we could see the Fed have to pause even longer on interest rate cuts, which means perhaps higher mortgage rates.
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Rep. Ryan Zinke (R- MT ) Speaks With CNN Following Protests Outside Office; CEO Warns Aluminum Tariffs Could Cost 100,000 American Jobs; Sen. Tim Kaine (D- VA ) On Senate Vote To End President Trump's National Energy Emergency. Aired 7:30-8a ET Rep. Ryan Zinke (R- MT ) discusses protesters who appeared outside his local offices in Missoula and Bozeman , Montana claiming Zinke puts public figures, including President Donald Trump and Elon Musk, before his constituents. President Donald Trump's plan to impose a 25% tariff on all imported aluminum could cost 100,000 American jobs, the CEO of one of the largest U.S. aluminum makers warned on Tuesday. Sen. Tim Kaine (D- VA ) discusses today's Senate vote in an effort to end the national energy emergency that President Trump declared in one of his very first moves in taking office, which Kaine call a "sham emergency" benefitting the big oil companies. [07:30:00] KATELYN POLANTZ, CNN CRIME AND JUSTICE CORRESPONDENT: There was a federal judge in Seattle who essentially stopped the administration trying to block the money going to the nation's refugee admissions program. That's one. The second one -- case that came in yesterday from a judge in Washington, D.C. , Judge Amir Ali . He said that there were nonprofits out there working with USAID -- so foreign aid contractors' nonprofits. They were supposed to have money flowing to them up to February 13 and they weren't. They -- that funding was not restored. And so that judge said to those -- to the federal government you have to turn that money back on. That needs to be paid to these nonprofits and contractors by midnight tonight. And the federal government then came back overnight and said it's $2 billion. We can't just turn the money back on. So that is a live ball in court. We're going to have to see exactly how the judge responds there.
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interview With Rep. Laura Gillen (D- NY ); Interview With Rep. Riley Moore (R- WV ); Interview With Sen. Amy Klobuchar (D- MN ); Interview With White House Border Czar Tom Homan. Aired 9-10a ET Senator Amy Klobuchar discusses whether Democrats are doing enough to push back against the Trump administration. White House border czar Tom Homan discusses the Trump administration's immigration crackdown. Congresswoman Laura Gillen and Congressman Riley Moore discuss the hot political topics of the week. [09:00:32] (BEGIN VIDEOTAPE) DANA BASH, CNN HOST (voice-over): Bite of the apple, a crisis at the Justice Department, as seven U.S. attorneys resign over a push to dismiss charges against New York 's mayor. DONALD TRUMP, PRESIDENT OF THE UNITED STATES : It looked to me to be very political. BASH: Now, as President Trump's border chief piles pressure on Eric Adams, what more do they want him to do? White House border czar Tom Homan is next. And blowback. The U.S. is set to lead talks with Russia on Ukraine .
## 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Treasury Sued Over Giving Musk's DOGE Access to Payment Data; Interview with Sen. Tammy Duckworth (D- IL ); Deconstruction Project; Senior FBI Leaders Ordered To Retire, Resign Or Be Fired; DOJ Orders FBI To Hand Over Names Of All Officials Who Worked On Jan. 6 Riot Cases By Tomorrow; Recovery Begins Of Plane Wreckage From Potomac River . Aired 8-9p ET At least six senior FBI leaders have been ordered to retire, resign or be fired, according to sources briefed on the matter, extending a purge that began last week at the Justice Department across the street from the FBI headquarters. The senior officials are at the executive assistant director level or special agent in charge level and include those who oversee cyber, national security and criminal investigations, the sources told CNN. The Trump administration is set to expand a purge of career law enforcement officials, demanding the names of those who worked on January 6, 2021, U.S. Capitol attack and Trump-related investigations for potential removal -- a move that could affect thousands. As crews removed some of the wreckage of the American Airlines plane that collided with an Army Black Hawk helicopter over Washington, D.C. , and crashed into the Potomac River last week, more remains of victims were recovered, officials said. Of the 67 victims, 55 have been identified. Additional remains were recovered Monday, and that they were in the process of being identified. The Treasury Department and Treasury Secretary Scott Bessent over the decision giving Musk and his staffers access to the federal payment system. Duckworth: It's quite terrifying to me that you've got somebody like Elon Musk, who's not been elected by the American people, hasn't been vetted by the United States Senate, is in there having access to all of these this financial instruments. "Apocalypse at USAID" as Musk and Trump work to Dismantle Agency. PETE MUNTEAN, CNN CORRESPONDENT: ... is going back in time to essentially recreate a history of the pilot's last few days leading up to the tragedy here. But the bottom line from investigators, it's much too soon to speculate on the cause and a lot of factors at play here -- Erin. ERIN BURNETT, CNN HOST: All right, Pete, thank you very much. Incredible, though they tried to pull up in that last second with the speeds here, they would have needed a whole lot more for this to have ended as a near-miss.
## 196 President Trump's New Tariffs Go Into Effect Tuesday; Canada Announces "Far-Reaching" Retaliatory Tariffs On American Goods; China Says It Will File Complaint With WTO Over Tariffs; Mexican President Announces Retaliatory Tariffs On U.S. ; 7 Dead, Including One On The Ground, After Medevac Jet Crashes In Philadelphia; NTSB Scrambles To Retain Employees After Trump's Resignation Offer; NTSB Data: Pilots Tried To Pull Passenger Jet's Nose Up Within Seconds Of Deadly D.C. Helicopter Collision. Trump Allies Push to Get RFK Jr. and Gabbard Confirmed; Health Information Related to Gender and Equity Removed from CDC Website; Grammy Awards to Benefit Wildfire Victims; Punxsutawney Phil Makes His Prediction. Aired 7-8a ET Source: Trump allies push to get RFK Jr., Tulsi Gabbard confirmed; Democratic and Republican senators strongly challenged RFK Jr., Gabbard during confirmation hearings; Sources: Gabbard's answers on 2013 Snowden's case worries White House officials; White House official: Gabbard met with senators after confirmation hearings; Trump orders certain data, health info pages removed from CDC website; Memo orders federal agency to remove websites, social media accounts that "promote gender ideology"; Senior health official: Severe consequences for staff who don't comply with order; Trump administration ordered federal health agencies to pause external communications; CNN referred to HHS for questions; Grammy's reformat show to benefit wildfire victims; Beyonce leads nominees with 11 nods; Beyonce announced "Cowboy Carter" tour; "Super/Man: The Christopher Reeve Story" premieres tonight at 8P ET/PT; Powerful atmospheric river slams the west with heavy rain; Millions brace for flooding, heavy snow across Western U.S. ; Flash flood warning issues as intense storm hits California ; Dangerous storm system brings torrential rain, mountain snow; Western U.S. faces major storm threat with floods, heavy snow; Punxsutawney Phil predicts six more weeks of winter; President Donald Trump moved forward Saturday with his plans for tariffs on Canada, Mexico and China, ending a guessing game about how aggressively he would move to penalize America 's three largest trading partners. The tariffs -- as Trump has promised since after his election win -- will be 25 percent duties on Canada and Mexico and 10 percent on China over issues of fentanyl and illegal migration. Prime Minister Justin Trudeau of Canada laid out more than $100 billion in retaliatory tariffs against the United States late Saturday, in a forceful response to President Trump's decision to impose levies on a range of Canadian goods. But he made clear that Canada was doing so reluctantly. China's Ministry of Commerce said it would file a legal case against the United States at the World Trade Organization, in response to President Trump's decision Saturday to impose 10 percent tariffs on Chinese goods. In a statement, the ministry's spokesperson vowed further "countermeasures" against the United States but did not specify what steps it would take. Mexican President Claudia Sheinbaum on Saturday ordered retaliatory tariffs in response to the U.S. decision to slap 25 percent tariffs on all goods coming from Mexico , as a trade war broke out between the two neighbors. Seven people are dead, including one in a car on the ground, after a twin-engine medevac jet carrying a child patient and her mother crashed in a neighborhood in northeast Philadelphia Friday night, the mayor said Saturday morning. At least 19 were injured on the ground. In the wake of the worst American air disaster in two decades, the understaffed and cash-strapped National Transportation Safety Board was scrambling to keep investigators from leaving after federal employees received an offer by the Trump administration to resign and be paid through September. The American Airlines flight involved in the deadly collision with a Black Hawk helicopter over Washington, D.C. , seemed to increase its pitch just before the impact, preliminary data from a data recorder recovered from the plane shows. The finding is one of the first pieces of information that have emerged as the NTSB works to investigate the disaster in which 67 people are thought to have been killed. The Black Hawk helicopter was training to evacuate government officials in the event of a catastrophe when the collision with the passenger jet occurred. [07:00:00] ALLISON CHINCHAR, CNN METEOROLOGIST: -- time we get to Tuesday and Wednesday. In terms of the atmospheric river, level twos, level threes, those are mostly beneficial, but you do sometimes have some possible hazards mixed in. This time we're talking about a level four, and that's really going to be around the Bay Area, maybe up through Fort Bragg . That level four is still somewhat beneficial, but it is going to have some hazards, and those hazards include incredibly heavy rainfall. Some of these areas could end up getting 6 to 10 inches of rain. That's a lot. VICTOR BLACKWELL, CNN HOST: All right. Thank you.
## 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Millions of Federal Workers Receive Email from Trump Administration with Option to Resign from Their Current Positions; Robert F. Kennedy Jr. to Testify at Senate Confirmation Hearing for His Health and Human Services Secretary Nomination; Advocacy Group Denounces ICE Raid at Philly Car Wash. Interview with Rep. Nydia Velazquez (D- NY ). Aired 8-8:30a ET Millions of federal workers receive an email from the Trump administration with the option to resign from their current positions. Robert F. Kennedy Jr. is set to testify at the Senate confirmation hearing for his Health and Human Services secretary nomination. Immigration officers detaining workers during a raid at a Philadelphia car wash. Velazquez: Let me make it clear, 90 percent of immigrants do not have criminal records. [08:00:00] DON HAZARD, PARDONED FOR CRIMES COMMITTED ON JANUARY 6: I think they're all guilty of treason. DONIE O'SULLIVAN, CNN SENIOR CORRESPONDENT: Do you think there should be retribution. HAZARD: Most definitely. I think so. I mean, most definitely I think so. O'SULLIVAN: You've got your dad, granddads, your uncle, all military. JENNY CUDD, OPENING RETREAT FOR JANUARY 6 RIOTERS: All military. My father-in-law, my cousin.
## 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CIA Sends Unclassified Email to White House Listing Names of New Hires; DOGE to Keep Limited Access to Treasury Payments System; Chiefs Chasing First-Ever Super Bowl Three-Peat. Aired 7-7:30a ET Worry new CIA hires at risk after agency sends unclassified email to White House. Top House Intel Democrat says, unclassified CIA email is a security risk. Intel experts alarmed over unclassified CIA email listing new hires. Two employees affiliated with Elon Musk's DOGE to keep read-only access to treasury payments system. White House says, DOGE-affiliated workers looking at treasury for accountability. Kendrick Lamar set to headline Super Bowl halftime show. 22-time Grammy winner will be joined by R&B singer/songwriter SZA. Kendrick Lamar appeared at 2022 Super Bowl alongside Eminem, Dr. Dre, Snoop Dogg, Mary J. Blige. Q.B. Patrick Mahomes making fifth Super Bowl appearance in last six years. Kansas City Q.B. is 3-1 in Super Bowls, has led comebacks in last two wins. Quarterback's only Super Bowl loss was to Tom Brady, Buccaneers in 2021 [07:00:00] KATE BOLDUAN, CNN ANCHOR: The White House orders the CIA to send an unclassified email listing out all new hires. What could go wrong? And the CIA complies, sparking new and big national security fears. JOHN BERMAN, CNN ANCHOR: Decision day for tens of thousands of government employees. Take what some are calling a buyout, or possibly lose your job altogether. SARA SIDNER, CNN ANCHOR: And a new variant of bird flu linked to dairy cows in Nevada . The question experts are asking as fears grow that this strain could have a major impact on humans. I'm Sara Sidner with John Berman and Kate Baldwin. This is CNN News Central.
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Passenger Jet's Black Boxes Recovered After Midair Tragedy; Trump Tariffs On Canada, Mexico , China Begin Tomorrow; U.S. Stocks Fall After Trump Tariff Announcement. Aired 2-2:30p ET The recovery of the passenger jet's black boxes after the midair tragedy is crucial for understanding the collision by providing data on altitude, speed, communications, and maneuvers. President Donald Trump announced plans to impose tariffs tomorrow, 10 percent on goods from China and 25 percent on those from Mexico and Canada, while his administration forced out multiple senior FBI officials in a purge of bureau leadership, ordered the removal of "gender ideology" references from federal websites causing temporary outages, and directed the Defense Intelligence Agency to pause activities related to Martin Luther King Jr. Day, Black History Month, and similar observances as part of efforts to eliminate federal DEI programs. U.S. stocks erased early gains to close lower Friday after the White House reaffirmed plans to impose new tariffs on Mexico , Canada, and China on Saturday. (COMMERCIAL BREAK) [14:02:02] BRIANNA KEILAR, CNN HOST: Hello, I'm Brianna Keilar alongside Boris Sanchez here in Washington. And we do begin with breaking news this hour. We're standing by for a new update from federal and local officials investigating the deadly collision between an American Airlines jet and a U.S. army helicopter that's going to come here from Reagan National Airport. And you are looking here at live pictures of the recovery effort. A short time ago, we heard from the White House, which sought to reassure the country that air travel is safe while insisting that President Trump was right to question whether FAA diversity policies played a role in the crash, something he did without evidence. (BEGIN VIDEO CLIP)
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Flight Data Appears To Show Helicopter Above Altitude, Off Course; U.S. Air Traffic Control System Under Scrutiny; More Than A Dozen January 6 Prosecutors Fired; More Victims Of Deadly Midair Collision Being Identified. Aired 6-7p ET New videos show previously unseen angles of midair crash. NTSB says, salvage barges arriving at crash site tomorrow. NTSB says, Black Hawk data recorder recovered. NTSB says, cockpit voice recorder has some water intrusion. NTSB conducting air traffic control interviews. NTSB says, two distinct debris fields at crash site. NTSB says, confident data can be downloaded from black boxes. Recovery crane arrives at Potomac River crash site. NTSB says, salvage barges arriving at crash site tomorrow. Sources say, FBI agents who worked on Jan. 6 and Trump cases to be fired. U.S. air traffic control system under scrutiny as investigators search for answers after collision. D.C. fire chief says, a lot of challenges to recovering bodies. FAA shuts down low altitude helicopter corridor near crash site. White House doubles down on Trump's claim DEI caused crash. Stocks tumble with Trump's new tariffs about to take effect (COMMERCIAL BREAK) [18:00:00] JIM SCIUTTO, CNN HOST: Happening now, breaking news, lots of it in the midair crash investigation, a flight data appearing to show the Black Hawk helicopter was a hundred feet above the maximum allowed altitude and off course just before the deadly collision with that passenger jet. Stand by for all the latest details, including what we just learned from NTSB officials. And we are learning more about the victims of the disaster. Officials say 41 of 67 bodies have now been recovered from the wreckage, 28 of them identified tonight. Their loved ones are sharing their stories. Plus, an inside look at the nation's air traffic control system already under strain from staffing shortages before this crash. We're going to show you what it's like to work the high stakes, high pressure job, with no room for error.
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Crowds Line Streets To Mourn Bibas Family Who Were Killed In Gaza; Fired Cybersecurity Official: Veterans' Sensitive Data At Risk; Supreme Court Hears Case On Reverse Discrimination; Gabbard: 100-Plus Intel Officers To Be Fired Over Explicit Work Chats. Aired 2:30-3p ET Earlier today, crowds gather in Israel as the bodies of Kfir, Airel and Shiri Bibas were laid to rest, and the winding funeral procession went from central Israel to their final resting place near Kibbutz Nir Oz from where they were taken. Kevin Baron, a fired cybersecurity official for the Department of Veterans Affairs, is sounding the alarm and talking about why he believes DOGE has put the sensitive information of millions of veterans at risk. An Ohio woman who lost a reverse discrimination case against her boss after arguing her gay boss declined to promote her because she is straight, may find the U.S. Supreme Court on her side after it heard her appeal today. Over 100 intelligence officers will be fired at the National Security Agency, and the new director, Tulsi Gabbard, demanded the terminations, saying the officers took part in sexually explicit chats on a work platform. [14:30:00] BORIS SANCHEZ, CNN HOST: -- by these developments? Does it sway people toward Netanyahu or more towards some sort of deal? KEVIN BARON, NATIONAL SECURITY ANALYST: I mean, I would imagine people are pretty entrenched. And we saw even the families wanting to keep government officials away from the funeral. You know, a lot of these protests, they have -- from day one, have been aimed at Netanyahu for failing to secure them in the first place. You know, forget about what's happened since in Israels, you know, unbelievable response to into Gaza. So again, I think you're seeing lots of entrenchment.
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Multiple Meetings Over Russia and Ukraine Peace; Anne Applebaum is Interviewed about Government Cuts and Firings; Best Moments from "Saturday Night Live.". Aired 9:30-10a ET European leaders hold an emergency meeting ahead of the U.S. - Russia peace talks. Anne Applebaum is interviewed about President Trump and Elon Mus's led cuts and firings that are upending the U.S. government. A look at the best moments from "Saturday Night Live's" 50th anniversary special. [09:30:00] HARRY ENTEN, CNN SENIOR DATA REPORTER: Peace deal between Russia and Ukraine . Whether the majority would agree on a Russia peace deal with Ukraine where Ukraine has nothing to do with it, that might be a different question. JOHN BERMAN, CNN ANCHOR: Hard to know. Harry Enten, thank you very much. ENTEN: Thank you, my friend.
## 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Interview With Former U.S. Ambassador To The Czech Republic Norm Eisen; Interview With Princeton Professor And Autocracy Expert Kim Lane Scheppele; Interview With Forward Thinking Co-Founder And Director Oliver McTernan; North Korean Troops Embrace Near-Suicidal Tactics In Battle; Officials Give Update On Pennsylvania Medevac Jet Crash; 80 Years Since Liberation Of Auschwitz; Broad Play Hilariously Tackles Age Of Disagreement. Aired 11a-12p ET Democracy is about more than just elections, of course. It's about the institutions that uphold it as Donald Trump leads a global shift to the populist right. Those very institutions are being tested worldwide. In the United States , the president is flooding the zone with executive orders, including a sweeping freeze on federal aid that it then had to rescind after prompting widespread fear and confusion and also accusations that those orders were illegal under U.S. law. This week, Palestinians implemented their right to return as hundreds of thousands walked the coastal route back to what's left of their homes in the north. [10:59:48] ABBY PHILLIP, CNN HOST: You know, Solomon, if I see you up on one of those things, I'm going to call the cops on you myself. That's what I'm going to do. JOANNA: I know that people don't like watching people on television eating food, but I think this is a Saturday breakfast show. And actually, there should be eggs and croissants and coffee in -- (CROSSTALKING) JOANNA: And we would all -- we would all benefit.
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Right-Wing Commentator Named FBI Deputy Director; Pope In Critical Condition; Health Agencies Reel From Thousands Of Job Cuts While Critical Research Grants Remain On Hold. Aired 7:30-8a ET Dan Bongino, a former Secret Service agent turned right-wing podcaster, has been named the next deputy director of the FBI by President Trump. Pope Francis remains in critical condition, with blood tests showing mild signs of kidney failure which is currently under control according to Vatican. [07:31:47] JOHN BERMAN, CNN ANCHOR: All right. New overnight, President Trump named conservative media personality Dan Bongino as deputy director of the FBI. This is a job that almost always goes to someone within the ranks. And in fact, CNN just learned that newly confirmed FBI Director Kash Patel told agents the role should be filled from within the ranks. That's not Bongino, who was a police officer and a Secret Service agent, but not in the FBI, mostly the last several years on conservative media. He was also named a misinformation super spreader by the New York Times in 2020 for serving as a mouthpiece for President Trump's attempt to overthrow the 2020 election saying, "there's nothing to concede because this race isn't over." He also called the FBI, "irredeemably corrupt in a rotten orchard," claiming he has been, "abusing its power and eroding Americans trust for decades," loosely quoting here. He basically said the 2016 and 2020 election were rigged by the FBI.
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HHS Secretary RFK Jr. Calls Measles Outbreak "Not Usual"; Protesters Flood Republican Town Halls Over Job Cuts; Actor Gene Hackman Found Dead Alongside Wife In New Mexico Home; Supreme court Signals It Will Make It Easier For Americans To File "Reverse" Discrimination Lawsuits. Aired 6:30-7a ET A family in west Texas is mourning the loss of a young child to the largest measles outbreak in 30 years; health officials in the state saying there are now at least 124 measles cases across nine counties. With Republicans controlling every lever of power in Washington, Democrats still searching for an exit from the political wilderness; but they think scenes like this one are going to help them turn the tables. Legendary Academy Award winner Gene Hackman and his wife found dead in their New Mexico home. The Supreme Court hearing a case of alleged reverse discrimination; how the justices may be leaning after hearing arguments this week. KAREN FINNEY, CNN POLITICAL COMMENTATOR: -- come down any time soon, despite some of the efforts that they're going to take. [06:30:04] MIKE DUBKE, FORMER COMMUNICATIONS DIRECTOR, TRUMP ADMINISTRATION: It does differ around the country. So I -- my son in Little Rock , Arkansas , was having a conversation. (CROSSTALK) DUBKE: Well, there you go -- $3 a dozen at Trader Joe's, Alexandria , Virginia , Whole Foods, over $6 a dozen. So, I mean, people are feeling the pain differently. The only thought that keeps going through my humpty dumpty is a billionaire, right?
## 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Judge Halts Trump's Plan To Put USAID Workers On Leave; Sen. Chris Coons, (D- DE ), Is Interviewed About Trump's Plan To Put USAID Workers On Leave, Elon Musk, National Debt; Trump Says He's Directed Musk To Review "Just About Everything"; Oscar Turmoil: "Emelia Perez" Star Sparks Backlash. History At Stake: Chiefs Chase Unprecedented Three-Peat. Aired 9-10a Sesame Street is at the center of a much bigger conversation about how tax dollars are spent and who decides what stays and what goes. Because right now, the U.S. Agency for International Development, USAID, is on the brink of being dismantled by the Trump administration. Late Friday, a federal judge temporarily blocked the administration from putting at least 2,200 aid workers on leave just hours before those employees were set to either go on infinite leave or get fired. CNN had reported that the agency planned to keep fewer than 300 of USAID's 10,000 workers as essential personnel. Labor groups have sued President Trump to stop him, calling the slashing of programs people and funding an unconstitutional power grab that only Congress can authorize. Senator Joni Ernst, a Republican from Iowa , thinks she found one example of that so called waste in Sesame Street. She's slamming USAID for funding a $20 million Sesame Street program in Iraq , saying taxpayers shouldn't be footing the bill for a children's show half a world away. President Donald Trump says that he has directed Elon Musk to review "just about everything." Oscar turmoil, "Emelia Perez" star, Karla Sofia Gascon, sparks backlash because of old tweets resurfaced posts that attacked Muslims, called George Floyd a drug addicted con artist and mocked the Academy's diversity efforts with remarks like I didn't know if I was watching an Afro-Korean festival, a Black Lives Matter demonstration or 8-M. Netflix quickly distanced itself, pulling Gascon from promotional campaigns and halting her planned appearances at major award events. The Kansas City Chiefs is playing to become the first team ever to win three straight Super Bowls. VICTOR BLACKWELL, CNN ANCHOR: -- our podcast. Also remember to tune in for the conclusion of the CNN original series, "Kobe, The Making of a Legend." That's tonight at 9:00 on CNN. Thank you for joining me today. Good luck to the Eagles. Good luck to the Chiefs. Drake, you're in my heart. It's going to be a rough game. See you next Saturday at 8:00. [09:00:34] MICHAEL SMERCONISH, CNN ANCHOR: Sunny day sweeping the clouds away. I'm Michael Smerconish in Philadelphia. Yes, it's a childhood classic, but it turns out that Sesame Street is at the center of a much bigger conversation about how your tax dollars are spent and who decides what stays and what goes. Because right now, the U.S. Agency for International Development, USAID, is on the brink of being dismantled by the Trump administration.
## 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Sen. Warren Grills RFK Jr. On Money From Vaccine Lawsuits: "Kids Might Die, But Robert Kennedy Can Keep Cashing In"; WH Backpedals On Chaotic Funding Freeze Hours After Announcing It; FAA: Passenger Jet Collided In Midair With Black Hawk Helicopter. Aired 9- 10p ET Sen. Elizabeth Warren (D- MA ) grills Robert F. Kennedy Jr. on money from vaccine lawsuits: "Kids might die, but Robert Kennedy can keep cashing in." White House backpedals on the chaotic funding freeze, hours after announcing it. Federal Aviation Administration: PSA Airlines passenger jet collided in midair with Black Hawk helicopter NICK PATON WALSH, CNN CHIEF INTERNATIONAL SECURITY CORRESPONDENT: But also to how so many of these foreigners seem to be being deployed to the hotspots of the frontline, to urgently make up holes in Ukraine 's manpower -- startling shortages in infantry, we constantly hear about. And that's, really, I think, playing to Russia 's advantage here, Anderson. ANDERSON COOPER, CNN HOST: All right. Nick Paton Walsh, be careful. Thank you. That's it for us. The news continues. We'll see you, tomorrow. "THE SOURCE WITH KAITLAN COLLINS" starts now.
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Recovery Crews Search Icy Waters For 67, All Presumed Dead; Inside Flight Simulator; Figure Skating Victims. Aired 7-8p ET Investigators are searching for answers, and CNN learning that one air traffic controller was doing two jobs at the time of the deadly mid-air collision. Could that have contributed to the deadliest plane crash on American soil in nearly 24 years? Inside a flight simulator to demonstrate what may have been going on inside that cockpit as the passenger jet approached the runway in Reagan National Airport. The 67 victims, including world champion figure skaters, coaches, aspiring skaters. [19:00:41] ERIN BURNETT, CNN ANCHOR: All right. I'm Erin Burnett, live from Reagan National Airport. Investigators are searching for answers. We are learning tonight that one air traffic controller was doing two jobs at the time of the deadly mid-air collision. Could that have contributed to the deadliest plane crash on American soil in nearly 24 years? And also this hour, we're going to take you inside a flight simulator to demonstrate what may have been going on inside that cockpit as the passenger jet approached the runway just behind us. And the 67 victims, including world champion figure skaters, coaches, aspiring skaters. In a tragic case of deja vu, the director of the Boston Skating Club who lost six members of his community, is our guest tonight.
## 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        NTSB: "Whole of Government Effort" to Investigate Midair Crash; NTSB: Flight Data Recorders Not Yet Recovered; NTSB: "Very Quick, Rapid Impact," No Passenger Slides Deployed. Aired 3-3:30p ET Midair collision between American Airlines plane and Black Hawk helicopter over Potomac River . TODD INMAN, NATIONAL TRANSPORTATION SAFETY BOARD MEMBER: ... information related to this investigation, with one exception, regarding the fatalities that occurred, that notification will be handled by the DC Medical Examiner. We will not be discussing fatalities or names. That will be handled by them as the proper authority. So, we want to talk a little bit about our process. We will analyze the facts and determine the probable cause of the accident and then issue a report of those determinations. I also want to talk a little bit about some additional people that are here with us and they're very important to us and that is our family assistance group. Later today, we will be briefing the families. We normally try to do this before a media event, but in this case they're still arriving. Our family assistance specialists are already working closely with local officials and others to help assist them in their efforts to support everyone that's affected by this accident. And let me just reiterate what the Chair said. A loss of life in an aviation accident is very unusual in the United States and our heartfelt sorrow goes out to everyone that's affected. It affects us, affects everyone around us. There are a lot of people hurting today. We will help find out what happened. We will do it factually and we will do it accurately.
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      New Video Show Moment Plane & Army Helicopter Collided; Multiple Investigations Into What Caused Collision That Killed 67; Figure Skating Community Mourns Victims Killed in D.C. Tragedy; FireAid Concerts Raise Millions For Fire Victims. Aired 9:30-10 am ET Two videos obtained by CNN show new angles on Wednesday night's midair collision above Washington D.C. In the videos both aircraft can clearly be seen flying towards each other, then exploding and falling into the river after the fatal explosion. The cause of the crash remains under investigation. Officials are set to provide updates on the ongoing recovery effort following Wednesday's collision between an American Airlines regional jet and U.S. Army Black Hawk helicopter. Boston is mourning the loss of six members of its ice-skating community in Wednesday's Washington, D.C. , plane crash. An impressive lineup of musicians came together for a good cause on Thursday evening. Two concerts collectively referred to as FireAid kicked off at the Kia Forum and the Intuit Dome in the city of Inglewood in Los Angeles County to support relief efforts in the wake of the deadly wildfires that ignited earlier this month in the L.A. area, claiming 29 lives and causing billions of dollars in damage. ALAYNA TREENE, CNN REPORTER: -- investigation into the Biden administration, what the White House referred to as the damage done to aviation safety under the Biden administration and specifically looking at DEI practices. [09:30:10] Now, one other thing I just want to quickly point out is it is unclear right now whether or not Donald Trump has spoken with the families of some of these victims. We heard him yesterday say that he plans to meet with them. I've asked the White House whether or not that would include some sort of visit to Wichita. Of course, the community that has been devastated by this. It was the -- where the flight had taken off from. Still waiting to hear more on that, Kate. KATE BOLDUAN, CNN ANCHOR: Alayna Treene at the White House for us. Thank you, Alayna. Sara?
##                                                                                                                                                                         publication_16
## 1                                                                                                                                          Inside Politics 12:00 PM EST Jasmine Wright
## 2                                                                                                                             Stephanie Creary, Daniel Cameron, Susan Page, Dan Meuser
## 3                                                                                CNN THIS MORNING 6:30 AM EST Randall Woodfin, Michael Warren, Molly Ball, Matt Gorman, Kendra Barkoff
## 4                                                                                                                                                         Pam Hemphill, Ken Cuccinelli
## 5                                                                                                                           CNN THIS MORNING 5:30 AM EST Julia Manchester, Marc Morial
## 6                                                                                                                                                             John Herbst, Marc Morial
## 7                                                                                                            Jamal Bryant, Derrick Johnson; Tanisha Hartwell-Paris; Tarence Bailey Sr.
## 8                                                                                                                                                                     Shawn Pruchnicki
## 9                                                                                                                                               Matt Mowers, Tara Palmeri, Phil Weiser
## 10                                                                                                                       Smerconish 9:00 AM EST Jo Ellis, Byron Donalds, Derrick Darby
## 11                                                                The Lead with Jake Tapper 5:00 PM EST Anthony Marrone, Robert Luna, Bakari Sellers, Tiffany Smiley, Veronica Escobar
## 12                                                                                                   ERIN BURNETT OUTFRONT 7:00 PM EST Jason Crow, Keisha Lance Bottoms, Kevin O'Leary
## 13                                                                                                        Tanya Domi, Katie Frost, Jemele Hill, Chuck Rocha, Melik Abdul, Joanna Coles
## 14                                                                                            ERIN BURNETT OUTFRONT 7:00 PM EST Katie Drummond, Gerry Connolly, Doug Ford, Tarang Amin
## 15                                                                                                                                                     Doug Heye, Elisha Dunn-Georgiou
## 16                                                                                                                                                            Marc Morial, David Acuna
## 17                                                                                                                Gregory Porter, Frederick Joseph, Daniel Cameron; Capt. James Simons
## 18                                                                                                                                                                        Chris Murphy
## 19                                                                    CNN LIVE EVENT/SPECIAL 4:30 AM EST Margaret Talev, Matt Gorman, Meghan Hays, Sabrina Rodriguez, Dr. Hagai Levine
## 20                                                                                                                                       Inside Politics 12:00 PM EST Shawn Pruchnicki
## 21                                                                                                                                                             Seth Moulton, Katy Neas
## 22                                                                                              THE SITUATION ROOM 6:00 PM EST Bryan Lanza, Ameshia Cross, Jamie Raskin, Octavio Prado
## 23                                                                                                                        ANDERSON COOPER 360 DEGREES 8:00 PM EST Kim Urban, Les Abend
## 24                                                                                                                                                                    CNN News Central
## 25                                                                                                                                                       Michael McCormick, Alan Diehl
## 26                                                                                                                                                                    CNN News Central
## 27                                                                                     Ras Baraka, Tracy McGrady, Michael Leach; Rep. Delia Ramirez; Amala Jones-Bey; Mayor Ras Baraka
## 28                                                                                         Mike Driscoll, Justin Green, Ryan Tian, Mondaire Jones, Melik Abdul, Pete Seat, Frank Luntz
## 29                                                                                                          Greg Feith, Dave Hoagland, Adam Blake, Sarah Hughes, William "Burner" Dunn
## 30                                                                                                                           Sonia Manzano, Tyrone Taborn, Deb Haaland; Rafael Pineyro
## 31                                                                                                                              CNN THIS MORNING 6:00 AM EST Joseph Seiner, Sophia Cai
## 32                                                                                                          Butch Hendrick, Michelle Reid; Mark Montgomery, Alan Armstrong, Gabe Evans
## 33                                                                                                                                                   Kathie O'Callaghan, Lloyd Doggett
## 34                                                                                                                                                           Ben Abo, Tennessee Garvey
## 35                                                                                 The Lead with Jake Tapper 5:00 PM EST Daniel Elwell, Elizabeth McCormick, Ilia Malinin, Matt Mowers
## 36                                                                                                                                                                    CNN News Central
## 37                                                                                                                         Sarah Matthews, Emily Austin, Edward Beck, Stanislav Kucher
## 38                                                                                               Elizabeth McCormick, Alan Diehl, Vincent Sugent, Jennifer McClellan, Garrick McFadden
## 39                                                                                          CNN LIVE EVENT/SPECIAL 10:00 AM EST Kara Swisher, Melik Abdul, Joanna Coles, Solomon Jones
## 40                                                                                                                                            Edward Kelly, Mary Schiavo, David Soucie
## 41                                                                                                                                                          Donte Mills, Arthur Aidala
## 42                                                                                                                                       Abel Maldonado, Joseph Borelli, Alfonso David
## 43                                                           The Lead with Jake Tapper 5:00 PM EST Don Beyer, Elizabeth McCormick, Jake Zweig, Butch Hendrick, Rick Tyler, Chuck Rocha
## 44                                                                                                 ERIN BURNETT OUTFRONT 7:00 PM EST Ed Markey, Ryan Goodman, Ken Buck, Katie Drummond
## 45                                                                                                                                           Coleman Hughes, Art delaCruz, Jeff Corwin
## 46                                                                                                         Stanley James III, Anthony Phillips, Billy Nolen, Nayyera Haq, Matthew Lind
## 47                                                                                        STATE OF THE UNION 9:00 AM EST Sean Duffy, Yassamin Ansari, Jaime Herrera Beutler, Tim Kaine
## 48                                                                                                                                                                        Leon Panetta
## 49                                                                                                                                                    Shawn Pruchnicki, Vincent Sugent
## 50                                                                                                                                  Maura Gillespie, Christine Quinn, Petro Poroshenko
## 51                                                                                                                                                                           Tim Kaine
## 52                                                                                             Rana Foroohar; Solomon Jones; T.W. Arrighi; Julie Roginsky; Jemele Hill; Abel Maldonado
## 53                                                                                                                     Bishara Bahbah, Gwynne Wilcox, Sheena Scarbrough, Terence Moore
## 54                                                                                                                                       CNN THIS MORNING 5:30 AM EST Jasmine El-Gamal
## 55                                                                                                                                             CNN THIS MORNING 5:00 AM EST Sophia Cai
## 56                                                                                                                           Inside Politics 12:00 PM EST Tamara Keith, John Bresnahan
## 57                                                                                                                                                                        John Sandweg
## 58                                                     The Lead with Jake Tapper 4:00 PM EST Michael McCormick, Randy Babbitt, Rick Larsen, Mondaire Jones, Lance Trover, Karen Pierce
## 59                                                                                                                                                                    CNN News Central
## 60                                                                                                                                                         Terry Sullivan, Chris Coons
## 61                                                              The Lead with Jake Tapper 5:00 PM EST Greg Abbott, Chris Mattei, Nick Akerman, Alyse Adamson, Tom Dupree, Amber Ruffin
## 62                                                                                                           STATE OF THE UNION 9:00 AM EST Xochitl Hinojosa, Kristi Noem, Cory Booker
## 63                                                                                           CNN THIS MORNING 6:30 AM EST Bobbie Scholley, Peter Welch, Michael Warren, Kendra Barkoff
## 64                                                                                                                                                    Melanie Stansbury, Andrew McCabe
## 65                                                                                                                                             Inside Politics 12:00 PM EST Amy Walter
## 66                                                                                                                           CNN THIS MORNING 5:00 AM EST Catherine Lucey, Ariel Cohen
## 67                                                                                                                                                                  Richard Blumenthal
## 68                                                                                  The Lead with Jake Tapper 5:00 PM EST Michael Scherer, Neera Tanden, Markwayne Mullin, Cornel West
## 69                                                                                          Bernie Sanders, Daniel Hodges, Alencia Johnson, Mike Johnston, Marc Caputo, Shelby Talcott
## 70                                                                                                                                                         Gerry Connolly, Aaron Klein
## 71                                                                                                                       Inside Politics 12:00 PM EST Tia Mitchell, Zolan Kanno-Youngs
## 72                                                                                               The Lead with Jake Tapper 4:00 PM EST Georges Benjamin, Brian Schatz, Kirsten Hillman
## 73                                                                                                        CNN THIS MORNING 6:00 AM EST Kendra Barkoff, Michael Warren, Bobbie Scholley
## 74                                                                                                                            Melanie Stansbury, Lance Trover, Mark Zaid, Dana Pittard
## 75                                                                                                                                         Inside Politics 12:30 PM EST Jasmine Wright
## 76                                                                                                CNN THIS MORNING 6:30 AM EST Marc Short, Johnny Olszewski, Jeff Mason, Jonathan Kott
## 77                                                                                Arthur Aidala; Chuck Rocha; Gail Huff Brown; Van Lathan; Julie Roginsky, Gail Huff Brown, Van Lathan
## 78                                                               ERIN BURNETT OUTFRONT 7:00 PM EST Seth Moulton, Katie Drummond, Latisha Thompson, Gregg Nunziata, Neil deGrasse Tyson
## 79                                                                                  The Lead with Jake Tapper 4:00 PM EST Billy Nolan, Jeff Huddleston, Tammy Duckworth, Brian Boitano
## 80                                                                                                      STATE OF THE UNION 9:00 AM EST Kristin Davison, Steve Witkoff, Hakeem Jeffries
## 81                                                                                                                             Inside Politics 12:00 PM EST Molly Ball, Akayla Gardner
## 82                                                                                                                                                                    CNN News Central
## 83                                                                                                         CNN THIS MORNING 6:00 AM EST Stephen Neukam, Steven Newcomb, Allen Fromherz
## 84                                                                                                                                                                        William Tong
## 85                                                                                                                         THE SITUATION ROOM 6:00 PM EST Lance Trover, Jeanne Shaheen
## 86                                                                                                                                         Inside Politics 12:30 PM EST Sharice Davids
## 87                                                                                                                                             CNN THIS MORNING 5:00 AM EST Joel Rubin
## 88                                                                          ERIN BURNETT OUTFRONT 7:00 PM EST Ryan Goodman, Ken Buck, Anders Vistisen, Jack O'Donnell, Jackson Reffitt
## 89                                                                                                                                                                         Phil Weiser
## 90                                                                                                                            Melik Abdul, Toure, Jenna Arnold, Ro Khanna, Lance Trove
## 91                                                                                                                                     Laila Ireland, Nell Salzman, Byron Sigcho-Lopez
## 92                                                                                                                                                                    CNN News Central
## 93                                                                                                                                                        CNN THIS MORNING 6:00 AM EST
## 94                                                                                                                                                                          Kevin Owen
## 95                                                                         CNN LIVE EVENT/SPECIAL 5:30 AM EST Marc Caputo, Margaret Talev, Matt Gorman, Meghan Hays, Sabrina Rodriguez
## 96                                                                                                  CNN LIVE EVENT/SPECIAL 3:00 AM EST Noelle Nikpour, Hasan Alhasan, Leslie Vinjamuri
## 97                                                                                                                                            CNN THIS MORNING 6:00 AM EST Meghan Hays
## 98                                                                                                                                                                     Katherine Clark
## 99                                                                                                                         CNN THIS MORNING 5:30 AM EST Brittany Gibson, Sinead Bovell
## 100                                                                                                                                                     Aaron Herreras Szot, Ed Markey
## 101                                                                                                        THE SITUATION ROOM 6:00 PM EST Jasmine Wright, Erin Perrine, Elissa Slotkin
## 102                                                                                                                                          Inside Politics 12:30 PM EST Tia Mitchell
## 103                                                                                                                                                                   CNN News Central
## 104                                                                                                                    The Lead with Jake Tapper 4:00 PM EST Trevor Reed, Chris Murphy
## 105                                                                                                                   The Lead with Jake Tapper 5:00 PM EST Tim Kaine, Deanne Criswell
## 106                                                                                                                                      Gina McCarthy, Matt Bennett, Madison Gesiotto
## 107                                                                                                                         CNN THIS MORNING 6:30 AM EST Melanie Stansbury, Mike Dubke
## 108                                                                                                                 Inside Politics 8:00 AM EST Molly Ball, Jim Jordan, Margaret Talev
## 109                                                                                                                                                         Gabe Vasquez, Zeb Smathers
## 110                                                                                                                                    CNN LIVE EVENT/SPECIAL 8:00 AM EST Jason Miller
## 111                                                                             James Clyburn, Frank Luntz, Christine Cornell, Jeremy Saland, Robert Rand, Neama Rahmani, Roy Wood Jr.
## 112                                                                                                                                           CNN THIS MORNING 6:30 AM EST Meghan Hays
## 113                                                                                  Jasmine Crockett, Rick Newman, Bryan Lanza, Pete Lapp, Devlin Barrett, Kim Masters, Neama Rahmani
## 114                                                                                                                                     CNN LIVE EVENT/SPECIAL 8:30 AM EST Katie Britt
## 115                                                                                                                 Inside Politics 12:30 PM EST Tom Homan, Marc Caputo, Ayesha Rascoe
## 116                                                                                                          ERIN BURNETT OUTFRONT 7:00 PM EST Jason Crow, Tim Pawlenty, Kevin O'Leary
## 117                                                                                                                                                 CNN LIVE EVENT/SPECIAL 5:00 PM EST
## 118                                                                                                                                                         Donovan Richards, Gabe Amo
## 119                                                                                                                                                                          Ned Price
## 120                                                                                              ERIN BURNETT OUTFRONT 7:00 PM EST Jim Himes, Tim Pawlenty, Tim Chapman, Kevin O'Leary
## 121                                                                              CNN LIVE EVENT/SPECIAL 2:00 AM EST Steven Erlanger, Noelle Nikpour, Kaya Yurieff, Maria Ramirez Uribe
## 122                                                                                                                The Lead with Jake Tapper 4:00 PM EST Xochitl Hinojosa, Bryan Lanza
## 123                                                                                                                                     CNN THIS MORNING 5:00 AM EST Nicholas Johnston
## 124                                                                                                                                                                   CNN News Central
## 125                                                                                                                                                                        David Ortiz
## 126                                                                                                                                        Jeremy Konyndyk, Jill Konviser, Jeff Swartz
## 127                                                                                                                         CNN LIVE EVENT/SPECIAL 1:00 AM EST Katie Frost, Ryan Patel
## 128                                                                                                                                        CNN THIS MORNING 5:30 AM EST Margaret Talev
## 129                                                                                                            Inside Politics 12:00 PM EST Jeff Mason, Ayesha Rascoe, Teddy Schleifer
## 130                                                                                                                                        Inside Politics 12:00 PM EST Astead Herndon
## 131                                                                                                   FAREED ZAKARIA GPS 10:00 AM EST Radoslaw Sikorski, Rachel Barkow, Marc Dunkelman
## 132                                                                                                                                                                      Keith Poulsen
## 133                                                                     The Lead with Jake Tapper 4:00 PM EST Erin Perrine, Marc Caputo, Chuck Rocha, Mike Turner, Andrea Joy Campbell
## 134                                                                                                               CNN THIS MORNING 6:30 AM EST Matt Gorman, Meghan Hays, Mark McKinnon
## 135                                                                                       ERIN BURNETT OUTFRONT 7:00 PM EST Ashley Etienne, Jackson Reffitt, Alex Padilla, Mike Rounds
## 136                                                                                                                                           Inside Politics 12:00 PM EST Josh Dawsey
## 137                                                                                                                                                                   Doreen Greenwald
## 138                                                                                                                                                          Kurt Volker, Carl Heastie
## 139                                                                     Gary O'Hara, Mary O'Hara, Isaac Arnsdorf, Dasha Burns, Warren Davidson, John Pistole, Atul Gawande, Andy Beyer
## 140                                                                                                             Inside Politics 12:00 PM EST Josh Dawsey, Tia Mitchell, Jasmine Wright
## 141                                                                                                                              CNN THIS MORNING 6:00 AM EST Matt Gorman, Meghan Hays
## 142                                                                                                                                                                     Margaret Talev
## 143                                                                                                                                                                   CNN News Central
## 144                                                                                                      The Lead with Jake Tapper 5:00 PM EST Ruben Gallego, Cade Metz, Sinead Bovell
## 145                                                                                                                                                                           Pat Ryan
## 146                                                                                                                                                                     Javier Salazar
## 147                                                                                              Jeff Jarvis, Valencia Johnson, Toure, Adrienne Elrod, Tiffany Smiley, Alencia Johnson
## 148                                                                                                                 The Lead with Jake Tapper 5:00 PM EST Simon Shuster, Brian Bennett
## 149                                                                                                                             ANDERSON COOPER 360 DEGREES 8:00 PM EST Zeynep Tufekci
## 150                                                                                                  Josh Rogin, Joseph Scott Morgan, Nicholas Gilmore, Michael LaRosa, Ben Arogundade
## 151                                                                                                                        THE SITUATION ROOM 6:00 PM EST Alencia Johnson, Mike Rounds
## 152                                                       Aaron David Miller, Shelby Talcott, Lance Trover, Alencia Johnson, Jared Polis, Christopher O'Leary, Mark Zaid, Julie F. Kay
## 153                                                                                                                 ANDERSON COOPER 360 DEGREES 8:00 PM EST Mark Kelly, Michael Fanone
## 154                                                                                                 THE SITUATION ROOM 6:00 PM EST Les Abend, Greg Feith, Mark Kelly, Sully Sullenberg
## 155                                                                                                                                 The Lead with Jake Tapper 4:00 PM EST Chris Wright
## 156                                                                                                                                                                   CNN News Central
## 157                                                                                             James Stavridis; Eli Stokols; Nayyera Haq; Nick Akerman; John Feal; Michael Eric Dyson
## 158                                                                                            Chris Murphy, Ramesh Ponnuru, Laurence Tribe, Katie Porter, Meridith McGraw, Jeff Mason
## 159                                                                                                                         CNN THIS MORNING 5:30 AM EST Mychael Schnell, Tia Mitchell
## 160                                                                                                                                                Jake Auchincloss, Alexander Vindman
## 161                                                                                                               CNN THIS MORNING 7:00 AM EST Paul Salem, Daniel Izzo, Shelby Talcott
## 162                                                                                                                 Wes Moore, Natalie Bara, Rahm Emanuel, Shelby Talcott, Dasha Burns
## 163                                                                      The Lead with Jake Tapper 4:00 PM EST Donald Kettl, Don Bacon, Stephen Miller, Tristan "Geppetto" Brandenburg
## 164                                                                                              Inside Politics 8:00 AM EST Jasmine Wright, Jeff Mason, Olivia Beavers, Larry Summers
## 165                                                                                                               Michael LaRosa, Bill De Blasio, Mike Isaac, Gwynne Wilcox, Kim Wehle
## 166                                                                                                                                                       Marlin Stutzman, Kevin Baron
## 167                                                                                                                                                                      Skye Perryman
## 168                                                                                                               Pete Seat, Adrienne Elrod, Melik Abdul, Larry Wilmore, Ameshia Cross
## 169                                                                                                                                  Smerconish 9:00 AM EST Michael Oren, Brad Meltzer
## 170                                                                                                                             CNN THIS MORNING 5:30 AM EST John Bresnahan, Les Abend
## 171                                                                                                                                                                   CNN News Central
## 172                                                                          The Lead with Jake Tapper 5:00 PM EST Raphael Warnock, Gregory Poland, Paul Offit, Brad Todd, Meghan Hays
## 173                                                                                                                                                                         Mark Zandi
## 174                                                                                                                           Cari Champion; Arthur Aidala; T.W. Arrighi; Roy Wood Jr.
## 175                                                                                                                                                                         Mark Zandi
## 176 The Lead with Jake Tapper 5:00 PM EST Dmitry Afanasiev, Martin De Luca, Roy Wood Jr., Alyssa Farah Griffin, William J. Brennan, Bakari Sellers, Jasmine Crockett, Nick Levendofsky
## 177                                                                                                                                                                    Maura Gillespie
## 178                                                                                                                           CNN THIS MORNING 7:00 AM EST Doris Meisner, Larry Sabato
## 179                                                                                                                                        Peter Navarro, Sabrina Singh, W. Kamau Bell
## 180                                                                                                            Alexander Hertel-Fernandez, Bill Stepien, Jenna Arnold, LaMonica McIver
## 181                                                                                    ERIN BURNETT OUTFRONT 7:00 PM EST Max Rose, Lauren Tomlinson, Josh Green, Ty Cobb, Tony Robbins
## 182                                                                                                                                             Josh Rogin, Rula Jebreal, Brad Polumbo
## 183                                                                                                                THE SITUATION ROOM 6:00 PM EST Lauren Tomlinson, Richard Blumenthal
## 184                                                                                                                                                          Julie Roginsky, Pete Seat
## 185                                                                                                                       Chuck Rocha, Eoin Higgins, Brittany Pettersen, Ian Millhiser
## 186                                             Greg Landsman, Lance Trover, Ameshia Cross, David Fahrenthold, Sean Brennan, Errol Louis, Andrew Kirtzman, Jarrett Ambeau, Howard Blum
## 187                                                                                 ANDERSON COOPER 360 DEGREES 8:00 PM EST JB Pritzker, Chris Sununu, Gretchen Carlson, Craig Spencer
## 188                                                                                          Adam Boehler, Marco Rubio, Roger Carstens, Shelby Talcott, James Stavridis, Ameshia Cross
## 189                                                                                         Chris Sununu, Lance Trover, Christopher O'Leary, Chris Kluwe, Pete Dominick, Adrian Wenner
## 190                                                                                                                                           Donte Mills, Arthur Aidala, Lance Trover
## 191                                                                                         Kara Swisher, Sir John Sawers, Josh Paul, Husam Zomlot, Mike Leigh, Marianne Jean-Baptiste
## 192                                                                                                                                                                 Stephen J. Abraham
## 193                                                                                                                                                              Ryan Zinke, Tim Kaine
## 194                                                                                                 STATE OF THE UNION 9:00 AM EST Laura Gillen, Tom Homan, Riley Moore, Amy Klobuchar
## 195                                                                 ANDERSON COOPER 360 DEGREES 8:00 PM EST Doris Kearns Goodwin, Mary O'Hara, Gary O'Hara, Tammy Duckworth, Brad Todd
## 196                                                                                                                                        CNN THIS MORNING 7:00 AM EST Jennifer Nuzzo
## 197                                                                                                                                                                    Nydia Velazquez
## 198                                                                                                                                                                   CNN News Central
## 199                                                                                                                                                         Chad Kendall, David Soucie
## 200                                                                                                                       THE SITUATION ROOM 6:00 PM EST Muriel Bowser, Dorothy Hamill
## 201                                                                                                                                                       Kevin Baron, Jonathan Kamens
## 202                                                                                                                                                                     Anne Applebaum
## 203                                                                                                                                    Oliver McTernan, Norm Eisen, Kim Lane Scheppele
## 204                                                                                                                                         Christine Quinn, Lee Carter, Robert Califf
## 205                                                                                                              CNN THIS MORNING 6:30 AM EST Mike Dubke, Deborah Birx, Brad Schneider
## 206                                                                                                                 Smerconish 9:00 AM EST Chris Coons, Sharon Waxman, Sal Paolantonio
## 207                                                                                                                                                     Elizabeth Warren, Mary Schiavo
## 208                                                                       ERIN BURNETT OUTFRONT 7:00 PM EST Brad Bowman, Chris Van Hollen, Nick Daniels, Doug Zeghibe, Jonathan Koziol
## 209                                                                                                                                                                   CNN News Central
## 210                                                                                                                                       Brad Bowman, Melissa Gregory, Denis Petukhov
##     publication_type_17 pub_copyright                        show term ticker
## 1            Transcript            NA             Inside Politics   NA     NA
## 2            Transcript            NA                        <NA>   NA     NA
## 3            Transcript            NA            CNN THIS MORNING   NA     NA
## 4            Transcript            NA                        <NA>   NA     NA
## 5            Transcript            NA            CNN THIS MORNING   NA     NA
## 6            Transcript            NA                        <NA>   NA     NA
## 7            Transcript            NA                        <NA>   NA     NA
## 8            Transcript            NA                        <NA>   NA     NA
## 9            Transcript            NA                        <NA>   NA     NA
## 10           Transcript            NA                  Smerconish   NA     NA
## 11           Transcript            NA   The Lead with Jake Tapper   NA     NA
## 12           Transcript            NA       ERIN BURNETT OUTFRONT   NA     NA
## 13           Transcript            NA                        <NA>   NA     NA
## 14           Transcript            NA       ERIN BURNETT OUTFRONT   NA     NA
## 15           Transcript            NA                        <NA>   NA     NA
## 16           Transcript            NA                        <NA>   NA     NA
## 17           Transcript            NA                        <NA>   NA     NA
## 18           Transcript            NA                        <NA>   NA     NA
## 19           Transcript            NA      CNN LIVE EVENT/SPECIAL   NA     NA
## 20           Transcript            NA             Inside Politics   NA     NA
## 21           Transcript            NA                        <NA>   NA     NA
## 22           Transcript            NA          THE SITUATION ROOM   NA     NA
## 23           Transcript            NA ANDERSON COOPER 360 DEGREES   NA     NA
## 24           Transcript            NA                        <NA>   NA     NA
## 25           Transcript            NA                        <NA>   NA     NA
## 26           Transcript            NA                        <NA>   NA     NA
## 27           Transcript            NA                        <NA>   NA     NA
## 28           Transcript            NA                        <NA>   NA     NA
## 29           Transcript            NA                        <NA>   NA     NA
## 30           Transcript            NA                        <NA>   NA     NA
## 31           Transcript            NA            CNN THIS MORNING   NA     NA
## 32           Transcript            NA                        <NA>   NA     NA
## 33           Transcript            NA                        <NA>   NA     NA
## 34           Transcript            NA                        <NA>   NA     NA
## 35           Transcript            NA   The Lead with Jake Tapper   NA     NA
## 36           Transcript            NA                        <NA>   NA     NA
## 37           Transcript            NA                        <NA>   NA     NA
## 38           Transcript            NA                        <NA>   NA     NA
## 39           Transcript            NA      CNN LIVE EVENT/SPECIAL   NA     NA
## 40           Transcript            NA                        <NA>   NA     NA
## 41           Transcript            NA                        <NA>   NA     NA
## 42           Transcript            NA                        <NA>   NA     NA
## 43           Transcript            NA   The Lead with Jake Tapper   NA     NA
## 44           Transcript            NA       ERIN BURNETT OUTFRONT   NA     NA
## 45           Transcript            NA                        <NA>   NA     NA
## 46           Transcript            NA                        <NA>   NA     NA
## 47           Transcript            NA          STATE OF THE UNION   NA     NA
## 48           Transcript            NA                        <NA>   NA     NA
## 49           Transcript            NA                        <NA>   NA     NA
## 50           Transcript            NA                        <NA>   NA     NA
## 51           Transcript            NA                        <NA>   NA     NA
## 52           Transcript            NA                        <NA>   NA     NA
## 53           Transcript            NA                        <NA>   NA     NA
## 54           Transcript            NA            CNN THIS MORNING   NA     NA
## 55           Transcript            NA            CNN THIS MORNING   NA     NA
## 56           Transcript            NA             Inside Politics   NA     NA
## 57           Transcript            NA                        <NA>   NA     NA
## 58           Transcript            NA   The Lead with Jake Tapper   NA     NA
## 59           Transcript            NA                        <NA>   NA     NA
## 60           Transcript            NA                        <NA>   NA     NA
## 61           Transcript            NA   The Lead with Jake Tapper   NA     NA
## 62           Transcript            NA          STATE OF THE UNION   NA     NA
## 63           Transcript            NA            CNN THIS MORNING   NA     NA
## 64           Transcript            NA                        <NA>   NA     NA
## 65           Transcript            NA             Inside Politics   NA     NA
## 66           Transcript            NA            CNN THIS MORNING   NA     NA
## 67           Transcript            NA                        <NA>   NA     NA
## 68           Transcript            NA   The Lead with Jake Tapper   NA     NA
## 69           Transcript            NA                        <NA>   NA     NA
## 70           Transcript            NA                        <NA>   NA     NA
## 71           Transcript            NA             Inside Politics   NA     NA
## 72           Transcript            NA   The Lead with Jake Tapper   NA     NA
## 73           Transcript            NA            CNN THIS MORNING   NA     NA
## 74           Transcript            NA                        <NA>   NA     NA
## 75           Transcript            NA             Inside Politics   NA     NA
## 76           Transcript            NA            CNN THIS MORNING   NA     NA
## 77           Transcript            NA                        <NA>   NA     NA
## 78           Transcript            NA       ERIN BURNETT OUTFRONT   NA     NA
## 79           Transcript            NA   The Lead with Jake Tapper   NA     NA
## 80           Transcript            NA          STATE OF THE UNION   NA     NA
## 81           Transcript            NA             Inside Politics   NA     NA
## 82           Transcript            NA                        <NA>   NA     NA
## 83           Transcript            NA            CNN THIS MORNING   NA     NA
## 84           Transcript            NA                        <NA>   NA     NA
## 85           Transcript            NA          THE SITUATION ROOM   NA     NA
## 86           Transcript            NA             Inside Politics   NA     NA
## 87           Transcript            NA            CNN THIS MORNING   NA     NA
## 88           Transcript            NA       ERIN BURNETT OUTFRONT   NA     NA
## 89           Transcript            NA                        <NA>   NA     NA
## 90           Transcript            NA                        <NA>   NA     NA
## 91           Transcript            NA                        <NA>   NA     NA
## 92           Transcript            NA                        <NA>   NA     NA
## 93           Transcript            NA            CNN THIS MORNING   NA     NA
## 94           Transcript            NA                        <NA>   NA     NA
## 95           Transcript            NA      CNN LIVE EVENT/SPECIAL   NA     NA
## 96           Transcript            NA      CNN LIVE EVENT/SPECIAL   NA     NA
## 97           Transcript            NA            CNN THIS MORNING   NA     NA
## 98           Transcript            NA                        <NA>   NA     NA
## 99           Transcript            NA            CNN THIS MORNING   NA     NA
## 100          Transcript            NA                        <NA>   NA     NA
## 101          Transcript            NA          THE SITUATION ROOM   NA     NA
## 102          Transcript            NA             Inside Politics   NA     NA
## 103          Transcript            NA                        <NA>   NA     NA
## 104          Transcript            NA   The Lead with Jake Tapper   NA     NA
## 105          Transcript            NA   The Lead with Jake Tapper   NA     NA
## 106          Transcript            NA                        <NA>   NA     NA
## 107          Transcript            NA            CNN THIS MORNING   NA     NA
## 108          Transcript            NA             Inside Politics   NA     NA
## 109          Transcript            NA                        <NA>   NA     NA
## 110          Transcript            NA      CNN LIVE EVENT/SPECIAL   NA     NA
## 111          Transcript            NA                        <NA>   NA     NA
## 112          Transcript            NA            CNN THIS MORNING   NA     NA
## 113          Transcript            NA                        <NA>   NA     NA
## 114          Transcript            NA      CNN LIVE EVENT/SPECIAL   NA     NA
## 115          Transcript            NA             Inside Politics   NA     NA
## 116          Transcript            NA       ERIN BURNETT OUTFRONT   NA     NA
## 117          Transcript            NA      CNN LIVE EVENT/SPECIAL   NA     NA
## 118          Transcript            NA                        <NA>   NA     NA
## 119          Transcript            NA                        <NA>   NA     NA
## 120          Transcript            NA       ERIN BURNETT OUTFRONT   NA     NA
## 121          Transcript            NA      CNN LIVE EVENT/SPECIAL   NA     NA
## 122          Transcript            NA   The Lead with Jake Tapper   NA     NA
## 123          Transcript            NA            CNN THIS MORNING   NA     NA
## 124          Transcript            NA                        <NA>   NA     NA
## 125          Transcript            NA                        <NA>   NA     NA
## 126          Transcript            NA                        <NA>   NA     NA
## 127          Transcript            NA      CNN LIVE EVENT/SPECIAL   NA     NA
## 128          Transcript            NA            CNN THIS MORNING   NA     NA
## 129          Transcript            NA             Inside Politics   NA     NA
## 130          Transcript            NA             Inside Politics   NA     NA
## 131          Transcript            NA          FAREED ZAKARIA GPS   NA     NA
## 132          Transcript            NA                        <NA>   NA     NA
## 133          Transcript            NA   The Lead with Jake Tapper   NA     NA
## 134          Transcript            NA            CNN THIS MORNING   NA     NA
## 135          Transcript            NA       ERIN BURNETT OUTFRONT   NA     NA
## 136          Transcript            NA             Inside Politics   NA     NA
## 137          Transcript            NA                        <NA>   NA     NA
## 138          Transcript            NA                        <NA>   NA     NA
## 139          Transcript            NA                        <NA>   NA     NA
## 140          Transcript            NA             Inside Politics   NA     NA
## 141          Transcript            NA            CNN THIS MORNING   NA     NA
## 142          Transcript            NA                        <NA>   NA     NA
## 143          Transcript            NA                        <NA>   NA     NA
## 144          Transcript            NA   The Lead with Jake Tapper   NA     NA
## 145          Transcript            NA                        <NA>   NA     NA
## 146          Transcript            NA                        <NA>   NA     NA
## 147          Transcript            NA                        <NA>   NA     NA
## 148          Transcript            NA   The Lead with Jake Tapper   NA     NA
## 149          Transcript            NA ANDERSON COOPER 360 DEGREES   NA     NA
## 150          Transcript            NA                        <NA>   NA     NA
## 151          Transcript            NA          THE SITUATION ROOM   NA     NA
## 152          Transcript            NA                        <NA>   NA     NA
## 153          Transcript            NA ANDERSON COOPER 360 DEGREES   NA     NA
## 154          Transcript            NA          THE SITUATION ROOM   NA     NA
## 155          Transcript            NA   The Lead with Jake Tapper   NA     NA
## 156          Transcript            NA                        <NA>   NA     NA
## 157          Transcript            NA                        <NA>   NA     NA
## 158          Transcript            NA                        <NA>   NA     NA
## 159          Transcript            NA            CNN THIS MORNING   NA     NA
## 160          Transcript            NA                        <NA>   NA     NA
## 161          Transcript            NA            CNN THIS MORNING   NA     NA
## 162          Transcript            NA                        <NA>   NA     NA
## 163          Transcript            NA   The Lead with Jake Tapper   NA     NA
## 164          Transcript            NA             Inside Politics   NA     NA
## 165          Transcript            NA                        <NA>   NA     NA
## 166          Transcript            NA                        <NA>   NA     NA
## 167          Transcript            NA                        <NA>   NA     NA
## 168          Transcript            NA                        <NA>   NA     NA
## 169          Transcript            NA                  Smerconish   NA     NA
## 170          Transcript            NA            CNN THIS MORNING   NA     NA
## 171          Transcript            NA                        <NA>   NA     NA
## 172          Transcript            NA   The Lead with Jake Tapper   NA     NA
## 173          Transcript            NA                        <NA>   NA     NA
## 174          Transcript            NA                        <NA>   NA     NA
## 175          Transcript            NA                        <NA>   NA     NA
## 176          Transcript            NA   The Lead with Jake Tapper   NA     NA
## 177          Transcript            NA                        <NA>   NA     NA
## 178          Transcript            NA            CNN THIS MORNING   NA     NA
## 179          Transcript            NA                        <NA>   NA     NA
## 180          Transcript            NA                        <NA>   NA     NA
## 181          Transcript            NA       ERIN BURNETT OUTFRONT   NA     NA
## 182          Transcript            NA                        <NA>   NA     NA
## 183          Transcript            NA          THE SITUATION ROOM   NA     NA
## 184          Transcript            NA                        <NA>   NA     NA
## 185          Transcript            NA                        <NA>   NA     NA
## 186          Transcript            NA                        <NA>   NA     NA
## 187          Transcript            NA ANDERSON COOPER 360 DEGREES   NA     NA
## 188          Transcript            NA                        <NA>   NA     NA
## 189          Transcript            NA                        <NA>   NA     NA
## 190          Transcript            NA                        <NA>   NA     NA
## 191          Transcript            NA                        <NA>   NA     NA
## 192          Transcript            NA                        <NA>   NA     NA
## 193          Transcript            NA                        <NA>   NA     NA
## 194          Transcript            NA          STATE OF THE UNION   NA     NA
## 195          Transcript            NA ANDERSON COOPER 360 DEGREES   NA     NA
## 196          Transcript            NA            CNN THIS MORNING   NA     NA
## 197          Transcript            NA                        <NA>   NA     NA
## 198          Transcript            NA                        <NA>   NA     NA
## 199          Transcript            NA                        <NA>   NA     NA
## 200          Transcript            NA          THE SITUATION ROOM   NA     NA
## 201          Transcript            NA                        <NA>   NA     NA
## 202          Transcript            NA                        <NA>   NA     NA
## 203          Transcript            NA                        <NA>   NA     NA
## 204          Transcript            NA                        <NA>   NA     NA
## 205          Transcript            NA            CNN THIS MORNING   NA     NA
## 206          Transcript            NA                  Smerconish   NA     NA
## 207          Transcript            NA                        <NA>   NA     NA
## 208          Transcript            NA       ERIN BURNETT OUTFRONT   NA     NA
## 209          Transcript            NA                        <NA>   NA     NA
## 210          Transcript            NA                        <NA>   NA     NA
##                         index
## 1   sourcestrumpmayinvitesome
## 2   trumpcouldhostjan6rioters
## 3   trumpordersendoffederalde
## 4   immigrationcrackdowntrump
## 5   presidenttrumptacklesimmi
## 6   presidenttrumpordersallfe
## 7   topgeneraloustedastrumpad
## 8   trumpcontinuingtoblamedei
## 9   trumptalksjan6pardonsimmi
## 10  impactoftrumpsunsubstanti
## 11  mandatoryevacuationorders
## 12  explosivenewfireinlaareac
## 13  trumpfireschairmanofthejo
## 14  elonmuskdismantlinggovern
## 15  trumptomakefirstmajorspee
## 16  pushbackontrumpsjanuary6p
## 17  happyblackhistorymonthtru
## 18  newvideosshowmomenthelico
## 19  trumptoquicklytakeactiono
## 20  withnoevidencetrumpblamed
## 21  thousandsofusaidemployees
## 22  allfederaldeistaffnoworde
## 23  oneblackboxrecoveredfromp
## 24  trumpadmindismantlesfeder
## 25  nosurvivorsinmidaircollis
## 26  carolinekennedyaccusescou
## 27  minoritiesfaceburntoftrum
## 28  faasayssixpeopleonboardpl
## 29  bothblackboxesfromplanere
## 30  sesamestreetlegendreactst
## 31  freedwomenhostageshandedo
## 32  40bodiesrecoveredsofarfro
## 33  trumpthreatenstocutofffun
## 34  officialsnosurvivorsinmid
## 35  recoveryeffortunderwayind
## 36  trumpapprovaldipsstillabo
## 37  usdistancesitselffromukra
## 38  cnnslauracoatesreportsabo
## 39  cnnsaturdaymorningtablefo
## 40  recoveryeffortunfoldsfor6
## 41  muskandmysteryteamintensi
## 42  tensionshighbetweenoffice
## 43  recoveryandinvestigationu
## 44  trumpdealtdoubledownblowa
## 45  colemanhughesisinterviewe
## 46  medevacplanecrashesinphil
## 47  interviewwithrepyassamina
## 48  sourcestrumpadminmovestob
## 49  faaindefinitelyclosesheli
## 50  trumpfiresinspectorsgener
## 51  sentimkainedvadiscussespl
## 52  trumpandmagaalliescelebra
## 53  arabamericansfortrumpchan
## 54  trumpadministrationtellsa
## 55  presidenttrumpsallieslook
## 56  tonightdeadlineforfederal
## 57  federaldeistaffputonleave
## 58  flightdataappearstoshowbl
## 59  majorchangesunderwayastru
## 60  trumpukprimeministerstarm
## 61  trumpsignsorderbanningtra
## 62  interviewwithsencorybooke
## 63  senpeterwelchdvtisintervi
## 64  judgepausestrumpsbuyoutof
## 65  trumpapprovalat47percenth
## 66  presidenttrumpdefendspard
## 67  soontrumpholdseventmarkin
## 68  federaljudgeclearswayform
## 69  senberniesandersusmovingt
## 70  interviewwithrepgerryconn
## 71  trumpwelcomesjapaneseprim
## 72  trumpwhitehousestirsnewco
## 73  trumpsbaselesslylinksdive
## 74  marcfogelvisitsthewhiteho
## 75  trumpdelaystiktokbanashel
## 76  marcshortisinterviewedabo
## 77  trumpmakesdemandsthreatsi
## 78  trumpwontcallputinadictat
## 79  newrecoveryeffortunderway
## 80  interviewwithrephakeemjef
## 81  whitehouseordersfreezeona
## 82  trumpsjusticedepartmentha
## 83  hamasreleasesisraelihosta
## 84  interviewwithconnecticuta
## 85  zelenskyysaystalkwithtopt
## 86  trumpbaselesslyappearstob
## 87  trumppausestariffsoncanad
## 88  mayorimmigrationagentsrai
## 89  icesayshundredsofillegali
## 90  muskrehiresdogeaidewhores
## 91  trumpexpectedtoreshapemil
## 92  hegsetharrivesforfirstday
## 93  justicedepartmentfiresoff
## 94  judgemassfiringsoffederal
## 95  atleastfivetechceostoatte
## 96  cnnsspecialcoverageonthei
## 97  trumpreshapesamericasgove
## 98  recentpollsontrumpssecond
## 99  immigrantfamiliesfearbein
## 100 newultimatumfromtrumpgops
## 101 sourcessaytrumpexpectedto
## 102 judgeswilldecidefateoftru
## 103 trumpwhitehouseholdsfirst
## 104 trumpadmindefendsagendaas
## 105 petehegsethconfirmationvo
## 106 trumpsapprovalratingtrump
## 107 repmelaniestansburydnmisi
## 108 elonmuskisreshapingthegov
## 109 migrantdeportationflights
## 110 presidentbidenissuespreem
## 111 trumpmakesunprecedentedsh
## 112 dogeclaimsbillionsinsavin
## 113 muskmovestoeliminatekeyfe
## 114 trumptoleaveblairhousefor
## 115 executiveordersuspendingr
## 116 trumpadminresistsrussiana
## 117 cnnscoverageoftheinaugura
## 118 judgedeniesdemattempttobl
## 119 trumpadministrationtarget
## 120 judgeblockstrumpordertofr
## 121 donaldtrumptobethe47thpre
## 122 trumpsaysputinagreedtosta
## 123 irsfiresthousandsofworker
## 124 trumpjumpstartssecondterm
## 125 new40acrebrushfireeruptso
## 126 trumpukrainewillbepartofa
## 127 trumpplansabout100executi
## 128 trumpadministrationandcol
## 129 trumpsayshellpausetariffs
## 130 whattrumpwantsfromcavoter
## 131 interviewwithpolishforeig
## 132 usdatryingtorehirestaffwo
## 133 speakerjohnsonannouncesne
## 134 drjonathanreinerisintervi
## 135 theinaugurationofdonaldtr
## 136 newvideoshowspassengerjet
## 137 federalbuyoutofferpausedw
## 138 trumpzelenskyytradeinsult
## 139 trumpmuskwontdoanythingwi
## 140 vancescoldseuropeanallies
## 141 gopsenatorspushbackonmusk
## 142 federaljudgereceivesnoans
## 143 presidenttrumpannouncesta
## 144 dojofficialswhoprosecuted
## 145 usaidinlimboasmusksaystru
## 146 freezeonfederalgrantsandl
## 147 muskmovesfromvillainizing
## 148 federaljudgeblockstrumpus
## 149 trumpfirestopusgeneralcal
## 150 zelenskyyisdefiantafterex
## 151 trumpfiresjusticedepartme
## 152 trumpplanstoowncontroland
## 153 trumphostsfrancesmacronat
## 154 urgentinvestigationafterd
## 155 elonmuskdominatesfirsttru
## 156 oscarwinningactorgenehack
## 157 presidenttrumpcallszelens
## 158 trumpjudgesshouldntsaywha
## 159 lawmakersfacepushbackfrom
## 160 trumpadmindirectsagencies
## 161 medicaljetcrashesinphilad
## 162 musktightensgripongovernm
## 163 trumpsfreezeonfederalaidm
## 164 trumpannouncessweepingtar
## 165 lauracoatesinterviewsform
## 166 musktakescenterstageattru
## 167 trumppardonsjanuary6thrio
## 168 dojmovestodismissmayoreri
## 169 willtherebepoliticalfallo
## 170 all67peopleinvolvedinplan
## 171 whitehouseholdsfirstpress
## 172 whitehouserescindscontrov
## 173 usstocksfallastrumpstarif
## 174 justiceofficialresigninpr
## 175 trumptosignlakenrileyacti
## 176 trumpwantsdeptofeducation
## 177 courtrulesustreasurydepar
## 178 idfsaysformerhostagesaren
## 179 sabrinasinghisinterviewed
## 180 chaosconfusioneruptsafter
## 181 jeffriesonwhitehousefundi
## 182 trumpproposesustakeoverga
## 183 judgeblockstrumpfromputti
## 184 trumpadministrationputsdo
## 185 elonmuskdominatestrumpsfi
## 186 muskpreparesforcabinetmee
## 187 trumpfundingfreezeremains
## 188 defendingdogemusktrumpque
## 189 elonmusktoutsgovernmentfi
## 190 trumpsaysmuskheadofdogewh
## 191 interviewwithformerukamba
## 192 trumphitstoptradingpartne
## 193 repryanzinkermtspeakswith
## 194 interviewwithreplauragill
## 195 treasurysuedovergivingmus
## 196 presidenttrumpsnewtariffs
## 197 millionsoffederalworkersr
## 198 ciasendsunclassifiedemail
## 199 passengerjetsblackboxesre
## 200 flightdataappearstoshowhe
## 201 crowdslinestreetstomournb
## 202 multiplemeetingsoverrussi
## 203 interviewwithformerusamba
## 204 rightwingcommentatornamed
## 205 hhssecretaryrfkjrcallsmea
## 206 judgehaltstrumpsplantoput
## 207 senwarrengrillsrfkjronmon
## 208 recoverycrewssearchicywat
## 209 ntsbwholeofgovernmenteffo
## 210 newvideoshowmomentplanear
##                                                                                                     filename
## 1   Sources_ Trump May Invite Some Jan. 6 Rioters On White House; Trump , Republicans In Congress Defend.txt
## 2   Trump Could Host Jan. 6 Rioters After Pardons; Trump's War On DEI; At Least Two Injured In Nashville.txt
## 3   Trump Orders End Of Federal DEI Programs; Musk Casts Doubt On Trump's $500B AI Project; Trump Rebuff.txt
## 4    Immigration Crackdown; Trump May Invite January 6 Convicts to White House; Trump Targets DEI. Aired.txt
## 5   President Trump Tackles Immigration Reform; Federal Employees Told To Report Efforts To Hide DEI Wor.txt
## 6   President Trump Orders all Federal Diversity, Equity, and Inclusion Staff Placed on Leave; President.txt
## 7   Top General Ousted As Trump Admin. Wages _War On Woke_; Legal Challenges Over Anti-DEI Orders Get Fi.txt
## 8   Trump Continuing to Blame DEI For Midair Collision; White House Holds Press Briefing; Midair Collisi.txt
## 9   Trump Talks Jan. 6 Pardons, Immigration, Biden in Oval Office Interview; Trump Targets Federal Worke.txt
## 10  Impact Of Trump's Unsubstantiated Blame Of DEI For Crash; Trump DOJ Aims To Potentially Fire Thousan.txt
## 11  Mandatory Evacuation Orders As New Fire Breaks Out Near L.A.; Trump Closes Federal DEI Offices, Puts.txt
## 12  Explosive New Fire In L.A. Area Could _Go Nuclear_; January 6 Leader Back At Capitol; Trump's DEI Pu.txt
## 13  Trump Fires Chairman Of The Joint Chiefs Of Staff; Judge Blocks Trump's Order Targeting DEI Programs.txt
## 14  Elon Musk Dismantling Government, Accessing Systems; Trump and Musk Orchestrate Takeover of Humanita.txt
## 15  Trump To Make First Major Speech To Global Business, Political Leaders; Trump Targets Federal Employ.txt
## 16  Pushback on Trump's January 6 Pardons; Trump Administration Dismantles Federal DEI Offices, Puts Sta.txt
## 17  Happy Black History Month_; Trump Ramps Up Trend Of Blaming _DEI Hires_ For Disasters; The True Inte.txt
## 18  New Videos Show Moment Helicopter and Plane Collided; Trump Says He Will Meet With Some of the Victi.txt
## 19  Trump to Quickly Take Action on Immigration, Energy, DEI Policies; Hamas Releases Three Hostages, Ce.txt
## 20   With No Evidence, Trump Blame DEI For Deadly Midair Collision; 67 Presumed Dead In Midair Collision.txt
## 21  Thousands Of USAID Employees Given Just 15 Minutes To Vacate Workstations; Trump To Meet With Britis.txt
## 22  All Federal DEI Staff Now Ordered On Leave After Deadline Passes; Crews Battling Rapidly Growing New.txt
## 23  One Black Box Recovered from Potomac After Plane-Chopper Collision; Figure Skaters, Parents, Coaches.txt
## 24  Trump Admin Dismantles Federal DEI Offices, Puts Staffers on Leave; At Least Nine Dead as Once-in-a-.txt
## 25   No Survivors in Midair Collision; President Trump Blames DEI For Midair Collision. Aired 1-1_30p ET.txt
## 26  Caroline Kennedy Accuses Cousin RFK Jr Of Being A _Predator_ And Urges Senators To Reject His Nomina.txt
## 27  Minorities Face Burnt Of Trump's First Actions Back In Office; Former White House Diversity Chief Re.txt
## 28  FAA Says, Six People On Board Plane That Crashes In Philadelphia; Private Medical Flight Crashes Nea.txt
## 29  Both Black Boxes From Plane Recovered After Deadly Crash; Trump Blames DEI, Without Evidence, For De.txt
## 30  _Sesame Street_ Legend Reacts To Purge Of DEI Initiatives; Venezuelan Trump Supporters Fight To Pres.txt
## 31  Freed Women Hostages Handed Over To Israeli Forces; U.S. Freezes Almost All Foreign Aid Effective Im.txt
## 32  40 Bodies Recovered so Far from Crash, Black Box Found; Probe Intensifies in Deadliest U.S. Plane Cr.txt
## 33  Trump Threatens to Cut Off Funding for Sanctuary Cities; Trump's Immigration Plans Bring Refugee Pro.txt
## 34  Officials_ No Survivors In Midair Collision; 67 Believed Dead; Recovery Effort Unfolds For 67 Victim.txt
## 35  Recovery Effort Under Way In Deadly In-flight Collision; Without Evidence, Trump Blames DEI For Dead.txt
## 36  Trump Approval Dips, Still Above Any Point in His First Term; Hamas Hands Bodies of Four Israeli Hos.txt
## 37  U.S. Distances Itself from Ukraine as Trump Invites Putin; Reporter Barred from Oval Over Gulf of Am.txt
## 38  CNN's Laura Coates Reports About the Tragedy on the Potomac ; Trump Blames DEI for Deadly Crash; CNN.txt
## 39   CNN Saturday Morning Table for Five. Elon Musk's Department of Government Efficiency Investigations.txt
## 40  Recovery Effort Unfolds For 67 Victims of Passenger Jet-Chopper Crash; Defense Secretary_ _Mistake W.txt
## 41  Musk And Mystery Team Intensify Dismantling Of Government; CIA Sent Names Of Recent Hires in Unclass.txt
## 42  Tensions High Between Officers, Judges, Rioters Over Pardons; Trump Orders Thousands Of Troops To So.txt
## 43  Recovery And Investigation Underway In Deadly Aircraft Collision Over D.C. ; President Trump Talks D.txt
## 44  Trump Dealt Double Down Blow Amid Effort To Gut U.S. Government; Musk Deputy Out; _Most Dangerous No.txt
## 45  Coleman Hughes is Interviewed about the Anti-DEI Push; Art delaCruz is Interviewed about Helping Wil.txt
## 46  Medevac Plane Crashes in Philadelphia , Injuries on Ground Unclear; 6 On Board Crashed Medevac Jet i.txt
## 47  Interview With Rep. Yassamin Ansari (D- AZ ); Interview With Sen. Tim Kaine (D- VA ); Interview With.txt
## 48  Sources_ Trump Admin Moves To Begin Dismantling Dept. Of Education; Sources_ Trump Admin. Drafting E.txt
## 49   FAA Indefinitely Closes Helicopter Routes Near Reagan National Airport; Families, Friends Honor The.txt
## 50  Trump Fires Inspectors General From Over A Dozen Federal Agencies; Trump Suggests Plan For Gaza Is T.txt
## 51  Sen. Tim Kaine (D- VA ) Discusses Plane-Chopper Midair Collion, Trump Lashing Out at DEI, Democrats;.txt
## 52  Trump and MAGA Allies Celebrating Firings Despite Chaos, Loss; Sources Say, 50,000-Plus Pentagon Wor.txt
## 53  _Arab Americans For Trump_ Changes Name Over Gaza Comments; NLRB Leader Ousted By Trump Speaks Out A.txt
## 54  Trump Administration Tells Agencies To Carry Out Widespread Layoffs; Vance To WSJ_ Sending U.S. Troo.txt
## 55  President Trump's Allies Look To Clarify His Ideas For Gaza; Attorney General Pam Bondi Quickly Alig.txt
## 56  Tonight_ Deadline For Federal Workers To Accept _Buyout_ Offer; Musk's Team Expands Its Influence Th.txt
## 57  Federal DEI Staff Put on Leave; ICE to Use Common Sense with Migrant Arrests; John Sandweg is Interv.txt
## 58  Flight Data Appears To Show Black Hawk 100 Feet Above Max Altitude And Off Course; White House_ Trum.txt
## 59  Major Changes Underway As Trump Works To Reshape Government; Sources_ White House In Talks To Host S.txt
## 60  Trump, U.K. Prime Minister Starmer To Meet At White House For Critical Talks On Ukraine ; RKF Jr. Do.txt
## 61  Trump Signs Order Banning Trans Athletes From Women's Sports; Texas Governor On Trump's Border Crack.txt
## 62   Interview With Sen. Cory Booker (D- NJ ); Interview With U.S. Secretary of Homeland Security Kristi.txt
## 63  Sen. Peter Welch (D- VT ) is Interviewed about Kash Patel; Trump Links Diversity to Collision; Contr.txt
## 64  Judge Pauses Trump's _Buyout_ Offer to Federal Workers; EPA Environmental Justice Workers Could be P.txt
## 65  Trump Approval At 47 Percent, Higher Than Any Point In First Term; Americans Weigh In On Trump's Fir.txt
## 66  President Trump Defends Pardoning Violent January 6 Rioters; Evacuation Warning Just Issued As New F.txt
## 67  Soon_ Trump Holds Event Marking Black History Month; Sources_ Defense Secy. Could Soon Fire Top Gene.txt
## 68  Federal Judge Clears Way For More Mass Firing; Some Once- Hawkish Republicans Soften Stance On Ukrai.txt
## 69  Sen. Bernie Sanders_ U.S. Moving Toward Oligarchy; Officer Hodges_ Rioters Attacked Me, They Don't D.txt
## 70  Interview With Rep. Gerry Connolly (D- VA ); Elon Musk Dismantling Government Agencies; New Trump Ta.txt
## 71  Trump Welcomes Japanese Prime Minister To White House; World Leaders Watching Trump's Early Moves Cl.txt
## 72   Trump White House Stirs New Confusion As It Tries To Clarify Status Of Frozen Federal Funds; RFK Jr.txt
## 73  Trump's Baselessly Links Diversity Initiatives to Collision; Rain Could Hamper Recovery Efforts in I.txt
## 74  Marc Fogel Visits The White House After Release From Russia ; Elon Musk Defends DOGE In The Oval Off.txt
## 75  Trump Delays TikTok Ban as He Looks for Options to Save It; Blue-collar Trump Voters Want Quick Proo.txt
## 76  Marc Short is Interviewed about Tariffs, RFK Jr. and the FBI; Rep. Johnny Olszewski (D- MD ) is Inte.txt
## 77  Trump Makes Demands, Threats in First Message to World; Trump on Musk Criticizing A.I. Announcement,.txt
## 78  Trump Won't Call Putin A _Dictator__ I Don't Use World _Lightly_; Musk_ _Failure To Respond A Second.txt
## 79  New Recovery Effort Under Way In Deadly In-Flight Collision; Controversial Trump Picks Face Question.txt
## 80   Interview With Rep. Hakeem Jeffries (D- NY ); Interview With Special Envoy to the Middle East Steve.txt
## 81  White House Orders Freeze On All Federal Grants And Loans; Assistance Pause Could Impact School Brea.txt
## 82   Trump's Justice Department Halts Police Reform Agreements; Trump Signs New Executive Orders in Oval.txt
## 83  Hamas Releases Israeli Hostages, Returns Remains Of Shiri Bibas; Pentagon Announces It Plans To Fire.txt
## 84  Interview With Connecticut Attorney General William Tong ; Musk and Trump Targeting Department of Ed.txt
## 85  Zelenskyy Says, Talk With Top Trump Envoy Gives Hope; Sources Say, Hegseth Could Fire Top Generals a.txt
## 86  Trump Baselessly Appears To Blame FAA _Diversity Push_ For Collision; 67 Presumed Dead In Mid-Air Co.txt
## 87  Trump Pauses Tariffs on Canada After Similar Delay for Mexico ; State Department Takes Over USAID as.txt
## 88  Mayor_ Immigration Agents Raided NJ Business Without Warrant; Judge Blocks Trump's _Blatantly Uncons.txt
## 89  ICE Says Hundreds of Illegal Immigrants Arrested in Recent Days; Powerful New Chinese AI Tech Shocks.txt
## 90  Musk Rehires DOGE Aide Who Resigned Over Racist Posts; Trump Admits Musk's DOGE Getting Access to Se.txt
## 91  Trump Expected to Reshape Military With New Executive Orders; Trump Expected to Sign Order Banning T.txt
## 92  Hegseth Arrives for First day as Defense Secretary; White House and Colombia Reach Deal; Immigration.txt
## 93  Justice Department Fires Officials Who Investigated Trump; Trump Bars Transgender Americans from Mil.txt
## 94  Judge_ Mass Firings of Federal Probationary Workers _Likely Unlawful_; RFK Jr. Downplays Measles Out.txt
## 95  At Least Five Tech CEOs To Attend Trump Inauguration; Soon_ Trump Caps Political Comeback With Secon.txt
## 96  CNN's Special Coverage on the Inauguration of Donald Trump as the 47th President of the United State.txt
## 97  Trump Reshapes America 's Government & Alliances; CNN Poll_ 62 Percent Say Trump Has 'Not Gone Far E.txt
## 98  Recent Polls on Trump's Second Term; Rep. Katherine Clark (D- MA ) is interviewed about Deadline Gov.txt
## 99  Immigrant Families Fear Being Separated By Trump Deportations; Trump Signs Four New Executive Orders.txt
## 100 New Ultimatum from Trump; GOP'S Careful Pushback on Musk; Sen. Ed Markey (D- MA ) is Interviewed abo.txt
## 101 Sources Say, Trump Expected To Get Back Classified Documents Taken By FBI; Former USAID Leaders Cond.txt
## 102 Judges Will Decide Fate Of Trump's Most Contentious Moves; Trump, Japanese Prime Minister Meeting At.txt
## 103                                       Trump White House Holds First Press Briefing. Aired 1-1_30p ET.txt
## 104  Trump Admin Defends Agenda As CNN Poll Shows Rising Pessimism; White House_ Trump _Very Frustrated_.txt
## 105 Pete Hegseth Confirmation Vote Could Happen In Hours; Sen. Tim Kaine, (D- VA ), Is Interviewed About.txt
## 106 Trump's Approval Rating; Trump Revokes Security for Ex-Aides; Christopher Reeve's Story. Aired 8_30-.txt
## 107 Rep. Melanie Stansbury (D- NM ) is Interviewed about DOGE; Senators Vote on Hegseth Today; Michael S.txt
## 108 Elon Musk Is Reshaping The Government, But Is It Legal_; Breaking Down Elon Musk's Expanding Role in.txt
## 109 Migrant Deportation Flights Begin; Rep. Gabe Vasquez (D- NM ) is Interviewed about Birthright Citize.txt
## 110 President Biden Issues Preemptive Pardons for Dr. Anthony Fauci and General Mark Milley; Trump-Vance.txt
## 111  Trump Makes Unprecedented Shake-up At The Pentagon; CNN Presents _ America Asks_; Fans Flock To See.txt
## 112 DOGE Claims Billions in Savings; Trump Reverses Stance toward Ukraine ; McConnell Announces Retireme.txt
## 113 Musk Moves to Eliminate Key Federal Agency; El Salvador Agrees to House Deported U.S. Criminals; FBI.txt
## 114 Trump to Leave Blair House for Church Service; Sen. Katie Britt (R- AL ) is Interviewed about the Tr.txt
## 115 Executive Order Suspending Refugee Program Could Leave Afghans Who Helped U.S. In Limbo; Trump Signs.txt
## 116 Trump Admin Resists _ Russian Aggression_ Phrase In G7 Document; Elon Musk's Chainsaw; _Inflation Is.txt
## 117 CNN's Coverage of the Inauguration of President Donald Trump; Trump to Hold Signing Ceremonies; Fami.txt
## 118 Judge Denies Dem Attempt To Block DOGE From Federal Data Systems; New York Governor Hochul Considers.txt
## 119 Trump Administration Targeting Generals and Admirals_; IRS Layoffs Expected; Senate Set to Approve K.txt
## 120 Judge Blocks Trump Order To Freeze Trillions In Federal Funding; Caroline Kennedy_ RFK Jr. is _A Pre.txt
## 121 Donald Trump to be the 47th President of the United States ; Second Day of Israel -Hamas Ceasefire U.txt
## 122 Trump Says Putin Agreed To Start Talks On Ukraine ; U.S. Inflation Hits 3 Percent For First Time Sin.txt
## 123 IRS Fires Thousands Of Workers During Tax Season; Elon Musk Celebrates Federal Job Cuts With A Chain.txt
## 124 Trump Jump Starts Second Term With Stunning Slew of Executive Orders; Southern States Brace for Anot.txt
## 125 New 40-Acre Brush Fire Erupts Overnight in L.A.; Trump Defends Jan. 6 Pardons in Oval Office Intervi.txt
## 126 Trump_ Ukraine Will Be Part of Any Peace Negotiations; Trump Appears to Cast Doubt on Whether McConn.txt
## 127 Trump Plans About 100 Executive Orders & Actions On Day One; Freed Palestinians Greeted By Huge Crow.txt
## 128 Trump Administration And Colombia Reach Agreement On Migrant Flights; Navajo Officials_ 15 Indigenou.txt
## 129 Trump Says He'll Pause Tariffs On Mexico For One Month; Trump Admits Tariffs May Cause _A Little Pai.txt
## 130 What Trump Wants From CA _ Voter ID Laws And Water Flow; Trump Says He Wants States, Not FEMA, To Ru.txt
## 131 Interview with Polish Foreign Minister Radoslaw Sikorski on Russia - Ukraine War; The Fragility of A.txt
## 132 USDA Trying To Rehire Staff Working On Bird Flu After Firing Them; Senate Votes To Confirm Kash Pate.txt
## 133 Speaker Johnson Announces New January 6 Subcommittee; Sources_ White House In Talks For January 6 Co.txt
## 134 Dr. Jonathan Reiner is Interviewed about the Measles Outbreak; Trump Takes First Appeal to Supreme C.txt
## 135                                                      The Inauguration Of Donald Trump. Aired 7-8p ET.txt
## 136 New Video Shows Passenger Jet Colliding With Military Chopper; FAA Indefinitely Closes Helicopter Ro.txt
## 137 Federal Buyout Offer Paused; White House Wants Faster Pace of Migrant Arrests; Elon Musk Continues G.txt
## 138 Trump, Zelenskyy Trade Insults In Escalating War Of Words; Defense Secretary Orders Military To Prep.txt
## 139 Trump_ Musk _Won't Do Anything Without Our Approval_; Trump Declares Victory In Stand-Off With Mexic.txt
## 140 Vance Scolds European Allies Over Immigration, Free Speech; Vance_ _Threat From Within_ More Dangero.txt
## 141 GOP Senators Push Back on Musk Gutting Federal Workforce; Several Agencies Tell Employees Not to Res.txt
## 142 Federal Judge Receives No Answers from Justice Department to Questions about Organizational Structur.txt
## 143 President Trump Announces Tariffs on Canada, Mexico , and China; Stocks Markets Potentially Down Upo.txt
## 144 DOJ Officials Who Prosecuted Trump Fired; Trump to Address House Republicans in Miami; Sen. Ruben Ga.txt
## 145 USAID In Limbo As Musk Says Trump Signed Off On Shutting Down Agency; Rep. Pat Ryan (D- NY ) On Chin.txt
## 146 Freeze On Federal Grants And Loans Takes Effect At 5 P.M. Today; WH_ NJ Jones That Caused Hysteria W.txt
## 147 Musk Moves from Villainizing Workers to Fictionalizing Them; Trump Cedes Spotlight to Elon Musk in F.txt
## 148 Federal Judge Blocks Trump USAID Leave Plan; Trudeau Says Trump Threat To Annex Canada _Is A Real Th.txt
## 149 Trump Fires Top U.S. General, Calls Gen. Charles Brown A _Fine Gentleman_; Trump Falling Sort; Actin.txt
## 150 Zelenskyy Is Defiant After Explosive Oval Office Meeting With Trump; Officials Rule Out Key Theory I.txt
## 151  Trump Fires Justice Department Officials Who Prosecuted Him; Trump Plots Strategy With House GOP as.txt
## 152 Trump Plans To Own, Control, And Develop Gaza; Democrats Blast Elon Musk; CIA Offering Buyouts To En.txt
## 153 Trump Hosts France's Macron At Crucial Moment For Ukraine ; Interview With Senator Mark Kelly (D- AZ.txt
## 154 Urgent Investigation After Deadliest U.S. Airliner Crash in 23 Years; Trump Baselessly Blames Divers.txt
## 155 Elon Musk Dominates First Trump Cabinet Meeting; Musk_ Trump Told Me To Be _More Aggressive_ In Fede.txt
## 156 Oscar-Winning Actor Gene Hackman Found Dead in His Home; Trump to Welcome British P.M. Starmer to Wh.txt
## 157 President Trump Calls Zelenskyy A Dictator, Issues A New Warning; Elon Musk's DOGE Slashes Into A Pr.txt
## 158 Trump_ Judges Shouldn't Say _What You're Supposed To Be Doing_; Trump Pardons Former Illinois Gov. R.txt
## 159 Lawmakers Face Pushback From Constituents At Town Halls; Germany 's Conservatives Return To Power As.txt
## 160  Trump Admin Directs Agencies to Prepare for Large-scale Firings; Trump Says U.S. To Sell $5 Million.txt
## 161 Medical Jet Crashes in Philadelphia, No Confirmed Survivors; Israel -Hamas Ceasefire Leads to Hostag.txt
## 162 Musk Tightens Grip On Government With Oversight Of More Agencies; Pam Bondi Sworn In As Attorney Gen.txt
## 163 Trump's Freeze On Federal Aid Money Takes Effect At 5PM ET; New Jet Breaks Sound Barrier On Historic.txt
## 164 Trump Announces Sweeping Tariffs On China, Canada, Mexico ; One- On-One With Former Treasury Secreta.txt
## 165 Laura Coates Interviews Former NYC Mayor Bill De Blasio; Setback After Setback For President Trump I.txt
## 166 Musk Takes Center Stage at Trump's First Cabinet Meeting; Israel, Hamas Agree on New Exchange as Fra.txt
## 167 Trump Pardons January 6th Rioters; Skye Perryman is Interviewed about a Lawsuit against DOGE; CNN Or.txt
## 168 DOJ Moves To Dismiss Mayor Eric Adams (D- New York City , NY ) Case Amid Protest Resignations; Trump.txt
## 169 Will There Be Political Fallout For J6 Pardons; Trump Calls For Full Release Of JFK, RFK, MLK Assass.txt
## 170 All 67 People Involved In Plane-Helicopter Collision Killed; Trump Baselessly Links Diversity Initia.txt
## 171                      White House Holds First Press Briefing Of Trump's Second Term. Aired 1_30-2p ET.txt
## 172 White House Rescinds Controversial Federal Aid Freeze Memo; RFK Jr. Says He Is _Not Antivaccine_ Des.txt
## 173 U.S. Stocks Fall as Trump's Tariff Package is About to Take Effect; American Among Three Hostages Se.txt
## 174 Justice Official Resign In Protest Of Order To Drop Adams Case; 14 States Sue Over Elon Musk's Uncon.txt
## 175 Trump to Sign Laken Riley Act Into Law; WH Says Federal Aid Freeze Still in Effect; Fed Leaves Inter.txt
## 176 Trump Wants Dept. Of Education To Be _Closed Immediately_; Trump Speaks With Russia 's Putin & Ukrai.txt
## 177 Court Rules U.S. Treasury Department Officials Affiliated with Department of Government Efficiency M.txt
## 178 IDF Says Former Hostages Are Now At Israeli Military Base; Hegseth Confirmed As Defense Secretary Af.txt
## 179 Sabrina Singh is Interviewed about the Pentagon Shakeup; W. Kamau Bell is Interviewed about Performi.txt
## 180 Chaos, Confusion Erupts After Trump Halts Federal Money; Judge Temporarily Blocks Trump's Plans To F.txt
## 181 Jeffries On White House Funding Mess_ _Round One Goes To Team America _; RFK Jr. Grilled; Migrants T.txt
## 182 Trump Proposes U.S. Take Over Gaza To Be Riviera; Trump Not Ruling Out Sending Troops To Take Over G.txt
## 183 Judge Blocks Trump from Putting Many USAID Workers on Leave Tonight; Trump Says, I Plan to Fire Some.txt
## 184 Trump Administration Puts Dozens Of USAID Senior Officials On Paid Leave; White House Pauses All Fed.txt
## 185 Elon Musk Dominates Trump's First Cabinet Meeting; Musk Takes Financial Hit Amid Tesla Protests; Jef.txt
## 186 Musk Prepares For Cabinet Meeting As Mass Firings Loom; Andrew Cuomo Readies Controversial Comeback;.txt
## 187 Trump Funding Freeze Remains in _Full Force_ Despite Rescinding Memo; Kennedy Confirmation Prospects.txt
## 188 Defending DOGE_ Musk & Trump Questioned On Aggressive Overhaul; Trump Repeats Gaza Plan_ _We're Goin.txt
## 189 Elon Musk Touts Government Firings by Wielding Chainsaw; Kash Patel Critics Warn of Purge as He Take.txt
## 190 Trump Says Musk Head Of DOGE, White House Says He's Not; Trump Dodges On Musk Decisions, Firings And.txt
## 191  Interview With Former U.K. Ambassador To The U.N. Sir John Sawers; Interview With Former U.S. State.txt
## 192 Trump Hits Top Trading Partners Canada, Mexico , China With Tariffs; Secretary Duffy_ We Are Going T.txt
## 193 Rep. Ryan Zinke (R- MT ) Speaks With CNN Following Protests Outside Office; CEO Warns Aluminum Tarif.txt
## 194  Interview With Rep. Laura Gillen (D- NY ); Interview With Rep. Riley Moore (R- WV ); Interview With.txt
## 195 Treasury Sued Over Giving Musk's DOGE Access to Payment Data; Interview with Sen. Tammy Duckworth (D.txt
## 196 President Trump's New Tariffs Go Into Effect Tuesday; Canada Announces _Far-Reaching_ Retaliatory Ta.txt
## 197 Millions of Federal Workers Receive Email from Trump Administration with Option to Resign from Their.txt
## 198  CIA Sends Unclassified Email to White House Listing Names of New Hires; DOGE to Keep Limited Access.txt
## 199  Passenger Jet's Black Boxes Recovered After Midair Tragedy; Trump Tariffs On Canada, Mexico , China.txt
## 200 Flight Data Appears To Show Helicopter Above Altitude, Off Course; U.S. Air Traffic Control System U.txt
## 201 Crowds Line Streets To Mourn Bibas Family Who Were Killed In Gaza; Fired Cybersecurity Official_ Vet.txt
## 202 Multiple Meetings Over Russia and Ukraine Peace; Anne Applebaum is Interviewed about Government Cuts.txt
## 203 Interview With Former U.S. Ambassador To The Czech Republic Norm Eisen; Interview With Princeton Pro.txt
## 204 Right-Wing Commentator Named FBI Deputy Director; Pope In Critical Condition; Health Agencies Reel F.txt
## 205 HHS Secretary RFK Jr. Calls Measles Outbreak _Not Usual_; Protesters Flood Republican Town Halls Ove.txt
## 206 Judge Halts Trump's Plan To Put USAID Workers On Leave; Sen. Chris Coons, (D- DE ), Is Interviewed A.txt
## 207 Sen. Warren Grills RFK Jr. On Money From Vaccine Lawsuits_ _Kids Might Die, But Robert Kennedy Can K.txt
## 208  Recovery Crews Search Icy Waters For 67, All Presumed Dead; Inside Flight Simulator; Figure Skating.txt
## 209  NTSB_ _Whole of Government Effort_ to Investigate Midair Crash; NTSB_ Flight Data Recorders Not Yet.txt
## 210 New Video Show Moment Plane & Army Helicopter Collided; Multiple Investigations Into What Caused Col.txt
##                                                                                                                     filepath
## 1   ./file_raw_text/Sources_ Trump May Invite Some Jan. 6 Rioters On White House; Trump , Republicans In Congress Defend.txt
## 2   ./file_raw_text/Trump Could Host Jan. 6 Rioters After Pardons; Trump's War On DEI; At Least Two Injured In Nashville.txt
## 3   ./file_raw_text/Trump Orders End Of Federal DEI Programs; Musk Casts Doubt On Trump's $500B AI Project; Trump Rebuff.txt
## 4    ./file_raw_text/Immigration Crackdown; Trump May Invite January 6 Convicts to White House; Trump Targets DEI. Aired.txt
## 5   ./file_raw_text/President Trump Tackles Immigration Reform; Federal Employees Told To Report Efforts To Hide DEI Wor.txt
## 6   ./file_raw_text/President Trump Orders all Federal Diversity, Equity, and Inclusion Staff Placed on Leave; President.txt
## 7   ./file_raw_text/Top General Ousted As Trump Admin. Wages _War On Woke_; Legal Challenges Over Anti-DEI Orders Get Fi.txt
## 8   ./file_raw_text/Trump Continuing to Blame DEI For Midair Collision; White House Holds Press Briefing; Midair Collisi.txt
## 9   ./file_raw_text/Trump Talks Jan. 6 Pardons, Immigration, Biden in Oval Office Interview; Trump Targets Federal Worke.txt
## 10  ./file_raw_text/Impact Of Trump's Unsubstantiated Blame Of DEI For Crash; Trump DOJ Aims To Potentially Fire Thousan.txt
## 11  ./file_raw_text/Mandatory Evacuation Orders As New Fire Breaks Out Near L.A.; Trump Closes Federal DEI Offices, Puts.txt
## 12  ./file_raw_text/Explosive New Fire In L.A. Area Could _Go Nuclear_; January 6 Leader Back At Capitol; Trump's DEI Pu.txt
## 13  ./file_raw_text/Trump Fires Chairman Of The Joint Chiefs Of Staff; Judge Blocks Trump's Order Targeting DEI Programs.txt
## 14  ./file_raw_text/Elon Musk Dismantling Government, Accessing Systems; Trump and Musk Orchestrate Takeover of Humanita.txt
## 15  ./file_raw_text/Trump To Make First Major Speech To Global Business, Political Leaders; Trump Targets Federal Employ.txt
## 16  ./file_raw_text/Pushback on Trump's January 6 Pardons; Trump Administration Dismantles Federal DEI Offices, Puts Sta.txt
## 17  ./file_raw_text/Happy Black History Month_; Trump Ramps Up Trend Of Blaming _DEI Hires_ For Disasters; The True Inte.txt
## 18  ./file_raw_text/New Videos Show Moment Helicopter and Plane Collided; Trump Says He Will Meet With Some of the Victi.txt
## 19  ./file_raw_text/Trump to Quickly Take Action on Immigration, Energy, DEI Policies; Hamas Releases Three Hostages, Ce.txt
## 20   ./file_raw_text/With No Evidence, Trump Blame DEI For Deadly Midair Collision; 67 Presumed Dead In Midair Collision.txt
## 21  ./file_raw_text/Thousands Of USAID Employees Given Just 15 Minutes To Vacate Workstations; Trump To Meet With Britis.txt
## 22  ./file_raw_text/All Federal DEI Staff Now Ordered On Leave After Deadline Passes; Crews Battling Rapidly Growing New.txt
## 23  ./file_raw_text/One Black Box Recovered from Potomac After Plane-Chopper Collision; Figure Skaters, Parents, Coaches.txt
## 24  ./file_raw_text/Trump Admin Dismantles Federal DEI Offices, Puts Staffers on Leave; At Least Nine Dead as Once-in-a-.txt
## 25   ./file_raw_text/No Survivors in Midair Collision; President Trump Blames DEI For Midair Collision. Aired 1-1_30p ET.txt
## 26  ./file_raw_text/Caroline Kennedy Accuses Cousin RFK Jr Of Being A _Predator_ And Urges Senators To Reject His Nomina.txt
## 27  ./file_raw_text/Minorities Face Burnt Of Trump's First Actions Back In Office; Former White House Diversity Chief Re.txt
## 28  ./file_raw_text/FAA Says, Six People On Board Plane That Crashes In Philadelphia; Private Medical Flight Crashes Nea.txt
## 29  ./file_raw_text/Both Black Boxes From Plane Recovered After Deadly Crash; Trump Blames DEI, Without Evidence, For De.txt
## 30  ./file_raw_text/_Sesame Street_ Legend Reacts To Purge Of DEI Initiatives; Venezuelan Trump Supporters Fight To Pres.txt
## 31  ./file_raw_text/Freed Women Hostages Handed Over To Israeli Forces; U.S. Freezes Almost All Foreign Aid Effective Im.txt
## 32  ./file_raw_text/40 Bodies Recovered so Far from Crash, Black Box Found; Probe Intensifies in Deadliest U.S. Plane Cr.txt
## 33  ./file_raw_text/Trump Threatens to Cut Off Funding for Sanctuary Cities; Trump's Immigration Plans Bring Refugee Pro.txt
## 34  ./file_raw_text/Officials_ No Survivors In Midair Collision; 67 Believed Dead; Recovery Effort Unfolds For 67 Victim.txt
## 35  ./file_raw_text/Recovery Effort Under Way In Deadly In-flight Collision; Without Evidence, Trump Blames DEI For Dead.txt
## 36  ./file_raw_text/Trump Approval Dips, Still Above Any Point in His First Term; Hamas Hands Bodies of Four Israeli Hos.txt
## 37  ./file_raw_text/U.S. Distances Itself from Ukraine as Trump Invites Putin; Reporter Barred from Oval Over Gulf of Am.txt
## 38  ./file_raw_text/CNN's Laura Coates Reports About the Tragedy on the Potomac ; Trump Blames DEI for Deadly Crash; CNN.txt
## 39   ./file_raw_text/CNN Saturday Morning Table for Five. Elon Musk's Department of Government Efficiency Investigations.txt
## 40  ./file_raw_text/Recovery Effort Unfolds For 67 Victims of Passenger Jet-Chopper Crash; Defense Secretary_ _Mistake W.txt
## 41  ./file_raw_text/Musk And Mystery Team Intensify Dismantling Of Government; CIA Sent Names Of Recent Hires in Unclass.txt
## 42  ./file_raw_text/Tensions High Between Officers, Judges, Rioters Over Pardons; Trump Orders Thousands Of Troops To So.txt
## 43  ./file_raw_text/Recovery And Investigation Underway In Deadly Aircraft Collision Over D.C. ; President Trump Talks D.txt
## 44  ./file_raw_text/Trump Dealt Double Down Blow Amid Effort To Gut U.S. Government; Musk Deputy Out; _Most Dangerous No.txt
## 45  ./file_raw_text/Coleman Hughes is Interviewed about the Anti-DEI Push; Art delaCruz is Interviewed about Helping Wil.txt
## 46  ./file_raw_text/Medevac Plane Crashes in Philadelphia , Injuries on Ground Unclear; 6 On Board Crashed Medevac Jet i.txt
## 47  ./file_raw_text/Interview With Rep. Yassamin Ansari (D- AZ ); Interview With Sen. Tim Kaine (D- VA ); Interview With.txt
## 48  ./file_raw_text/Sources_ Trump Admin Moves To Begin Dismantling Dept. Of Education; Sources_ Trump Admin. Drafting E.txt
## 49   ./file_raw_text/FAA Indefinitely Closes Helicopter Routes Near Reagan National Airport; Families, Friends Honor The.txt
## 50  ./file_raw_text/Trump Fires Inspectors General From Over A Dozen Federal Agencies; Trump Suggests Plan For Gaza Is T.txt
## 51  ./file_raw_text/Sen. Tim Kaine (D- VA ) Discusses Plane-Chopper Midair Collion, Trump Lashing Out at DEI, Democrats;.txt
## 52  ./file_raw_text/Trump and MAGA Allies Celebrating Firings Despite Chaos, Loss; Sources Say, 50,000-Plus Pentagon Wor.txt
## 53  ./file_raw_text/_Arab Americans For Trump_ Changes Name Over Gaza Comments; NLRB Leader Ousted By Trump Speaks Out A.txt
## 54  ./file_raw_text/Trump Administration Tells Agencies To Carry Out Widespread Layoffs; Vance To WSJ_ Sending U.S. Troo.txt
## 55  ./file_raw_text/President Trump's Allies Look To Clarify His Ideas For Gaza; Attorney General Pam Bondi Quickly Alig.txt
## 56  ./file_raw_text/Tonight_ Deadline For Federal Workers To Accept _Buyout_ Offer; Musk's Team Expands Its Influence Th.txt
## 57  ./file_raw_text/Federal DEI Staff Put on Leave; ICE to Use Common Sense with Migrant Arrests; John Sandweg is Interv.txt
## 58  ./file_raw_text/Flight Data Appears To Show Black Hawk 100 Feet Above Max Altitude And Off Course; White House_ Trum.txt
## 59  ./file_raw_text/Major Changes Underway As Trump Works To Reshape Government; Sources_ White House In Talks To Host S.txt
## 60  ./file_raw_text/Trump, U.K. Prime Minister Starmer To Meet At White House For Critical Talks On Ukraine ; RKF Jr. Do.txt
## 61  ./file_raw_text/Trump Signs Order Banning Trans Athletes From Women's Sports; Texas Governor On Trump's Border Crack.txt
## 62   ./file_raw_text/Interview With Sen. Cory Booker (D- NJ ); Interview With U.S. Secretary of Homeland Security Kristi.txt
## 63  ./file_raw_text/Sen. Peter Welch (D- VT ) is Interviewed about Kash Patel; Trump Links Diversity to Collision; Contr.txt
## 64  ./file_raw_text/Judge Pauses Trump's _Buyout_ Offer to Federal Workers; EPA Environmental Justice Workers Could be P.txt
## 65  ./file_raw_text/Trump Approval At 47 Percent, Higher Than Any Point In First Term; Americans Weigh In On Trump's Fir.txt
## 66  ./file_raw_text/President Trump Defends Pardoning Violent January 6 Rioters; Evacuation Warning Just Issued As New F.txt
## 67  ./file_raw_text/Soon_ Trump Holds Event Marking Black History Month; Sources_ Defense Secy. Could Soon Fire Top Gene.txt
## 68  ./file_raw_text/Federal Judge Clears Way For More Mass Firing; Some Once- Hawkish Republicans Soften Stance On Ukrai.txt
## 69  ./file_raw_text/Sen. Bernie Sanders_ U.S. Moving Toward Oligarchy; Officer Hodges_ Rioters Attacked Me, They Don't D.txt
## 70  ./file_raw_text/Interview With Rep. Gerry Connolly (D- VA ); Elon Musk Dismantling Government Agencies; New Trump Ta.txt
## 71  ./file_raw_text/Trump Welcomes Japanese Prime Minister To White House; World Leaders Watching Trump's Early Moves Cl.txt
## 72   ./file_raw_text/Trump White House Stirs New Confusion As It Tries To Clarify Status Of Frozen Federal Funds; RFK Jr.txt
## 73  ./file_raw_text/Trump's Baselessly Links Diversity Initiatives to Collision; Rain Could Hamper Recovery Efforts in I.txt
## 74  ./file_raw_text/Marc Fogel Visits The White House After Release From Russia ; Elon Musk Defends DOGE In The Oval Off.txt
## 75  ./file_raw_text/Trump Delays TikTok Ban as He Looks for Options to Save It; Blue-collar Trump Voters Want Quick Proo.txt
## 76  ./file_raw_text/Marc Short is Interviewed about Tariffs, RFK Jr. and the FBI; Rep. Johnny Olszewski (D- MD ) is Inte.txt
## 77  ./file_raw_text/Trump Makes Demands, Threats in First Message to World; Trump on Musk Criticizing A.I. Announcement,.txt
## 78  ./file_raw_text/Trump Won't Call Putin A _Dictator__ I Don't Use World _Lightly_; Musk_ _Failure To Respond A Second.txt
## 79  ./file_raw_text/New Recovery Effort Under Way In Deadly In-Flight Collision; Controversial Trump Picks Face Question.txt
## 80   ./file_raw_text/Interview With Rep. Hakeem Jeffries (D- NY ); Interview With Special Envoy to the Middle East Steve.txt
## 81  ./file_raw_text/White House Orders Freeze On All Federal Grants And Loans; Assistance Pause Could Impact School Brea.txt
## 82   ./file_raw_text/Trump's Justice Department Halts Police Reform Agreements; Trump Signs New Executive Orders in Oval.txt
## 83  ./file_raw_text/Hamas Releases Israeli Hostages, Returns Remains Of Shiri Bibas; Pentagon Announces It Plans To Fire.txt
## 84  ./file_raw_text/Interview With Connecticut Attorney General William Tong ; Musk and Trump Targeting Department of Ed.txt
## 85  ./file_raw_text/Zelenskyy Says, Talk With Top Trump Envoy Gives Hope; Sources Say, Hegseth Could Fire Top Generals a.txt
## 86  ./file_raw_text/Trump Baselessly Appears To Blame FAA _Diversity Push_ For Collision; 67 Presumed Dead In Mid-Air Co.txt
## 87  ./file_raw_text/Trump Pauses Tariffs on Canada After Similar Delay for Mexico ; State Department Takes Over USAID as.txt
## 88  ./file_raw_text/Mayor_ Immigration Agents Raided NJ Business Without Warrant; Judge Blocks Trump's _Blatantly Uncons.txt
## 89  ./file_raw_text/ICE Says Hundreds of Illegal Immigrants Arrested in Recent Days; Powerful New Chinese AI Tech Shocks.txt
## 90  ./file_raw_text/Musk Rehires DOGE Aide Who Resigned Over Racist Posts; Trump Admits Musk's DOGE Getting Access to Se.txt
## 91  ./file_raw_text/Trump Expected to Reshape Military With New Executive Orders; Trump Expected to Sign Order Banning T.txt
## 92  ./file_raw_text/Hegseth Arrives for First day as Defense Secretary; White House and Colombia Reach Deal; Immigration.txt
## 93  ./file_raw_text/Justice Department Fires Officials Who Investigated Trump; Trump Bars Transgender Americans from Mil.txt
## 94  ./file_raw_text/Judge_ Mass Firings of Federal Probationary Workers _Likely Unlawful_; RFK Jr. Downplays Measles Out.txt
## 95  ./file_raw_text/At Least Five Tech CEOs To Attend Trump Inauguration; Soon_ Trump Caps Political Comeback With Secon.txt
## 96  ./file_raw_text/CNN's Special Coverage on the Inauguration of Donald Trump as the 47th President of the United State.txt
## 97  ./file_raw_text/Trump Reshapes America 's Government & Alliances; CNN Poll_ 62 Percent Say Trump Has 'Not Gone Far E.txt
## 98  ./file_raw_text/Recent Polls on Trump's Second Term; Rep. Katherine Clark (D- MA ) is interviewed about Deadline Gov.txt
## 99  ./file_raw_text/Immigrant Families Fear Being Separated By Trump Deportations; Trump Signs Four New Executive Orders.txt
## 100 ./file_raw_text/New Ultimatum from Trump; GOP'S Careful Pushback on Musk; Sen. Ed Markey (D- MA ) is Interviewed abo.txt
## 101 ./file_raw_text/Sources Say, Trump Expected To Get Back Classified Documents Taken By FBI; Former USAID Leaders Cond.txt
## 102 ./file_raw_text/Judges Will Decide Fate Of Trump's Most Contentious Moves; Trump, Japanese Prime Minister Meeting At.txt
## 103                                       ./file_raw_text/Trump White House Holds First Press Briefing. Aired 1-1_30p ET.txt
## 104  ./file_raw_text/Trump Admin Defends Agenda As CNN Poll Shows Rising Pessimism; White House_ Trump _Very Frustrated_.txt
## 105 ./file_raw_text/Pete Hegseth Confirmation Vote Could Happen In Hours; Sen. Tim Kaine, (D- VA ), Is Interviewed About.txt
## 106 ./file_raw_text/Trump's Approval Rating; Trump Revokes Security for Ex-Aides; Christopher Reeve's Story. Aired 8_30-.txt
## 107 ./file_raw_text/Rep. Melanie Stansbury (D- NM ) is Interviewed about DOGE; Senators Vote on Hegseth Today; Michael S.txt
## 108 ./file_raw_text/Elon Musk Is Reshaping The Government, But Is It Legal_; Breaking Down Elon Musk's Expanding Role in.txt
## 109 ./file_raw_text/Migrant Deportation Flights Begin; Rep. Gabe Vasquez (D- NM ) is Interviewed about Birthright Citize.txt
## 110 ./file_raw_text/President Biden Issues Preemptive Pardons for Dr. Anthony Fauci and General Mark Milley; Trump-Vance.txt
## 111  ./file_raw_text/Trump Makes Unprecedented Shake-up At The Pentagon; CNN Presents _ America Asks_; Fans Flock To See.txt
## 112 ./file_raw_text/DOGE Claims Billions in Savings; Trump Reverses Stance toward Ukraine ; McConnell Announces Retireme.txt
## 113 ./file_raw_text/Musk Moves to Eliminate Key Federal Agency; El Salvador Agrees to House Deported U.S. Criminals; FBI.txt
## 114 ./file_raw_text/Trump to Leave Blair House for Church Service; Sen. Katie Britt (R- AL ) is Interviewed about the Tr.txt
## 115 ./file_raw_text/Executive Order Suspending Refugee Program Could Leave Afghans Who Helped U.S. In Limbo; Trump Signs.txt
## 116 ./file_raw_text/Trump Admin Resists _ Russian Aggression_ Phrase In G7 Document; Elon Musk's Chainsaw; _Inflation Is.txt
## 117 ./file_raw_text/CNN's Coverage of the Inauguration of President Donald Trump; Trump to Hold Signing Ceremonies; Fami.txt
## 118 ./file_raw_text/Judge Denies Dem Attempt To Block DOGE From Federal Data Systems; New York Governor Hochul Considers.txt
## 119 ./file_raw_text/Trump Administration Targeting Generals and Admirals_; IRS Layoffs Expected; Senate Set to Approve K.txt
## 120 ./file_raw_text/Judge Blocks Trump Order To Freeze Trillions In Federal Funding; Caroline Kennedy_ RFK Jr. is _A Pre.txt
## 121 ./file_raw_text/Donald Trump to be the 47th President of the United States ; Second Day of Israel -Hamas Ceasefire U.txt
## 122 ./file_raw_text/Trump Says Putin Agreed To Start Talks On Ukraine ; U.S. Inflation Hits 3 Percent For First Time Sin.txt
## 123 ./file_raw_text/IRS Fires Thousands Of Workers During Tax Season; Elon Musk Celebrates Federal Job Cuts With A Chain.txt
## 124 ./file_raw_text/Trump Jump Starts Second Term With Stunning Slew of Executive Orders; Southern States Brace for Anot.txt
## 125 ./file_raw_text/New 40-Acre Brush Fire Erupts Overnight in L.A.; Trump Defends Jan. 6 Pardons in Oval Office Intervi.txt
## 126 ./file_raw_text/Trump_ Ukraine Will Be Part of Any Peace Negotiations; Trump Appears to Cast Doubt on Whether McConn.txt
## 127 ./file_raw_text/Trump Plans About 100 Executive Orders & Actions On Day One; Freed Palestinians Greeted By Huge Crow.txt
## 128 ./file_raw_text/Trump Administration And Colombia Reach Agreement On Migrant Flights; Navajo Officials_ 15 Indigenou.txt
## 129 ./file_raw_text/Trump Says He'll Pause Tariffs On Mexico For One Month; Trump Admits Tariffs May Cause _A Little Pai.txt
## 130 ./file_raw_text/What Trump Wants From CA _ Voter ID Laws And Water Flow; Trump Says He Wants States, Not FEMA, To Ru.txt
## 131 ./file_raw_text/Interview with Polish Foreign Minister Radoslaw Sikorski on Russia - Ukraine War; The Fragility of A.txt
## 132 ./file_raw_text/USDA Trying To Rehire Staff Working On Bird Flu After Firing Them; Senate Votes To Confirm Kash Pate.txt
## 133 ./file_raw_text/Speaker Johnson Announces New January 6 Subcommittee; Sources_ White House In Talks For January 6 Co.txt
## 134 ./file_raw_text/Dr. Jonathan Reiner is Interviewed about the Measles Outbreak; Trump Takes First Appeal to Supreme C.txt
## 135                                                      ./file_raw_text/The Inauguration Of Donald Trump. Aired 7-8p ET.txt
## 136 ./file_raw_text/New Video Shows Passenger Jet Colliding With Military Chopper; FAA Indefinitely Closes Helicopter Ro.txt
## 137 ./file_raw_text/Federal Buyout Offer Paused; White House Wants Faster Pace of Migrant Arrests; Elon Musk Continues G.txt
## 138 ./file_raw_text/Trump, Zelenskyy Trade Insults In Escalating War Of Words; Defense Secretary Orders Military To Prep.txt
## 139 ./file_raw_text/Trump_ Musk _Won't Do Anything Without Our Approval_; Trump Declares Victory In Stand-Off With Mexic.txt
## 140 ./file_raw_text/Vance Scolds European Allies Over Immigration, Free Speech; Vance_ _Threat From Within_ More Dangero.txt
## 141 ./file_raw_text/GOP Senators Push Back on Musk Gutting Federal Workforce; Several Agencies Tell Employees Not to Res.txt
## 142 ./file_raw_text/Federal Judge Receives No Answers from Justice Department to Questions about Organizational Structur.txt
## 143 ./file_raw_text/President Trump Announces Tariffs on Canada, Mexico , and China; Stocks Markets Potentially Down Upo.txt
## 144 ./file_raw_text/DOJ Officials Who Prosecuted Trump Fired; Trump to Address House Republicans in Miami; Sen. Ruben Ga.txt
## 145 ./file_raw_text/USAID In Limbo As Musk Says Trump Signed Off On Shutting Down Agency; Rep. Pat Ryan (D- NY ) On Chin.txt
## 146 ./file_raw_text/Freeze On Federal Grants And Loans Takes Effect At 5 P.M. Today; WH_ NJ Jones That Caused Hysteria W.txt
## 147 ./file_raw_text/Musk Moves from Villainizing Workers to Fictionalizing Them; Trump Cedes Spotlight to Elon Musk in F.txt
## 148 ./file_raw_text/Federal Judge Blocks Trump USAID Leave Plan; Trudeau Says Trump Threat To Annex Canada _Is A Real Th.txt
## 149 ./file_raw_text/Trump Fires Top U.S. General, Calls Gen. Charles Brown A _Fine Gentleman_; Trump Falling Sort; Actin.txt
## 150 ./file_raw_text/Zelenskyy Is Defiant After Explosive Oval Office Meeting With Trump; Officials Rule Out Key Theory I.txt
## 151  ./file_raw_text/Trump Fires Justice Department Officials Who Prosecuted Him; Trump Plots Strategy With House GOP as.txt
## 152 ./file_raw_text/Trump Plans To Own, Control, And Develop Gaza; Democrats Blast Elon Musk; CIA Offering Buyouts To En.txt
## 153 ./file_raw_text/Trump Hosts France's Macron At Crucial Moment For Ukraine ; Interview With Senator Mark Kelly (D- AZ.txt
## 154 ./file_raw_text/Urgent Investigation After Deadliest U.S. Airliner Crash in 23 Years; Trump Baselessly Blames Divers.txt
## 155 ./file_raw_text/Elon Musk Dominates First Trump Cabinet Meeting; Musk_ Trump Told Me To Be _More Aggressive_ In Fede.txt
## 156 ./file_raw_text/Oscar-Winning Actor Gene Hackman Found Dead in His Home; Trump to Welcome British P.M. Starmer to Wh.txt
## 157 ./file_raw_text/President Trump Calls Zelenskyy A Dictator, Issues A New Warning; Elon Musk's DOGE Slashes Into A Pr.txt
## 158 ./file_raw_text/Trump_ Judges Shouldn't Say _What You're Supposed To Be Doing_; Trump Pardons Former Illinois Gov. R.txt
## 159 ./file_raw_text/Lawmakers Face Pushback From Constituents At Town Halls; Germany 's Conservatives Return To Power As.txt
## 160  ./file_raw_text/Trump Admin Directs Agencies to Prepare for Large-scale Firings; Trump Says U.S. To Sell $5 Million.txt
## 161 ./file_raw_text/Medical Jet Crashes in Philadelphia, No Confirmed Survivors; Israel -Hamas Ceasefire Leads to Hostag.txt
## 162 ./file_raw_text/Musk Tightens Grip On Government With Oversight Of More Agencies; Pam Bondi Sworn In As Attorney Gen.txt
## 163 ./file_raw_text/Trump's Freeze On Federal Aid Money Takes Effect At 5PM ET; New Jet Breaks Sound Barrier On Historic.txt
## 164 ./file_raw_text/Trump Announces Sweeping Tariffs On China, Canada, Mexico ; One- On-One With Former Treasury Secreta.txt
## 165 ./file_raw_text/Laura Coates Interviews Former NYC Mayor Bill De Blasio; Setback After Setback For President Trump I.txt
## 166 ./file_raw_text/Musk Takes Center Stage at Trump's First Cabinet Meeting; Israel, Hamas Agree on New Exchange as Fra.txt
## 167 ./file_raw_text/Trump Pardons January 6th Rioters; Skye Perryman is Interviewed about a Lawsuit against DOGE; CNN Or.txt
## 168 ./file_raw_text/DOJ Moves To Dismiss Mayor Eric Adams (D- New York City , NY ) Case Amid Protest Resignations; Trump.txt
## 169 ./file_raw_text/Will There Be Political Fallout For J6 Pardons; Trump Calls For Full Release Of JFK, RFK, MLK Assass.txt
## 170 ./file_raw_text/All 67 People Involved In Plane-Helicopter Collision Killed; Trump Baselessly Links Diversity Initia.txt
## 171                      ./file_raw_text/White House Holds First Press Briefing Of Trump's Second Term. Aired 1_30-2p ET.txt
## 172 ./file_raw_text/White House Rescinds Controversial Federal Aid Freeze Memo; RFK Jr. Says He Is _Not Antivaccine_ Des.txt
## 173 ./file_raw_text/U.S. Stocks Fall as Trump's Tariff Package is About to Take Effect; American Among Three Hostages Se.txt
## 174 ./file_raw_text/Justice Official Resign In Protest Of Order To Drop Adams Case; 14 States Sue Over Elon Musk's Uncon.txt
## 175 ./file_raw_text/Trump to Sign Laken Riley Act Into Law; WH Says Federal Aid Freeze Still in Effect; Fed Leaves Inter.txt
## 176 ./file_raw_text/Trump Wants Dept. Of Education To Be _Closed Immediately_; Trump Speaks With Russia 's Putin & Ukrai.txt
## 177 ./file_raw_text/Court Rules U.S. Treasury Department Officials Affiliated with Department of Government Efficiency M.txt
## 178 ./file_raw_text/IDF Says Former Hostages Are Now At Israeli Military Base; Hegseth Confirmed As Defense Secretary Af.txt
## 179 ./file_raw_text/Sabrina Singh is Interviewed about the Pentagon Shakeup; W. Kamau Bell is Interviewed about Performi.txt
## 180 ./file_raw_text/Chaos, Confusion Erupts After Trump Halts Federal Money; Judge Temporarily Blocks Trump's Plans To F.txt
## 181 ./file_raw_text/Jeffries On White House Funding Mess_ _Round One Goes To Team America _; RFK Jr. Grilled; Migrants T.txt
## 182 ./file_raw_text/Trump Proposes U.S. Take Over Gaza To Be Riviera; Trump Not Ruling Out Sending Troops To Take Over G.txt
## 183 ./file_raw_text/Judge Blocks Trump from Putting Many USAID Workers on Leave Tonight; Trump Says, I Plan to Fire Some.txt
## 184 ./file_raw_text/Trump Administration Puts Dozens Of USAID Senior Officials On Paid Leave; White House Pauses All Fed.txt
## 185 ./file_raw_text/Elon Musk Dominates Trump's First Cabinet Meeting; Musk Takes Financial Hit Amid Tesla Protests; Jef.txt
## 186 ./file_raw_text/Musk Prepares For Cabinet Meeting As Mass Firings Loom; Andrew Cuomo Readies Controversial Comeback;.txt
## 187 ./file_raw_text/Trump Funding Freeze Remains in _Full Force_ Despite Rescinding Memo; Kennedy Confirmation Prospects.txt
## 188 ./file_raw_text/Defending DOGE_ Musk & Trump Questioned On Aggressive Overhaul; Trump Repeats Gaza Plan_ _We're Goin.txt
## 189 ./file_raw_text/Elon Musk Touts Government Firings by Wielding Chainsaw; Kash Patel Critics Warn of Purge as He Take.txt
## 190 ./file_raw_text/Trump Says Musk Head Of DOGE, White House Says He's Not; Trump Dodges On Musk Decisions, Firings And.txt
## 191  ./file_raw_text/Interview With Former U.K. Ambassador To The U.N. Sir John Sawers; Interview With Former U.S. State.txt
## 192 ./file_raw_text/Trump Hits Top Trading Partners Canada, Mexico , China With Tariffs; Secretary Duffy_ We Are Going T.txt
## 193 ./file_raw_text/Rep. Ryan Zinke (R- MT ) Speaks With CNN Following Protests Outside Office; CEO Warns Aluminum Tarif.txt
## 194  ./file_raw_text/Interview With Rep. Laura Gillen (D- NY ); Interview With Rep. Riley Moore (R- WV ); Interview With.txt
## 195 ./file_raw_text/Treasury Sued Over Giving Musk's DOGE Access to Payment Data; Interview with Sen. Tammy Duckworth (D.txt
## 196 ./file_raw_text/President Trump's New Tariffs Go Into Effect Tuesday; Canada Announces _Far-Reaching_ Retaliatory Ta.txt
## 197 ./file_raw_text/Millions of Federal Workers Receive Email from Trump Administration with Option to Resign from Their.txt
## 198  ./file_raw_text/CIA Sends Unclassified Email to White House Listing Names of New Hires; DOGE to Keep Limited Access.txt
## 199  ./file_raw_text/Passenger Jet's Black Boxes Recovered After Midair Tragedy; Trump Tariffs On Canada, Mexico , China.txt
## 200 ./file_raw_text/Flight Data Appears To Show Helicopter Above Altitude, Off Course; U.S. Air Traffic Control System U.txt
## 201 ./file_raw_text/Crowds Line Streets To Mourn Bibas Family Who Were Killed In Gaza; Fired Cybersecurity Official_ Vet.txt
## 202 ./file_raw_text/Multiple Meetings Over Russia and Ukraine Peace; Anne Applebaum is Interviewed about Government Cuts.txt
## 203 ./file_raw_text/Interview With Former U.S. Ambassador To The Czech Republic Norm Eisen; Interview With Princeton Pro.txt
## 204 ./file_raw_text/Right-Wing Commentator Named FBI Deputy Director; Pope In Critical Condition; Health Agencies Reel F.txt
## 205 ./file_raw_text/HHS Secretary RFK Jr. Calls Measles Outbreak _Not Usual_; Protesters Flood Republican Town Halls Ove.txt
## 206 ./file_raw_text/Judge Halts Trump's Plan To Put USAID Workers On Leave; Sen. Chris Coons, (D- DE ), Is Interviewed A.txt
## 207 ./file_raw_text/Sen. Warren Grills RFK Jr. On Money From Vaccine Lawsuits_ _Kids Might Die, But Robert Kennedy Can K.txt
## 208  ./file_raw_text/Recovery Crews Search Icy Waters For 67, All Presumed Dead; Inside Flight Simulator; Figure Skating.txt
## 209  ./file_raw_text/NTSB_ _Whole of Government Effort_ to Investigate Midair Crash; NTSB_ Flight Data Recorders Not Yet.txt
## 210 ./file_raw_text/New Video Show Moment Plane & Army Helicopter Collided; Multiple Investigations Into What Caused Col.txt
##     political_leaning dom_vs_intl
## 1                Left          US
## 2                Left          US
## 3                Left          US
## 4                Left          US
## 5                Left          US
## 6                Left          US
## 7                Left          US
## 8                Left          US
## 9                Left          US
## 10               Left          US
## 11               Left          US
## 12               Left          US
## 13               Left          US
## 14               Left          US
## 15               Left          US
## 16               Left          US
## 17               Left          US
## 18               Left          US
## 19               Left          US
## 20               Left          US
## 21               Left          US
## 22               Left          US
## 23               Left          US
## 24               Left          US
## 25               Left          US
## 26               Left          US
## 27               Left          US
## 28               Left          US
## 29               Left          US
## 30               Left          US
## 31               Left          US
## 32               Left          US
## 33               Left          US
## 34               Left          US
## 35               Left          US
## 36               Left          US
## 37               Left          US
## 38               Left          US
## 39               Left          US
## 40               Left          US
## 41               Left          US
## 42               Left          US
## 43               Left          US
## 44               Left          US
## 45               Left          US
## 46               Left          US
## 47               Left          US
## 48               Left          US
## 49               Left          US
## 50               Left          US
## 51               Left          US
## 52               Left          US
## 53               Left          US
## 54               Left          US
## 55               Left          US
## 56               Left          US
## 57               Left          US
## 58               Left          US
## 59               Left          US
## 60               Left          US
## 61               Left          US
## 62               Left          US
## 63               Left          US
## 64               Left          US
## 65               Left          US
## 66               Left          US
## 67               Left          US
## 68               Left          US
## 69               Left          US
## 70               Left          US
## 71               Left          US
## 72               Left          US
## 73               Left          US
## 74               Left          US
## 75               Left          US
## 76               Left          US
## 77               Left          US
## 78               Left          US
## 79               Left          US
## 80               Left          US
## 81               Left          US
## 82               Left          US
## 83               Left          US
## 84               Left          US
## 85               Left          US
## 86               Left          US
## 87               Left          US
## 88               Left          US
## 89               Left          US
## 90               Left          US
## 91               Left          US
## 92               Left          US
## 93               Left          US
## 94               Left          US
## 95               Left          US
## 96               Left          US
## 97               Left          US
## 98               Left          US
## 99               Left          US
## 100              Left          US
## 101              Left          US
## 102              Left          US
## 103              Left          US
## 104              Left          US
## 105              Left          US
## 106              Left          US
## 107              Left          US
## 108              Left          US
## 109              Left          US
## 110              Left          US
## 111              Left          US
## 112              Left          US
## 113              Left          US
## 114              Left          US
## 115              Left          US
## 116              Left          US
## 117              Left          US
## 118              Left          US
## 119              Left          US
## 120              Left          US
## 121              Left          US
## 122              Left          US
## 123              Left          US
## 124              Left          US
## 125              Left          US
## 126              Left          US
## 127              Left          US
## 128              Left          US
## 129              Left          US
## 130              Left          US
## 131              Left          US
## 132              Left          US
## 133              Left          US
## 134              Left          US
## 135              Left          US
## 136              Left          US
## 137              Left          US
## 138              Left          US
## 139              Left          US
## 140              Left          US
## 141              Left          US
## 142              Left          US
## 143              Left          US
## 144              Left          US
## 145              Left          US
## 146              Left          US
## 147              Left          US
## 148              Left          US
## 149              Left          US
## 150              Left          US
## 151              Left          US
## 152              Left          US
## 153              Left          US
## 154              Left          US
## 155              Left          US
## 156              Left          US
## 157              Left          US
## 158              Left          US
## 159              Left          US
## 160              Left          US
## 161              Left          US
## 162              Left          US
## 163              Left          US
## 164              Left          US
## 165              Left          US
## 166              Left          US
## 167              Left          US
## 168              Left          US
## 169              Left          US
## 170              Left          US
## 171              Left          US
## 172              Left          US
## 173              Left          US
## 174              Left          US
## 175              Left          US
## 176              Left          US
## 177              Left          US
## 178              Left          US
## 179              Left          US
## 180              Left          US
## 181              Left          US
## 182              Left          US
## 183              Left          US
## 184              Left          US
## 185              Left          US
## 186              Left          US
## 187              Left          US
## 188              Left          US
## 189              Left          US
## 190              Left          US
## 191              Left          US
## 192              Left          US
## 193              Left          US
## 194              Left          US
## 195              Left          US
## 196              Left          US
## 197              Left          US
## 198              Left          US
## 199              Left          US
## 200              Left          US
## 201              Left          US
## 202              Left          US
## 203              Left          US
## 204              Left          US
## 205              Left          US
## 206              Left          US
## 207              Left          US
## 208              Left          US
## 209              Left          US
## 210              Left          US

GGplot of the articles over time: From the 01/20-02-28 (one month of Trump’s 2025 presidency)

df_time <- final_index |> 
    dplyr::count(published_date, dom_vs_intl)

ggplot(df_time, aes(x = published_date, y = n, color = dom_vs_intl)) +
  geom_line(size = 1) +
  labs(
    title = "Domestic vs International Coverage Over Time",
    x = "Publication Date",
    y = "Number of Articles",
    color = "Outlet Type", 
    caption = ".\nGraphic by Tiasia Saunders 11/08/2025"
  ) +
  theme_minimal()
## Warning: Using `size` aesthetic for lines was deprecated in ggplot2 3.4.0.
## ℹ Please use `linewidth` instead.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.

Graphic of Domestic versus International Outlet Distribution

ggplot(final_index, aes(x = dom_vs_intl)) +
  geom_bar(fill = "violet") +
  labs(
    title = "Distribution of Domestic vs International Coverage",
    x = "Outlet Type",
    y = "Number of Articles", 
      caption = ".\nGraphic by Tiasia Saunders 11/08/2025"
  ) +
  
  theme_minimal()

Tokenizing Data

stories <- str_replace_all(articles_df$hlead, "- ", "")
stories_df <- tibble(stories)

# unnest includes lower, punct removal

stories_tokenized <- stories_df |> 
  unnest_tokens(word,stories)

stories_tokenized
## # A tibble: 50,948,212 × 1
##    word      
##    <chr>     
##  1 trump     
##  2 is        
##  3 attacking 
##  4 dei       
##  5 big       
##  6 businesses
##  7 believe   
##  8 dei       
##  9 is        
## 10 valuable  
## # ℹ 50,948,202 more rows

Removing stopwords and count the words

stories_tokenized <- stories_tokenized |>
  anti_join(stop_words, by = c("word" = "word"))

junk_words <- c("news", "search", "art", "sport", "opinion", "student",
                "content", "submit", "contentclassskipconte")

stories_tokenized <- stories_tokenized |>
  filter(!word %in% junk_words)

Word Count

story_word_ct <- stories_tokenized %>%
    dplyr::count(word, sort=TRUE)

Create Bigrams

bigrams <- stories_df %>%
  unnest_tokens(bigram, stories, token="ngrams", n=2)
##filtering bigrams to reduce the processing lug to 5 or more instances of bigrams 
bigram_counts <- bigrams %>%
   dplyr:: count(bigram) %>%
  filter(n >= 5) %>%
  arrange(desc(n))
#Filter out stop words.
bigram_counts_1 <- bigram_counts |> 
  separate(bigram, c("word1", "word2"), sep = " ")
bigram_counts_1 |> 
  select(word1, word2) |> 
  filter(
    str_detect(word1, regex("news|cnn|channel|host|video|00", ignore_case = TRUE)) |
    str_detect(word2, regex("news|cnn|channel|host|video|00", ignore_case = TRUE))
  ) |> 
  distinct() |> 
  head(20)
## # A tibble: 20 × 2
##    word1     word2   
##    <chr>     <chr>   
##  1 fox       news    
##  2 news      channel 
##  3 cnn       host    
##  4 cnn       anchor  
##  5 video     clip    
##  6 channel   host    
##  7 00        00      
##  8 begin     video   
##  9 news      host    
## 10 breaking  news    
## 11 00        p.m     
## 12 news      night   
## 13 cnn       newsroom
## 14 news      anchor  
## 15 on        cnn     
## 16 square    news    
## 17 host      the     
## 18 11        00      
## 19 host      and     
## 20 following news
filtered_bigram_count <- bigram_counts_1 |>
  mutate(
    word1 = str_to_lower(str_squish(str_trim(word1))),
    word2 = str_to_lower(str_squish(str_trim(word2))),
    bigram = str_c(word1, word2, sep = " ")
  ) |>
  filter(
    !word1 %in% stop_words$word,
    !word2 %in% stop_words$word,
    !is.na(word1),
    !is.na(word2),
    !(
      (word1 == "news" & word2 == "channel") |
      (word1 == "cnn" & word2 %in% c("host", "anchor")) |
      (word1 == "news" & word2 == "host") |
      (word1 == "begin" & word2 == "video") |
      (word1 == "channel" & word2 == "host") |
      (word1 == "00" & word2 == "00")
    )
  )

Top twenty bigrams

top_bigrams <- filtered_bigram_count |>
  arrange(desc(n), word1, word2) |>
  head(20) 

Graphic of the Top 20 Most Frequent Biagrams

# Combine the bigram into one string for labeling
top_bigrams <- filtered_bigram_count |>
  arrange(desc(n), word1, word2) |>
  head(20) |>
  mutate(bigram = paste(word1, word2))

# Plot
ggplot(top_bigrams, aes(x = reorder(bigram, n), y = n)) +
  geom_col(fill = "lavender") +
  coord_flip() +
  labs(
    title = "Top 20 Most Frequent Bigrams",
    x = "Bigram",
    y = "Frequency", 
      caption = ".\nGraphic by Tiasia Saunders (redacted - peer review)  05/11/2025"
  ) +
  theme_minimal()

## should i filter out video clip?

Creating Domestic articles tokenization

dom_dei_articles <- articles_df  |> 
  filter(dom_vs_intl == "US")


stories <- str_replace_all(dom_dei_articles$hlead, "- ", "")
dom_stories_df <- tibble(stories)

# unnest includes lower, punct removal

dom_stories_tokenized <- dom_stories_df %>%
  unnest_tokens(word,stories)

dom_stories_tokenized
## # A tibble: 40,662,225 × 1
##    word      
##    <chr>     
##  1 trump     
##  2 is        
##  3 attacking 
##  4 dei       
##  5 big       
##  6 businesses
##  7 believe   
##  8 dei       
##  9 is        
## 10 valuable  
## # ℹ 40,662,215 more rows
dom_stories_tokenized <-dom_stories_tokenized |>
  anti_join(stop_words, by = c("word" = "word")) 

story_word_ct <- dom_stories_tokenized %>%
  dplyr::count(word, sort=TRUE)

Creating International articles tokenization

intl_dei_articles <- articles_df |> 
  filter(dom_vs_intl == "INTL")


stories <- str_replace_all(intl_dei_articles$hlead, "- ", "")
intl_stories_df <- tibble(stories)

# unnest includes lower, punct removal

intl_stories_tokenized <- intl_stories_df %>%
  unnest_tokens(word,stories)

intl_stories_tokenized
## # A tibble: 10,285,987 × 1
##    word     
##    <chr>    
##  1 apple    
##  2 investors
##  3 defy     
##  4 trump    
##  5 to       
##  6 back     
##  7 dei      
##  8 tech     
##  9 giant    
## 10 bucks    
## # ℹ 10,285,977 more rows
intl_stories_tokenized <- intl_stories_tokenized |>
  anti_join(stop_words, by = c("word" = "word")) 

story_word_ct <- intl_stories_tokenized %>%
 dplyr::count(word, sort=TRUE)

Keyword Analysis

((Furthermore, a keyword analysis was performed on domestic outlets versus international ones to gauge the contextual differences in reporting about Trump and DEI. This analysis identified key terms and phrases, such as Trump administration, DEI, democratic, woke, and affirmative action, culture war, used in each set of outlets, helping to reveal variations in framing, tone, and emphasis between domestic and international coverage.))

# Define keywords related to Trump + DEI
keywords <- c(
  "trump", "dei", "diversity", "equity", "inclusion",
  "affirmative", "action", "anti-dei", "antiwoke", "woke"
)

keyword_counts <- articles_df %>%
  unnest_tokens(word, sentence) %>%  
  mutate(word = str_to_lower(word)) %>%
  filter(word %in% keywords) %>%
   dplyr::count(dom_vs_intl, word, sort = TRUE)

keyword_counts
## # A tibble: 17 × 3
##    dom_vs_intl word            n
##    <chr>       <chr>       <int>
##  1 US          trump       28155
##  2 US          dei          9579
##  3 INTL        trump        9279
##  4 US          diversity    5210
##  5 US          inclusion    3407
##  6 US          equity       3007
##  7 INTL        dei          2845
##  8 INTL        diversity    2249
##  9 US          action       1969
## 10 INTL        inclusion    1335
## 11 INTL        equity        900
## 12 US          woke          633
## 13 INTL        action        491
## 14 US          affirmative   485
## 15 INTL        woke          266
## 16 INTL        affirmative   105
## 17 INTL        antiwoke        1
ggplot(keyword_counts, aes(x = word, y = n, fill = dom_vs_intl)) +
  geom_col(position = "dodge") +               # grouped bars
  labs(
    title = "Keyword Frequencies in Domestic vs International Articles",
    x = "Keyword",
    y = "Frequency",
    fill = "Article Source"
  ) +
  theme_minimal() +
  theme(axis.text.x = element_text(angle = 45, hjust = 1))

Sentiment Analysis

nrc_sentiments <- get_sentiments("nrc")
afinn_sentiments <- get_sentiments("afinn")

Joining Domestic and Sentiment

sentiments_dom_all <- dom_stories_tokenized |>
  inner_join(nrc_sentiments) 
## Joining with `by = join_by(word)`
## Warning in inner_join(dom_stories_tokenized, nrc_sentiments): Detected an unexpected many-to-many relationship between `x` and `y`.
## ℹ Row 2 of `x` matches multiple rows in `y`.
## ℹ Row 12731 of `y` matches multiple rows in `x`.
## ℹ If a many-to-many relationship is expected, set `relationship =
##   "many-to-many"` to silence this warning.
dom_overall_sentiment_count <- sentiments_dom_all |> 
 dplyr::count(sentiment) |> 
  arrange(desc(n))

Joining International and Sentiment

sentiments_intl_all <- intl_stories_tokenized |>
  inner_join(nrc_sentiments) 
## Joining with `by = join_by(word)`
## Warning in inner_join(intl_stories_tokenized, nrc_sentiments): Detected an unexpected many-to-many relationship between `x` and `y`.
## ℹ Row 3 of `x` matches multiple rows in `y`.
## ℹ Row 12731 of `y` matches multiple rows in `x`.
## ℹ If a many-to-many relationship is expected, set `relationship =
##   "many-to-many"` to silence this warning.
intl_overall_sentiment_count <- sentiments_intl_all |> 
   dplyr::count(sentiment) |> 
  arrange(desc(n))
# Add source labels
dom_overall_sentiment_count <- dom_overall_sentiment_count |> 
  mutate(source = "US")

intl_overall_sentiment_count <- intl_overall_sentiment_count |> 
  mutate(source = "INTL")

# Combine both dataframes
combined_sentiment <- bind_rows(dom_overall_sentiment_count, intl_overall_sentiment_count)

# Plot
ggplot(combined_sentiment, aes(x = sentiment, y = n, fill = source)) +
  geom_bar(stat = "identity", position = "dodge") +
  labs(
    title = "Sentiment Count: Domestic vs International Trump DEI Articles",
    x = "Sentiment",
    y = "Count",
    fill = "Article Source"
  ) +
  theme_minimal() +
  theme(axis.text.x = element_text(angle = 45, hjust = 1))

sentiments_all <-stories_tokenized |> 
  inner_join(nrc_sentiments) 
## Joining with `by = join_by(word)`
## Warning in inner_join(stories_tokenized, nrc_sentiments): Detected an unexpected many-to-many relationship between `x` and `y`.
## ℹ Row 2 of `x` matches multiple rows in `y`.
## ℹ Row 12731 of `y` matches multiple rows in `x`.
## ℹ If a many-to-many relationship is expected, set `relationship =
##   "many-to-many"` to silence this warning.

Overall Sentiment Count

overall_sentiment_count <- sentiments_all |> 
   dplyr::count(sentiment) |> 
  arrange(desc(n))

Bar Chart of Sentiment Analysis over time

ggplot(overall_sentiment_count, aes(x = reorder(sentiment, n), y = n, fill = sentiment)) +
  geom_bar(stat = "identity") + 
  coord_flip() +  
  labs(
    title = "Sentiment Distribution in Trump DEI Articles",
    x = "Sentiment",
    y = "Count",
    caption = "01/20–02/20.\nGraphic by Tiasia Saunders (redacted - peer review)  11/08/2025"
  ) +
  theme_minimal()

## lok into trust, fear and surprise 

Leading Postive Sentiment

overall_postive_count <- sentiments_all |> 
   filter(sentiment == "positive") |> 
   dplyr::count(sentiment,word) |> 
  arrange(desc(n))

print(overall_postive_count)
## # A tibble: 1,206 × 3
##    sentiment word            n
##    <chr>     <chr>       <int>
##  1 positive  president  356172
##  2 positive  equity      67173
##  3 positive  anchor      50953
##  4 positive  united      39826
##  5 positive  including   39021
##  6 positive  defense     32845
##  7 positive  public      24597
##  8 positive  director    24441
##  9 positive  top         24223
## 10 positive  university  24087
## # ℹ 1,196 more rows
positive_summary_stats <- overall_postive_count |> 
  summarise(
    mean_n = mean(n, na.rm = TRUE),
    median_n = median(n, na.rm = TRUE)
  )

Leading Negative Sentiment

overall_negative_count <- sentiments_all |> 
   filter(sentiment == "negative") |> 
   dplyr::count(sentiment,word) |> 
  arrange(desc(n))

print(overall_negative_count)
## # A tibble: 1,459 × 3
##    sentiment word            n
##    <chr>     <chr>       <int>
##  1 negative  government 124985
##  2 negative  crash       66399
##  3 negative  collision   56831
##  4 negative  war         45789
##  5 negative  skip        36276
##  6 negative  deadly      27725
##  7 negative  leave       26799
##  8 negative  illegal     21774
##  9 negative  vote        21556
## 10 negative  foreign     21011
## # ℹ 1,449 more rows

Top Twenty Words by Sentiment

# Get the top 20 words per sentiment
top_words_per_sentiment <- sentiments_all |> 
  group_by(sentiment, word) |> 
  summarise(count = n(), .groups = "drop") |> 
  arrange(sentiment, desc(count)) |> 
  group_by(sentiment) |> 
  slice_max(order_by = count, n = 20)

Graphic of Sentiment Breakdown for Domestic Articles

sentiments_dom_all %>%
  dplyr::count(sentiment, word) %>%
  group_by(sentiment) %>%
  slice_max(n, n = 10) %>%  
  ungroup() %>%
  mutate(word = reorder_within(word, n, sentiment)) %>%  
  ggplot(aes(n, word, fill = sentiment)) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~sentiment, scales = "free_y") +  
  scale_y_reordered() + 
  labs(
    x = "Sentiment Analysis Breakdown For Domestic Articles",
    y = NULL,
    caption = ".\nGraphic by Tiasia Saunders (redacted - peer review)  11/08/2025"
  ) 

ggsave("sentiment_domestic_trump_dei_articles.png")
## Saving 7 x 5 in image
## war, defense and military in fear sentiment 

Graphic of Sentiment Breakdown for International Articles

sentiments_intl_all %>%
   dplyr::count(sentiment, word) %>%
  group_by(sentiment) %>%
  slice_max(n, n = 10) %>%  
  ungroup() %>%
  mutate(word = reorder_within(word, n, sentiment)) %>%  
  ggplot(aes(n, word, fill = sentiment)) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~sentiment, scales = "free_y") +  
  scale_y_reordered() + 
  labs(
    x = "Sentiment Analysis Breakdown For International Articles",
    y = NULL,
    caption = ".\nGraphic by Tiasia Saunders (redacted - peer review)  05/11/2025"
  ) 

ggsave("sentiment_international_trump_dei_articles.png")
## Saving 7 x 5 in image
## look into the terms then look at the keyord 

Sentiment Analysis with AFINN Sentiment

Domestic Articles with AFINN Sentiment

sentiments_dom_all_binary <- dom_stories_tokenized |>
 inner_join(afinn_sentiments) 
## Joining with `by = join_by(word)`
dom_overall_sentiment_count_binary <- sentiments_dom_all_binary |> 
   dplyr::count(value) |> 
  arrange(desc(value))

International Articles with Afinn Sentiment

sentiments_intl_all_binary <- intl_stories_tokenized |>
  inner_join(afinn_sentiments) 
## Joining with `by = join_by(word)`
intl_overall_sentiment_count_binary <- sentiments_intl_all_binary |> 
   dplyr::count(value) |> 
  arrange(desc(value))
# Turn off scientific notation
options(scipen=999)
# Domestic Articles with AFINN Sentiment 
sentiments_dom_all_binary <- dom_stories_tokenized |>
  inner_join(afinn_sentiments, by = "word") |>
  mutate(source = "US")

# International Articles with AFINN Sentiment 
sentiments_intl_all_binary <- intl_stories_tokenized |>
  inner_join(afinn_sentiments, by = "word") |>
  mutate(source = "INTL")

# Combine domestic and international AFINN sentiment data
combined_afinn_sentiment <- bind_rows(
  sentiments_dom_all_binary,
  sentiments_intl_all_binary
)

Splitting for Positive and Negative Sentiment

# Positive scores
positive_sentiment_scores <- combined_afinn_sentiment |> filter(value > 0)

# Negative scores
negative_sentiment_scores <- combined_afinn_sentiment |> filter(value < 0)

Calculating Weighted Mean and Median for Positive and Negative Sentiment Scores

positive_sentiment_scores_mean <- weighted.mean(
 positive_sentiment_scores$value, 
  w = positive_sentiment_scores$value
)

positive_sentiment_scores_mean
## [1] 2.139154
positive_sentiment_scores_median <- weightedMedian(
  x = positive_sentiment_scores$value,  # column with sentiment scores
  w = positive_sentiment_scores$value       # column with frequencies
)

positive_sentiment_scores_median
## [1] 2
negative_sentiment_scores_mean <- weighted.mean(
 negative_sentiment_scores$value, 
  w = negative_sentiment_scores$value
)

negative_sentiment_scores_mean
## [1] -2.175519
negative_sentiment_scores_median <- weightedMedian(
  x = negative_sentiment_scores$value,  # column with sentiment scores
  w = negative_sentiment_scores$value      # column with frequencies
)

negative_sentiment_scores_median
## [1] NA

Bar Chart of AFINN Sentiment Analysis for Domestic versus International Articles

# Add source labels
dom_overall_sentiment_count_binary <- dom_overall_sentiment_count_binary |> 
  mutate(source = "US")

intl_overall_sentiment_count_binary <- intl_overall_sentiment_count_binary |> 
  mutate(source = "INTL")

# Combine both dataframes
combined_sentiment <- bind_rows(dom_overall_sentiment_count_binary, intl_overall_sentiment_count_binary)

# Plot
ggplot(combined_sentiment, aes(x = value, y = n, fill = source)) +
  geom_bar(stat = "identity", position = "dodge") +
  scale_y_continuous(limits = c(0, 700000)) +
  labs(
    title = "AFINN Sentiment Count: Domestic vs International Trump DEI Articles",
    x = "Binary Sentiment",
    y = "Count",
    fill = "Article Source"
  ) +
  theme_minimal() +
  theme(axis.text.x = element_text(angle = 45, hjust = 1))

ggsave("afinn_sentiment_dom_intl_trump_dei_articles.png")
## Saving 7 x 5 in image
## make a line or area chart 

Creating AFINN Index

##ask rob if this is correct 
afinn_index <- combined_sentiment %>%
  group_by(source) %>%                      # group by domestic vs international
  summarise(
    total_sentiment = sum(value * n, na.rm = TRUE)  # weighted sum
  )

afinn_index
## # A tibble: 2 × 2
##   source total_sentiment
##   <chr>            <dbl>
## 1 INTL           -336929
## 2 US             -951495
##group by date to look at analysis over time
## graph the combined sentiment data 
## getting the total number by year and graph over time 

Line Chart of AFINN Sentiment Analysis for Domestic versus International Articles

ggplot(combined_sentiment, aes(x = value, y = n, color = source, group = source)) +
  geom_line(linewidth = 1.1) +
  geom_point(size = 2) +
   scale_color_manual(values = c(
    "US" = "red",     # blue
    "INTL" = "purple"    # green
  )) +
  scale_y_continuous(limits = c(0, 700000)) +
  labs(
    title = "AFINN Sentiment Count: Domestic vs International Trump DEI Articles",
    x = "Binary Sentiment",
    y = "Count",
    color = "Article Source"
  ) +
  theme_minimal() +
  theme(axis.text.x = element_text(angle = 45, hjust = 1))

ggsave("afinn_sentiment_line_dom_intl_trump_dei.png")
## Saving 7 x 5 in image

Area Chart of AFINN Sentiment Analysis for Domestic versus International Articles

ggplot(combined_sentiment, aes(x = value, y = n, fill = source, group = source)) +
  geom_area(alpha = 0.6, position = "identity") +
   scale_fill_manual(values = c(
    "US" = "lightpink",     # blue
    "INTL" = "purple"    # green
  )) +
   scale_x_continuous(
    breaks = seq(min(combined_sentiment$value), max(combined_sentiment$value), by = 2),  # adjust interval as needed
    labels = function(x) ifelse(x < 0, paste0(x, " (Neg)"), ifelse(x > 0, paste0(x, " (Pos)"), x))
  ) +
  scale_y_continuous(limits = c(0, 700000)) +
  labs(
    title = "AFINN Sentiment Count: Domestic vs International Trump DEI Articles",
    x = "Sentiment Score",
    y = "Count",
    fill = "Article Source", 
    caption = ".\nGraph by Tiasia Saunders"
  ) +
  theme_minimal() +
  theme(axis.text.x = element_text(angle = 45, hjust = 1))

ggsave("afinn_sentiment_area_dom_intl_trump_dei.png")
## Saving 7 x 5 in image
##redo colors 
sentiments_all_binary <-stories_tokenized |> 
  inner_join(afinn_sentiments) 
## Joining with `by = join_by(word)`
overall_sentiment_count_binary <- sentiments_all_binary |> 
   dplyr::count(value) |> 
  arrange(desc(n))

Graphic of Overall AFINN Sentiment Intensity

ggplot(overall_sentiment_count_binary, aes(x = reorder(value, n), y = n, fill = value)) +
  geom_bar(stat = "identity") + 
  coord_flip() +  
  labs(
    title = "AFINN sentiment intensity across Trump DEI articles",
    x = "Sentiment",
    y = "Count",
    caption = "01/20–02/28.\nGraphic by Tiasia Saunders 11/08/2025"
  ) +
  theme_minimal()

## lok into trust, fear and surprise 

ggsave("afinn_sentiment_trump_dei_articles.png")
## Saving 7 x 5 in image

Getting the top twenty words for each binary sentiment

# Get the top 20 words per sentiment
top_words_per_sentiment_binary <- sentiments_all_binary |> 
  group_by(value, word) |> 
  summarise(count = n(), .groups = "drop") |> 
  arrange(value, desc(count)) |> 
  group_by(value) |> 
  slice_max(order_by = count, n = 20)

Binary Sentiment Breakdown for Domestic and International Articles

sentiments_dom_all_binary %>%
   dplyr::count(value, word) %>%
  group_by(value) %>%
  slice_max(n, n = 10) %>%  
  ungroup() %>%
  mutate(word = reorder_within(word, n, value)) %>%  
  ggplot(aes(n, word, fill = value)) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~value, scales = "free_y") +  
  scale_y_reordered() + 
  labs(
    x = "AFINN Sentiment Analysis Breakdown For Domestic Articles",
    y = NULL,
    caption = ".\nGraphic by Tiasia Saunders (redacted - peer review)  11/07/2025"
  ) 

ggsave("afinn_sentiment_domestic_trump_dei_articles.png")
## Saving 7 x 5 in image
sentiments_intl_all_binary %>%
  dplyr::count(value, word) %>%
  group_by(value) %>%
  slice_max(n, n = 10) %>%  
  ungroup() %>%
  mutate(word = reorder_within(word, n, value)) %>%  
  ggplot(aes(n, word, fill = value)) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~value, scales = "free_y") +  
  scale_y_reordered() + 
  labs(
    x = "AFINN Sentiment Analysis Breakdown For International Articles",
    y = NULL,
    caption = ".\nGraphic by Tiasia Saunders 11/07/2025"
  ) 

ggsave("afinn_sentiment_international_trump_dei_articles.png")
## Saving 7 x 5 in image

Topic Modeling

textdata <- articles_df |>  
  
  select(filename, hlead, published_date, publication_location, dom_vs_intl) |> 
  as.data.frame() |> 
  rename(doc_id = filename, text= hlead) |> 
  ### comment this out 
mutate(text = str_replace_all(text, "contentclassskipcontentskip", "")) 

# load stopwords
english_stopwords <- readLines("https://slcladal.github.io/resources/stopwords_en.txt", encoding = "UTF-8")
# create corpus object
corpus <- Corpus(DataframeSource(textdata))
# Preprocessing chain
processedCorpus <- tm_map(corpus, content_transformer(tolower))
processedCorpus <- tm_map(processedCorpus, removeWords, english_stopwords)
processedCorpus <- tm_map(processedCorpus, removePunctuation, preserve_intra_word_dashes = TRUE)
processedCorpus <- tm_map(processedCorpus, removeNumbers)
processedCorpus <- tm_map(processedCorpus, stemDocument, language = "en")
processedCorpus <- tm_map(processedCorpus, stripWhitespace)
#DTM: rows correspond to the documents in the corpus. Columns correspond to the terms in the documents. Cells correspond to the weights of the terms. (Girder)
# compute document term matrix with terms >= minimumFrequency
minimumFrequency <- 5
DTM <- DocumentTermMatrix(processedCorpus, control = list(bounds = list(global = c(minimumFrequency, Inf))))
# have a look at the number of documents and terms in the matrix
dim(DTM)
## [1] 314239  16056
# due to vocabulary pruning, we have empty rows in our DTM
# LDA does not like this. So we remove those docs from the
# DTM and the metadata
sel_idx <- slam::row_sums(DTM) > 0
DTM <- DTM[sel_idx, ]
textdata <- textdata[sel_idx, ]
#5 term minimum[1] 1387 3019
#5 term minimum[1] 308597 10339

Topic proportions over time

# dont need this since i am not using dates 
textdata$day <- weekdays(as.Date(textdata$published_date, format="%Y-%m-%d"))

Articles per international vs domestic newspapers

## Articles per international vs domestic newspapers 

articles_per_dom_intl_category <- textdata |> 
  distinct(doc_id, .keep_all=TRUE) |>  
  dplyr::count(dom_vs_intl) |> 
  mutate(pct_total = (n / sum(n))) |> 
  mutate(pct_total = formattable::percent(pct_total)) |> 
  arrange(desc(dom_vs_intl))

articles_per_dom_intl_category %>%
  kbl(caption = "Trump DEI Articles Per Outlet Type", font_size = 30) %>%
  kable_classic(full_width = F, html_font = "Cambria") %>% 
  column_spec(1, bold = T, border_right = T) %>%
  column_spec(2, width = "5em") %>% 
  column_spec(3, width = "5em", background = "yellow")
Trump DEI Articles Per Outlet Type
dom_vs_intl n pct_total
US 2625 74.91%
INTL 879 25.09%
sum(articles_per_dom_intl_category$n)
## [1] 3504
So I have 3504 total articles. In my dataframe US articles make up 74.91 percent and international artidcles make up 25.09 percent.
# number of topics
# K <- 20
K <- 6
# set random number generator seed
set.seed(9161)
#Latent Dirichlet Allocation, LDA
topicModel2 <- LDA(DTM, K, method="Gibbs", control=list(iter = 500, verbose = 25, alpha = 0.2))
## K = 6; V = 16056; M = 314239
## Sampling 500 iterations!
## Iteration 25 ...
## Iteration 50 ...
## Iteration 75 ...
## Iteration 100 ...
## Iteration 125 ...
## Iteration 150 ...
## Iteration 175 ...
## Iteration 200 ...
## Iteration 225 ...
## Iteration 250 ...
## Iteration 275 ...
## Iteration 300 ...
## Iteration 325 ...
## Iteration 350 ...
## Iteration 375 ...
## Iteration 400 ...
## Iteration 425 ...
## Iteration 450 ...
## Iteration 475 ...
## Iteration 500 ...
## Gibbs sampling completed!
tmResult <- posterior(topicModel2)
theta <- tmResult$topics
beta <- tmResult$terms
topicNames <- apply(terms(topicModel2, 10), 2, paste, collapse = " ")  # reset topicnames

Mean topic proportions per domestic and international category

# Step 1: Check dimensions
# Ensure doc_id and rownames are character
rownames(theta) <- as.character(rownames(theta))
textdata$doc_id <- as.character(textdata$doc_id)

# Get common document IDs
common_ids <- intersect(rownames(theta), textdata$doc_id)

# Filter both datasets to only include common documents
theta_aligned <- theta[rownames(theta) %in% common_ids, ]
textdata_filtered <- textdata[textdata$doc_id %in% common_ids, ]

# Reorder textdata_filtered to match theta_aligned
textdata_filtered <- textdata_filtered[match(rownames(theta_aligned), textdata_filtered$doc_id), ]

# Check that everything lines up
if (!all(rownames(theta_aligned) == textdata_filtered$doc_id)) {
  stop("The document IDs still do not match. Please check the data alignment.")
}

# Print dimensions
n_theta <- nrow(theta_aligned)
n_textdata_filtered <- nrow(textdata_filtered)
cat("Number of aligned theta rows: ", n_theta, "\n")
## Number of aligned theta rows:  314239
cat("Number of aligned textdata rows: ", n_textdata_filtered, "\n")
## Number of aligned textdata rows:  314239
# Combine data
topic_data <- data.frame(theta_aligned, dom_vs_intl = textdata_filtered$dom_vs_intl)

# Aggregate topic proportions by dom_vs_intl
topic_proportion_per_category <- aggregate(. ~ dom_vs_intl, data = topic_data, FUN = mean)

# Rename topic columns (assuming K and topicNames are defined)
colnames(topic_proportion_per_category)[2:(K+1)] <- topicNames

# Reshape for visualization
vizDataFrame <- melt(topic_proportion_per_category, id.vars = "dom_vs_intl")

# Optionally filter out a decade if needed
# vizDataFrame <- subset(vizDataFrame, decade != 1960)

Examine topic names

#enframe(): Converts a named list into a dataframe.
topics <- enframe(topicNames, name = "number", value = "text") %>% 
  unnest(cols = c(text)) 
  
topics
## # A tibble: 6 × 2
##   number  text                                                    
##   <chr>   <chr>                                                   
## 1 Topic 1 • the news more search art sport opinion student content
## 2 Topic 2 the and trump for presid with that ukrain this his      
## 3 Topic 3 the and crash that trump plane collis helicopt for from 
## 4 Topic 4 the trump and presid for with that from cnn new         
## 5 Topic 5 the and trump for that dei feder order divers presid    
## 6 Topic 6 the and trump you news fox for with that host

Review the topics and determine a 1-2 word label after reading the source documents.

#add categories
vizDataFrame <- vizDataFrame |>
  mutate(category = case_when(
     str_detect(variable, "• news search art sport opinion student content submit contentclassskipcontentskip") ~ "student_reaction_dei",
    str_detect(str_squish(variable), "trump order presid feder execut dei divers donald program administr") ~ "trump_executive_orders",
    str_detect(variable, "trump presid cnn musk air hous fire donald feder white") ~ "trump_elon_musk",
    str_detect(variable, "trump feder dei divers govern donald musk compani ’ “") ~ "federal_dei_policies",
    str_detect(variable, "trump news fox host presid democrat channel america doge interview") ~ "trump_fox_news",
    str_detect(variable, "crash trump collis plane helicopt air black washington dead nation") ~ "air_crash_trump",
    TRUE ~ "other"
  ))

Fact Check and Validate Topics

–Topic 1: • news search art sport opinion student content submit contentclassskipcontentskip –Topic 2: trump order presid feder execut dei divers donald program administr –Topic 3: trump presid cnn musk air hous fire donald feder white –Topic 4: trump feder dei divers govern donald musk compani ’ “ –Topic 5: trump news fox host presid democrat channel america doge interview –Topic 6: crash trump collis plane helicopt air black washington dead nation

For topic 1: • news search art sport opinion student content submit contentclassskipcontentskip

#Topic 1    • news search art sport opinion student content 

theta2 <- as.data.frame(theta)

topic1 <- theta2 %>% 
  rownames_to_column(var = "file") |> # putting the rownames into a new column called file
  mutate(file = str_remove(file, "^X"),  # Remove leading 'X'
         line = str_extract(file, "(?<=\\.txt)\\.\\d+")) |>   # Extract number after .txt
  mutate(file = str_remove(file, "\\.\\d+$")) |> 
  rename(topic1 = '1') |> # looking at first topic: • news search art sport opinion student content submit contentclassskipcontentskip
  arrange(desc(topic1)) |>  
  select(file, line, topic1) 

For Topic 2: trump_executive_orders

# Assuming `theta` is a dataframe related to DEI topics
theta2 <- as.data.frame(theta)

# Extract and rename relevant column for DEI topic (e.g., for "female" or another DEI-related category)
trump_executive_orders_topic <- theta2 %>%
  rename(trump_executive_orders_topic  = '2') %>%   # Replace '4' with the column that represents the DEI topic
  top_n(20, trump_executive_orders_topic ) %>%
  arrange(desc(trump_executive_orders_topic )) %>% 
  select(trump_executive_orders_topic )

# Apply rownames_to_column to include story IDs
trump_executive_orders_topic  <- tibble::rownames_to_column(trump_executive_orders_topic , "story_id")

# Clean up story_id if necessary (e.g., removing "X" or other unwanted characters)
trump_executive_orders_topic$story_id <- gsub("X", "",  trump_executive_orders_topic $story_id)

# Check the top 20 story IDs
head(trump_executive_orders_topic $story_id, 20)
##  [1] "Trump.Wants.Dept..Of.Education.To.Be._Closed.Immediately_..Trump.Speaks.With.Russia..s.Putin...Ukrai.txt.21" 
##  [2] "Trump.Wants.Dept..Of.Education.To.Be._Closed.Immediately_..Trump.Speaks.With.Russia..s.Putin...Ukrai.txt.74" 
##  [3] "Trump.Wants.Dept..Of.Education.To.Be._Closed.Immediately_..Trump.Speaks.With.Russia..s.Putin...Ukrai.txt.115"
##  [4] "Trump.Wants.Dept..Of.Education.To.Be._Closed.Immediately_..Trump.Speaks.With.Russia..s.Putin...Ukrai.txt.133"
##  [5] "Trump.Wants.Dept..Of.Education.To.Be._Closed.Immediately_..Trump.Speaks.With.Russia..s.Putin...Ukrai.txt.139"
##  [6] "Trump.Wants.Dept..Of.Education.To.Be._Closed.Immediately_..Trump.Speaks.With.Russia..s.Putin...Ukrai.txt.150"
##  [7] "Trump.Wants.Dept..Of.Education.To.Be._Closed.Immediately_..Trump.Speaks.With.Russia..s.Putin...Ukrai.txt.158"
##  [8] "Trump.Wants.Dept..Of.Education.To.Be._Closed.Immediately_..Trump.Speaks.With.Russia..s.Putin...Ukrai.txt.159"
##  [9] "Trump.Wants.Dept..Of.Education.To.Be._Closed.Immediately_..Trump.Speaks.With.Russia..s.Putin...Ukrai.txt.164"
## [10] "Trump.Wants.Dept..Of.Education.To.Be._Closed.Immediately_..Trump.Speaks.With.Russia..s.Putin...Ukrai.txt.165"
## [11] "Trump.Wants.Dept..Of.Education.To.Be._Closed.Immediately_..Trump.Speaks.With.Russia..s.Putin...Ukrai.txt.177"
## [12] "CNN.International_.Zelenskyy.Meets.with.U.S..Special.Envoy..Trump..s.Approval.Rating.at.47.Percent..txt.1"   
## [13] "CNN.International_.Zelenskyy.Meets.with.U.S..Special.Envoy..Trump..s.Approval.Rating.at.47.Percent..txt.9"   
## [14] "CNN.International_.Zelenskyy.Meets.with.U.S..Special.Envoy..Trump..s.Approval.Rating.at.47.Percent..txt.11"  
## [15] "CNN.International_.Zelenskyy.Meets.with.U.S..Special.Envoy..Trump..s.Approval.Rating.at.47.Percent..txt.15"  
## [16] "CNN.International_.Zelenskyy.Meets.with.U.S..Special.Envoy..Trump..s.Approval.Rating.at.47.Percent..txt.33"  
## [17] "CNN.International_.Zelenskyy.Meets.with.U.S..Special.Envoy..Trump..s.Approval.Rating.at.47.Percent..txt.39"  
## [18] "CNN.International_.Zelenskyy.Meets.with.U.S..Special.Envoy..Trump..s.Approval.Rating.at.47.Percent..txt.43"  
## [19] "CNN.International_.Zelenskyy.Meets.with.U.S..Special.Envoy..Trump..s.Approval.Rating.at.47.Percent..txt.47"  
## [20] "CNN.International_.Zelenskyy.Meets.with.U.S..Special.Envoy..Trump..s.Approval.Rating.at.47.Percent..txt.52"
# Now it’s validated for DEI topics

For topic 3: trump_elon_musk

theta2 <- as.data.frame(theta)

trump_elon_musk_topic <- theta2 %>% 
  #renaming for a general topic
  rename(trump_elon_musk_topic = '3') %>% 
  top_n(20, trump_elon_musk_topic ) %>%
  arrange(desc(trump_elon_musk_topic )) %>% 
  select(trump_elon_musk_topic)

# Apply rownames_to_column
trump_elon_musk_topic <- tibble::rownames_to_column(trump_elon_musk_topic, "story_id") 

trump_elon_musk_topic$story_id <- gsub("X", "", trump_elon_musk_topic$story_id)

head(trump_elon_musk_topic$story_id, 20)
##  [1] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt"   
##  [2] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.1" 
##  [3] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.6" 
##  [4] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.7" 
##  [5] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.8" 
##  [6] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.10"
##  [7] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.11"
##  [8] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.16"
##  [9] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.18"
## [10] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.19"
## [11] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.20"
## [12] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.21"
## [13] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.23"
## [14] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.24"
## [15] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.25"
## [16] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.26"
## [17] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.28"
## [18] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.31"
## [19] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.34"
## [20] "Recovery.Underway.After.Deadly.Midair.Collision..No.Survivors.in.Midair.Collision..Trump.Blames.Demo.txt.40"
#Checks out

For topic 4: federal_dei_policies

theta2 <- as.data.frame(theta)

federal_dei_policies_topic <- theta2 %>% 
  #renaming for a general topic
  rename(federal_dei_policies_topic = '4') %>% 
  top_n(20,federal_dei_policies_topic) %>%
  arrange(desc(federal_dei_policies_topic)) %>% 
  select(federal_dei_policies_topic)

# Apply rownames_to_column
federal_dei_policies_topic <- tibble::rownames_to_column(federal_dei_policies_topic, "story_id") 

 federal_dei_policies_topic$story_id <- gsub("X", "", federal_dei_policies_topic$story_id)

head(federal_dei_policies_topic$story_id, 20)
##  [1] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt"    
##  [2] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.2"  
##  [3] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.6"  
##  [4] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.21" 
##  [5] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.22" 
##  [6] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.25" 
##  [7] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.32" 
##  [8] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.44" 
##  [9] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.49" 
## [10] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.67" 
## [11] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.79" 
## [12] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.90" 
## [13] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.107"
## [14] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.113"
## [15] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.125"
## [16] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.129"
## [17] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.147"
## [18] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.166"
## [19] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.183"
## [20] "Strong.Winds.Fuel.New.Wildfires.In.Southern.California...Trump.Brushes.Off.January.6.Rioters.Beating.txt.194"

For topic 5: trump_fox_news

theta2 <- as.data.frame(theta)

# Rename and extract top 20
trump_fox_news_topic <- theta2 %>%
  rename(trump_fox_news_topic  = '5') %>%
  top_n(20, trump_fox_news_topic ) %>%
  arrange(desc(trump_fox_news_topic ))

# Move rownames to a column BEFORE selecting
trump_fox_news_topic  <- tibble::rownames_to_column(trump_fox_news_topic , "story_id")

# Clean up the story_id column
trump_fox_news_topic $story_id <- gsub("X", "", trump_fox_news_topic $story_id)

# Optionally, select only the columns you want now
trump_fox_news_topic  <- trump_fox_news_topic  %>%
  select(story_id, trump_fox_news_topic )
#Checks out 

For topic 6: air_crash_trump

theta2 <- as.data.frame(theta)

# Rename and extract top 20
air_crash_trump_topic <- theta2 %>%
  rename(air_crash_trump_topic = '6') %>%
  top_n(20, air_crash_trump_topic) %>%
  arrange(desc(air_crash_trump_topic))

# Move rownames to a column BEFORE selecting
air_crash_trump_topic <- tibble::rownames_to_column(air_crash_trump_topic, "story_id")

# Clean up the story_id column
air_crash_trump_topic$story_id <- gsub("X", "", air_crash_trump_topic$story_id)

# Optionally, select only the columns you want now
air_crash_trump_topic <- air_crash_trump_topic %>%
  select(story_id, air_crash_trump_topic)
#Checks out 

Topic Modeling Visualization

ggplot(vizDataFrame, aes(x = dom_vs_intl, y = value, fill = category)) + 
  geom_bar(stat = "identity") +
   xlab("Domestic versus International ") +   
  ylab("Proportion") + 
  scale_fill_manual(
    values = c("#9933FF", "#33FFFF", "red", "yellow", "darkblue", "brown" ),
    name = "Dei Topics"
  ) + 
  theme(
    axis.text.x = element_text(angle = 90, hjust = 1)
  ) +
  labs(
    title = "Common Narratives in Trump DEI Coverage",
    subtitle = "Six probable topics in domestic and international media coverage sample. n = 3,504",
    caption = "Aggregate mean topic proportions per day from 01/20–02/28.\nGraph by Tiasia Saunders"
  )

ggsave("topic_modeling_domestic_international_trump_dei_articles.png")
## Saving 7 x 5 in image

Continued Plan:

My Findings:

###Key Findings from Overall Analysis: - international articles topics focused more on federal_dei_policies and air_crash_trump where as domestic articles topics focuse more on trump_elon_musk and trump_fox_news -the top 20 bigrams included: diversity equity, white house, donald trump, president dei which is not surprising, other ones included, history month, civil rights.
-topic modeling: Overall, the most interesting topics for me were the trump_exective_orders, federal_education_policy, trump_elon_musk, airline_helicopter_crash (because Trump attributed it to DEI hires failure).

Comparing International vs. Domestic Newspaper Coverage of DEI Issues under Trump: A Content Analysis

In this project, I conducted a content analysis of 3,519 news articles that mentioned DEI-related (Diversity, Equity, and Inclusion) issues during the post-affirmative action landscape, with a special focus on former President Donald Trump’s policies. My goal was to explore how coverage of these issues varied between domestic (U.S.-based) and international media outlets. Through a combination of topic modeling, bigram analysis, and sentiment analysis, I aimed to uncover the thematic, emotional, and topical patterns shaping news discourse on DEI during this period.

My Limitations

  • I downloaded 4,023 articles from NexisUni, upon loading them in R I had 519 duplicate entries which I deleted from the data. So, in the end I have 3,504 articles.
  • I am analyzing articles published between January 20, 2025 (the start of Trump’s second term) and February 28, 2025. This one-month window may not fully capture longer-term trends or shifts in DEI coverage.
  • The dataset is limited to articles available through NexisUni, which may not represent the full spectrum of media outlets or perspectives on DEI issues.
  • I manually selected the publications, so I could have a wide range of politically leaning outlets, but there may still be selection bias in which outlets were included.

Top Bigrams Reveal Central Framing

My analysis of the top 20 bigrams (two-word combinations) in the dataset provided further insight into how DEI-related discourse is framed. Among the most common bigrams were:

  • “Donald Trump””
  • “White house”
  • “President Trump”
  • “Fox News”
  • “President Donald”
  • “Elon Musk”

These pairings confirm that discussions of DEI were closely tied to federal leadership and political developments. Terms like “White House” and “Donald Trump” suggest a central focus on presidential authority, while “diversity equity” and “civil rights” speak to the broader social justice context. The inclusion of “history month” likely reflects how DEI is seasonally spotlighted during observances like Black History Month—further evidence that coverage may be reactive or symbolic rather than ongoing or systemic.

Sentiment Analysis: Fear, Anger, and Sadness

Emotionally, the media coverage of DEI under Trump was far from neutral. A sentiment analysis of the article corpus revealed high counts of negative affect:

  • Positive appeared 2742253 times
  • Trust appeared 1992543 times
  • Fear appeared 1334435 times
  • Anger appeared 956269 times
  • Sadness appeared 746093 times
Postive Leading Words:

Overall the top positive words such as president, equity, content, and united made sense; however as I looked on words like basketball, police, widespread, and choice could be perceived as negative or neutral in some context. ### Leading negative sentiment

Negative Leading Words:

As for the negative words, words such as war, ban, force, and collision fit perfectly in my opinion. Despite this, other words such as skip, tax, serve, case, and spoke could have been neautral or negative in some context.

Sentiment Analysis: Domestic versus International

These results were surprising and suggest that DEI coverage during this time was emotionally charged. Fear may stem from concerns about the rollback of protections or the uncertainty of federal policy. Anger likely reflects opposition to perceived injustices or backlash against diversity efforts. Sadness could correspond with a mourning of social progress or the erasure of inclusive policies. Taken together, these emotions paint a picture of a politically and emotionally volatile media environment around DEI.

This emotional charge could either amplify or dampen public engagement, depending on how readers interpret and internalize these emotions. Media coverage filled with fear and anger can spur action—but it can also result in emotional burnout and disengagement.

Topic Modeling: Identifying Thematic Clusters

To better understand the underlying themes across the dataset, I applied topic modeling using keyword-based string detection. From this, I coded articles into six main topic categories:

  1. Trump Executive Orders – Articles discussing specific policy rollbacks and federal mandates that banned or restricted DEI training and language in government agencies.
  2. Trump Fox News – Coverage emphasizing Fox News reporting on companies’ diversity initiatives, political commentary, and internal corporate culture debates.
  3. Federal DEI Policies – Articles dealing with the intersection of DEI and higher education, including student grants, Title IX issues, and university policy changes.
  4. Airplane/Helicopter Crash – A non-DEI-related outlier category that likely emerged due to Trump being mentioned in unrelated breaking news contexts.
  5. Trump and Elon Musk – Articles speculating on shared ideologies or public commentary by the two figures, often linked to anti-DEI sentiment.
  6. Misc/Noise – Flagged as not useful, this group contained metadata and generic web content rather than editorial substance. (Ended up filtering this topic out of the topic modeling visualization and findings result).

Domestic vs. International Framing

When comparing topic categories across domestic and international coverage, early results suggest international articles tended to frame DEI as part of a broader human rights narrative, linking U.S. policy to global democratic trends or regressions. Domestic outlets, in contrast, were more likely to treat DEI as a political football, emphasizing partisan divides or executive overreach.

This framing distinction has important implications. It suggests that international media may provide a more structural or global view, whereas domestic outlets focus more narrowly on short-term political developments. This difference could influence how readers in each region understand the stakes and significance of DEI issues.